blob: 3c55e40263310c40f76705a57a4d5f2995d4592d [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
Rodrigo Vivi82525c12017-06-08 08:50:00 -070078 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030079 I915_WRITE(GEN8_CHICKEN_DCPR_1,
80 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030081
Rodrigo Vivi82525c12017-06-08 08:50:00 -070082 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
83 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030084 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
85 DISP_FBC_WM_DIS |
86 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030087
Rodrigo Vivi82525c12017-06-08 08:50:00 -070088 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030089 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
90 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053091
92 if (IS_SKYLAKE(dev_priv)) {
93 /* WaDisableDopClockGating */
94 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
95 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
96 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +030097}
98
Ville Syrjälä46f16e62016-10-31 22:37:22 +020099static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +0200100{
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200101 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +0200102
Nick Hoatha7546152015-06-29 14:07:32 +0100103 /* WaDisableSDEUnitClockGating:bxt */
104 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
105 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
106
Imre Deak32608ca2015-03-11 11:10:27 +0200107 /*
108 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200109 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200110 */
Imre Deak32608ca2015-03-11 11:10:27 +0200111 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200112 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200113
114 /*
115 * Wa: Backlight PWM may stop in the asserted state, causing backlight
116 * to stay fully on.
117 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200118 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
119 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200120}
121
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200122static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
123{
Rodrigo Vivi8f067832017-09-05 12:30:13 -0700124 u32 val;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200125 gen9_init_clock_gating(dev_priv);
126
127 /*
128 * WaDisablePWMClockGating:glk
129 * Backlight PWM may stop in the asserted state, causing backlight
130 * to stay fully on.
131 */
132 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
133 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200134
135 /* WaDDIIOTimeout:glk */
136 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
137 u32 val = I915_READ(CHICKEN_MISC_2);
138 val &= ~(GLK_CL0_PWR_DOWN |
139 GLK_CL1_PWR_DOWN |
140 GLK_CL2_PWR_DOWN);
141 I915_WRITE(CHICKEN_MISC_2, val);
142 }
143
Rodrigo Vivi8f067832017-09-05 12:30:13 -0700144 /* Display WA #1133: WaFbcSkipSegments:glk */
145 val = I915_READ(ILK_DPFC_CHICKEN);
146 val &= ~GLK_SKIP_SEG_COUNT_MASK;
147 val |= GLK_SKIP_SEG_EN | GLK_SKIP_SEG_COUNT(1);
148 I915_WRITE(ILK_DPFC_CHICKEN, val);
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200149}
150
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200151static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200152{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200153 u32 tmp;
154
155 tmp = I915_READ(CLKCFG);
156
157 switch (tmp & CLKCFG_FSB_MASK) {
158 case CLKCFG_FSB_533:
159 dev_priv->fsb_freq = 533; /* 133*4 */
160 break;
161 case CLKCFG_FSB_800:
162 dev_priv->fsb_freq = 800; /* 200*4 */
163 break;
164 case CLKCFG_FSB_667:
165 dev_priv->fsb_freq = 667; /* 167*4 */
166 break;
167 case CLKCFG_FSB_400:
168 dev_priv->fsb_freq = 400; /* 100*4 */
169 break;
170 }
171
172 switch (tmp & CLKCFG_MEM_MASK) {
173 case CLKCFG_MEM_533:
174 dev_priv->mem_freq = 533;
175 break;
176 case CLKCFG_MEM_667:
177 dev_priv->mem_freq = 667;
178 break;
179 case CLKCFG_MEM_800:
180 dev_priv->mem_freq = 800;
181 break;
182 }
183
184 /* detect pineview DDR3 setting */
185 tmp = I915_READ(CSHRDDR3CTL);
186 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
187}
188
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200189static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200190{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200191 u16 ddrpll, csipll;
192
193 ddrpll = I915_READ16(DDRMPLL1);
194 csipll = I915_READ16(CSIPLL0);
195
196 switch (ddrpll & 0xff) {
197 case 0xc:
198 dev_priv->mem_freq = 800;
199 break;
200 case 0x10:
201 dev_priv->mem_freq = 1066;
202 break;
203 case 0x14:
204 dev_priv->mem_freq = 1333;
205 break;
206 case 0x18:
207 dev_priv->mem_freq = 1600;
208 break;
209 default:
210 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
211 ddrpll & 0xff);
212 dev_priv->mem_freq = 0;
213 break;
214 }
215
Daniel Vetter20e4d402012-08-08 23:35:39 +0200216 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200217
218 switch (csipll & 0x3ff) {
219 case 0x00c:
220 dev_priv->fsb_freq = 3200;
221 break;
222 case 0x00e:
223 dev_priv->fsb_freq = 3733;
224 break;
225 case 0x010:
226 dev_priv->fsb_freq = 4266;
227 break;
228 case 0x012:
229 dev_priv->fsb_freq = 4800;
230 break;
231 case 0x014:
232 dev_priv->fsb_freq = 5333;
233 break;
234 case 0x016:
235 dev_priv->fsb_freq = 5866;
236 break;
237 case 0x018:
238 dev_priv->fsb_freq = 6400;
239 break;
240 default:
241 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
242 csipll & 0x3ff);
243 dev_priv->fsb_freq = 0;
244 break;
245 }
246
247 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200248 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200249 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200250 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200251 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200252 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200253 }
254}
255
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300256static const struct cxsr_latency cxsr_latency_table[] = {
257 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
258 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
259 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
260 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
261 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
262
263 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
264 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
265 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
266 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
267 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
268
269 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
270 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
271 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
272 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
273 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
274
275 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
276 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
277 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
278 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
279 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
280
281 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
282 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
283 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
284 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
285 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
286
287 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
288 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
289 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
290 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
291 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
292};
293
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100294static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
295 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300296 int fsb,
297 int mem)
298{
299 const struct cxsr_latency *latency;
300 int i;
301
302 if (fsb == 0 || mem == 0)
303 return NULL;
304
305 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
306 latency = &cxsr_latency_table[i];
307 if (is_desktop == latency->is_desktop &&
308 is_ddr3 == latency->is_ddr3 &&
309 fsb == latency->fsb_freq && mem == latency->mem_freq)
310 return latency;
311 }
312
313 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
314
315 return NULL;
316}
317
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200318static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
319{
320 u32 val;
321
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100322 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200323
324 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
325 if (enable)
326 val &= ~FORCE_DDR_HIGH_FREQ;
327 else
328 val |= FORCE_DDR_HIGH_FREQ;
329 val &= ~FORCE_DDR_LOW_FREQ;
330 val |= FORCE_DDR_FREQ_REQ_ACK;
331 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
332
333 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
334 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
335 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
336
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100337 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200338}
339
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200340static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
341{
342 u32 val;
343
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100344 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200345
346 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
347 if (enable)
348 val |= DSP_MAXFIFO_PM5_ENABLE;
349 else
350 val &= ~DSP_MAXFIFO_PM5_ENABLE;
351 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
352
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100353 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200354}
355
Ville Syrjäläf4998962015-03-10 17:02:21 +0200356#define FW_WM(value, plane) \
357 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
358
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200359static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300360{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200361 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300362 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300363
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100364 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200365 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300366 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300367 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200368 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200369 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300370 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300371 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200372 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200373 val = I915_READ(DSPFW3);
374 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
375 if (enable)
376 val |= PINEVIEW_SELF_REFRESH_EN;
377 else
378 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300379 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300380 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100381 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200382 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300383 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
384 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
385 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300386 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100387 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300388 /*
389 * FIXME can't find a bit like this for 915G, and
390 * and yet it does have the related watermark in
391 * FW_BLC_SELF. What's going on?
392 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200393 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300394 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
395 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
396 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300397 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300398 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200399 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300400 }
401
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200402 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
403
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200404 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
405 enableddisabled(enable),
406 enableddisabled(was_enabled));
407
408 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300409}
410
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300411/**
412 * intel_set_memory_cxsr - Configure CxSR state
413 * @dev_priv: i915 device
414 * @enable: Allow vs. disallow CxSR
415 *
416 * Allow or disallow the system to enter a special CxSR
417 * (C-state self refresh) state. What typically happens in CxSR mode
418 * is that several display FIFOs may get combined into a single larger
419 * FIFO for a particular plane (so called max FIFO mode) to allow the
420 * system to defer memory fetches longer, and the memory will enter
421 * self refresh.
422 *
423 * Note that enabling CxSR does not guarantee that the system enter
424 * this special mode, nor does it guarantee that the system stays
425 * in that mode once entered. So this just allows/disallows the system
426 * to autonomously utilize the CxSR mode. Other factors such as core
427 * C-states will affect when/if the system actually enters/exits the
428 * CxSR mode.
429 *
430 * Note that on VLV/CHV this actually only controls the max FIFO mode,
431 * and the system is free to enter/exit memory self refresh at any time
432 * even when the use of CxSR has been disallowed.
433 *
434 * While the system is actually in the CxSR/max FIFO mode, some plane
435 * control registers will not get latched on vblank. Thus in order to
436 * guarantee the system will respond to changes in the plane registers
437 * we must always disallow CxSR prior to making changes to those registers.
438 * Unfortunately the system will re-evaluate the CxSR conditions at
439 * frame start which happens after vblank start (which is when the plane
440 * registers would get latched), so we can't proceed with the plane update
441 * during the same frame where we disallowed CxSR.
442 *
443 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
444 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
445 * the hardware w.r.t. HPLL SR when writing to plane registers.
446 * Disallowing just CxSR is sufficient.
447 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200448bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200449{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200450 bool ret;
451
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200452 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200453 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300454 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
455 dev_priv->wm.vlv.cxsr = enable;
456 else if (IS_G4X(dev_priv))
457 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200458 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200459
460 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200461}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200462
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300463/*
464 * Latency for FIFO fetches is dependent on several factors:
465 * - memory configuration (speed, channels)
466 * - chipset
467 * - current MCH state
468 * It can be fairly high in some situations, so here we assume a fairly
469 * pessimal value. It's a tradeoff between extra memory fetches (if we
470 * set this value too high, the FIFO will fetch frequently to stay full)
471 * and power consumption (set it too low to save power and we might see
472 * FIFO underruns and display "flicker").
473 *
474 * A value of 5us seems to be a good balance; safe for very low end
475 * platforms but not overly aggressive on lower latency configs.
476 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100477static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300478
Ville Syrjäläb5004722015-03-05 21:19:47 +0200479#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
480 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
481
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200482static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200483{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200484 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200485 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200486 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200487 enum pipe pipe = crtc->pipe;
488 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200489
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200490 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200491 uint32_t dsparb, dsparb2, dsparb3;
492 case PIPE_A:
493 dsparb = I915_READ(DSPARB);
494 dsparb2 = I915_READ(DSPARB2);
495 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
496 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
497 break;
498 case PIPE_B:
499 dsparb = I915_READ(DSPARB);
500 dsparb2 = I915_READ(DSPARB2);
501 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
502 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
503 break;
504 case PIPE_C:
505 dsparb2 = I915_READ(DSPARB2);
506 dsparb3 = I915_READ(DSPARB3);
507 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
508 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
509 break;
510 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200511 MISSING_CASE(pipe);
512 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200513 }
514
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200515 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
516 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
517 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
518 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200519}
520
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200521static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300523 uint32_t dsparb = I915_READ(DSPARB);
524 int size;
525
526 size = dsparb & 0x7f;
527 if (plane)
528 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
529
530 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
531 plane ? "B" : "A", size);
532
533 return size;
534}
535
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200536static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300537{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300538 uint32_t dsparb = I915_READ(DSPARB);
539 int size;
540
541 size = dsparb & 0x1ff;
542 if (plane)
543 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
544 size >>= 1; /* Convert to cachelines */
545
546 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
547 plane ? "B" : "A", size);
548
549 return size;
550}
551
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200552static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300553{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300554 uint32_t dsparb = I915_READ(DSPARB);
555 int size;
556
557 size = dsparb & 0x7f;
558 size >>= 2; /* Convert to cachelines */
559
560 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
561 plane ? "B" : "A",
562 size);
563
564 return size;
565}
566
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300567/* Pineview has different values for various configs */
568static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300569 .fifo_size = PINEVIEW_DISPLAY_FIFO,
570 .max_wm = PINEVIEW_MAX_WM,
571 .default_wm = PINEVIEW_DFT_WM,
572 .guard_size = PINEVIEW_GUARD_WM,
573 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300574};
575static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300576 .fifo_size = PINEVIEW_DISPLAY_FIFO,
577 .max_wm = PINEVIEW_MAX_WM,
578 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
579 .guard_size = PINEVIEW_GUARD_WM,
580 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300581};
582static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300583 .fifo_size = PINEVIEW_CURSOR_FIFO,
584 .max_wm = PINEVIEW_CURSOR_MAX_WM,
585 .default_wm = PINEVIEW_CURSOR_DFT_WM,
586 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
587 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300588};
589static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300590 .fifo_size = PINEVIEW_CURSOR_FIFO,
591 .max_wm = PINEVIEW_CURSOR_MAX_WM,
592 .default_wm = PINEVIEW_CURSOR_DFT_WM,
593 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
594 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300595};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300596static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300597 .fifo_size = I965_CURSOR_FIFO,
598 .max_wm = I965_CURSOR_MAX_WM,
599 .default_wm = I965_CURSOR_DFT_WM,
600 .guard_size = 2,
601 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300602};
603static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300604 .fifo_size = I945_FIFO_SIZE,
605 .max_wm = I915_MAX_WM,
606 .default_wm = 1,
607 .guard_size = 2,
608 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300609};
610static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300611 .fifo_size = I915_FIFO_SIZE,
612 .max_wm = I915_MAX_WM,
613 .default_wm = 1,
614 .guard_size = 2,
615 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300616};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300617static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300618 .fifo_size = I855GM_FIFO_SIZE,
619 .max_wm = I915_MAX_WM,
620 .default_wm = 1,
621 .guard_size = 2,
622 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300623};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300624static const struct intel_watermark_params i830_bc_wm_info = {
625 .fifo_size = I855GM_FIFO_SIZE,
626 .max_wm = I915_MAX_WM/2,
627 .default_wm = 1,
628 .guard_size = 2,
629 .cacheline_size = I830_FIFO_LINE_SIZE,
630};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200631static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300632 .fifo_size = I830_FIFO_SIZE,
633 .max_wm = I915_MAX_WM,
634 .default_wm = 1,
635 .guard_size = 2,
636 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300637};
638
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300639/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300640 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
641 * @pixel_rate: Pipe pixel rate in kHz
642 * @cpp: Plane bytes per pixel
643 * @latency: Memory wakeup latency in 0.1us units
644 *
645 * Compute the watermark using the method 1 or "small buffer"
646 * formula. The caller may additonally add extra cachelines
647 * to account for TLB misses and clock crossings.
648 *
649 * This method is concerned with the short term drain rate
650 * of the FIFO, ie. it does not account for blanking periods
651 * which would effectively reduce the average drain rate across
652 * a longer period. The name "small" refers to the fact the
653 * FIFO is relatively small compared to the amount of data
654 * fetched.
655 *
656 * The FIFO level vs. time graph might look something like:
657 *
658 * |\ |\
659 * | \ | \
660 * __---__---__ (- plane active, _ blanking)
661 * -> time
662 *
663 * or perhaps like this:
664 *
665 * |\|\ |\|\
666 * __----__----__ (- plane active, _ blanking)
667 * -> time
668 *
669 * Returns:
670 * The watermark in bytes
671 */
672static unsigned int intel_wm_method1(unsigned int pixel_rate,
673 unsigned int cpp,
674 unsigned int latency)
675{
676 uint64_t ret;
677
678 ret = (uint64_t) pixel_rate * cpp * latency;
679 ret = DIV_ROUND_UP_ULL(ret, 10000);
680
681 return ret;
682}
683
684/**
685 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
686 * @pixel_rate: Pipe pixel rate in kHz
687 * @htotal: Pipe horizontal total
688 * @width: Plane width in pixels
689 * @cpp: Plane bytes per pixel
690 * @latency: Memory wakeup latency in 0.1us units
691 *
692 * Compute the watermark using the method 2 or "large buffer"
693 * formula. The caller may additonally add extra cachelines
694 * to account for TLB misses and clock crossings.
695 *
696 * This method is concerned with the long term drain rate
697 * of the FIFO, ie. it does account for blanking periods
698 * which effectively reduce the average drain rate across
699 * a longer period. The name "large" refers to the fact the
700 * FIFO is relatively large compared to the amount of data
701 * fetched.
702 *
703 * The FIFO level vs. time graph might look something like:
704 *
705 * |\___ |\___
706 * | \___ | \___
707 * | \ | \
708 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
709 * -> time
710 *
711 * Returns:
712 * The watermark in bytes
713 */
714static unsigned int intel_wm_method2(unsigned int pixel_rate,
715 unsigned int htotal,
716 unsigned int width,
717 unsigned int cpp,
718 unsigned int latency)
719{
720 unsigned int ret;
721
722 /*
723 * FIXME remove once all users are computing
724 * watermarks in the correct place.
725 */
726 if (WARN_ON_ONCE(htotal == 0))
727 htotal = 1;
728
729 ret = (latency * pixel_rate) / (htotal * 10000);
730 ret = (ret + 1) * width * cpp;
731
732 return ret;
733}
734
735/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300736 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300737 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300738 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200739 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300740 * @latency_ns: memory latency for the platform
741 *
742 * Calculate the watermark level (the level at which the display plane will
743 * start fetching from memory again). Each chip has a different display
744 * FIFO size and allocation, so the caller needs to figure that out and pass
745 * in the correct intel_watermark_params structure.
746 *
747 * As the pixel clock runs, the FIFO will be drained at a rate that depends
748 * on the pixel size. When it reaches the watermark level, it'll start
749 * fetching FIFO line sized based chunks from memory until the FIFO fills
750 * past the watermark point. If the FIFO drains completely, a FIFO underrun
751 * will occur, and a display engine hang could result.
752 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300753static unsigned int intel_calculate_wm(int pixel_rate,
754 const struct intel_watermark_params *wm,
755 int fifo_size, int cpp,
756 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300757{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300758 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300759
760 /*
761 * Note: we need to make sure we don't overflow for various clock &
762 * latency values.
763 * clocks go from a few thousand to several hundred thousand.
764 * latency is usually a few thousand
765 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300766 entries = intel_wm_method1(pixel_rate, cpp,
767 latency_ns / 100);
768 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
769 wm->guard_size;
770 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300771
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300772 wm_size = fifo_size - entries;
773 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774
775 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300776 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300777 wm_size = wm->max_wm;
778 if (wm_size <= 0)
779 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300780
781 /*
782 * Bspec seems to indicate that the value shouldn't be lower than
783 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
784 * Lets go for 8 which is the burst size since certain platforms
785 * already use a hardcoded 8 (which is what the spec says should be
786 * done).
787 */
788 if (wm_size <= 8)
789 wm_size = 8;
790
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300791 return wm_size;
792}
793
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300794static bool is_disabling(int old, int new, int threshold)
795{
796 return old >= threshold && new < threshold;
797}
798
799static bool is_enabling(int old, int new, int threshold)
800{
801 return old < threshold && new >= threshold;
802}
803
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300804static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
805{
806 return dev_priv->wm.max_level + 1;
807}
808
Ville Syrjälä24304d812017-03-14 17:10:49 +0200809static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
810 const struct intel_plane_state *plane_state)
811{
812 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
813
814 /* FIXME check the 'enable' instead */
815 if (!crtc_state->base.active)
816 return false;
817
818 /*
819 * Treat cursor with fb as always visible since cursor updates
820 * can happen faster than the vrefresh rate, and the current
821 * watermark code doesn't handle that correctly. Cursor updates
822 * which set/clear the fb or change the cursor size are going
823 * to get throttled by intel_legacy_cursor_update() to work
824 * around this problem with the watermark code.
825 */
826 if (plane->id == PLANE_CURSOR)
827 return plane_state->base.fb != NULL;
828 else
829 return plane_state->base.visible;
830}
831
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200832static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300833{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200834 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300835
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200836 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200837 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838 if (enabled)
839 return NULL;
840 enabled = crtc;
841 }
842 }
843
844 return enabled;
845}
846
Ville Syrjälä432081b2016-10-31 22:37:03 +0200847static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300848{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200849 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200850 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300851 const struct cxsr_latency *latency;
852 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300853 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300854
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100855 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
856 dev_priv->is_ddr3,
857 dev_priv->fsb_freq,
858 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300859 if (!latency) {
860 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300861 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862 return;
863 }
864
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200865 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300866 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200867 const struct drm_display_mode *adjusted_mode =
868 &crtc->config->base.adjusted_mode;
869 const struct drm_framebuffer *fb =
870 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200871 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300872 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300873
874 /* Display SR */
875 wm = intel_calculate_wm(clock, &pineview_display_wm,
876 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200877 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300878 reg = I915_READ(DSPFW1);
879 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200880 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300881 I915_WRITE(DSPFW1, reg);
882 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
883
884 /* cursor SR */
885 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
886 pineview_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300887 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300888 reg = I915_READ(DSPFW3);
889 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200890 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300891 I915_WRITE(DSPFW3, reg);
892
893 /* Display HPLL off SR */
894 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
895 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200896 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300897 reg = I915_READ(DSPFW3);
898 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200899 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300900 I915_WRITE(DSPFW3, reg);
901
902 /* cursor HPLL off SR */
903 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
904 pineview_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300905 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300906 reg = I915_READ(DSPFW3);
907 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200908 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300909 I915_WRITE(DSPFW3, reg);
910 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
911
Imre Deak5209b1f2014-07-01 12:36:17 +0300912 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300913 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300914 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300915 }
916}
917
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300918/*
919 * Documentation says:
920 * "If the line size is small, the TLB fetches can get in the way of the
921 * data fetches, causing some lag in the pixel data return which is not
922 * accounted for in the above formulas. The following adjustment only
923 * needs to be applied if eight whole lines fit in the buffer at once.
924 * The WM is adjusted upwards by the difference between the FIFO size
925 * and the size of 8 whole lines. This adjustment is always performed
926 * in the actual pixel depth regardless of whether FBC is enabled or not."
927 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000928static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300929{
930 int tlb_miss = fifo_size * 64 - width * cpp * 8;
931
932 return max(0, tlb_miss);
933}
934
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300935static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
936 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300937{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300938 enum pipe pipe;
939
940 for_each_pipe(dev_priv, pipe)
941 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
942
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300943 I915_WRITE(DSPFW1,
944 FW_WM(wm->sr.plane, SR) |
945 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
946 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
947 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
948 I915_WRITE(DSPFW2,
949 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
950 FW_WM(wm->sr.fbc, FBC_SR) |
951 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
952 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
953 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
954 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
955 I915_WRITE(DSPFW3,
956 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
957 FW_WM(wm->sr.cursor, CURSOR_SR) |
958 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
959 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300960
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300961 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300962}
963
Ville Syrjälä15665972015-03-10 16:16:28 +0200964#define FW_WM_VLV(value, plane) \
965 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
966
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200967static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200968 const struct vlv_wm_values *wm)
969{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200970 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200971
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200972 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200973 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
974
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200975 I915_WRITE(VLV_DDL(pipe),
976 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
977 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
978 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
979 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
980 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200981
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200982 /*
983 * Zero the (unused) WM1 watermarks, and also clear all the
984 * high order bits so that there are no out of bounds values
985 * present in the registers during the reprogramming.
986 */
987 I915_WRITE(DSPHOWM, 0);
988 I915_WRITE(DSPHOWM1, 0);
989 I915_WRITE(DSPFW4, 0);
990 I915_WRITE(DSPFW5, 0);
991 I915_WRITE(DSPFW6, 0);
992
Ville Syrjäläae801522015-03-05 21:19:49 +0200993 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200994 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200995 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
996 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
997 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200998 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200999 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1000 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1001 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001002 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001003 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001004
1005 if (IS_CHERRYVIEW(dev_priv)) {
1006 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001007 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1008 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001009 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001010 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1011 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001012 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001013 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1014 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001015 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001016 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001017 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1018 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1019 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1020 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1021 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1022 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1023 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1024 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1025 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001026 } else {
1027 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001028 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1029 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001030 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001031 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001032 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1033 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1034 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1035 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1036 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1037 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001038 }
1039
1040 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001041}
1042
Ville Syrjälä15665972015-03-10 16:16:28 +02001043#undef FW_WM_VLV
1044
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001045static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1046{
1047 /* all latencies in usec */
1048 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1049 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001050 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001051
Ville Syrjälä79d94302017-04-21 21:14:30 +03001052 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001053}
1054
1055static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1056{
1057 /*
1058 * DSPCNTR[13] supposedly controls whether the
1059 * primary plane can use the FIFO space otherwise
1060 * reserved for the sprite plane. It's not 100% clear
1061 * what the actual FIFO size is, but it looks like we
1062 * can happily set both primary and sprite watermarks
1063 * up to 127 cachelines. So that would seem to mean
1064 * that either DSPCNTR[13] doesn't do anything, or that
1065 * the total FIFO is >= 256 cachelines in size. Either
1066 * way, we don't seem to have to worry about this
1067 * repartitioning as the maximum watermark value the
1068 * register can hold for each plane is lower than the
1069 * minimum FIFO size.
1070 */
1071 switch (plane_id) {
1072 case PLANE_CURSOR:
1073 return 63;
1074 case PLANE_PRIMARY:
1075 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1076 case PLANE_SPRITE0:
1077 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1078 default:
1079 MISSING_CASE(plane_id);
1080 return 0;
1081 }
1082}
1083
1084static int g4x_fbc_fifo_size(int level)
1085{
1086 switch (level) {
1087 case G4X_WM_LEVEL_SR:
1088 return 7;
1089 case G4X_WM_LEVEL_HPLL:
1090 return 15;
1091 default:
1092 MISSING_CASE(level);
1093 return 0;
1094 }
1095}
1096
1097static uint16_t g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1098 const struct intel_plane_state *plane_state,
1099 int level)
1100{
1101 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1102 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1103 const struct drm_display_mode *adjusted_mode =
1104 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001105 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1106 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001107
1108 if (latency == 0)
1109 return USHRT_MAX;
1110
1111 if (!intel_wm_plane_visible(crtc_state, plane_state))
1112 return 0;
1113
1114 /*
1115 * Not 100% sure which way ELK should go here as the
1116 * spec only says CL/CTG should assume 32bpp and BW
1117 * doesn't need to. But as these things followed the
1118 * mobile vs. desktop lines on gen3 as well, let's
1119 * assume ELK doesn't need this.
1120 *
1121 * The spec also fails to list such a restriction for
1122 * the HPLL watermark, which seems a little strange.
1123 * Let's use 32bpp for the HPLL watermark as well.
1124 */
1125 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1126 level != G4X_WM_LEVEL_NORMAL)
1127 cpp = 4;
1128 else
1129 cpp = plane_state->base.fb->format->cpp[0];
1130
1131 clock = adjusted_mode->crtc_clock;
1132 htotal = adjusted_mode->crtc_htotal;
1133
1134 if (plane->id == PLANE_CURSOR)
1135 width = plane_state->base.crtc_w;
1136 else
1137 width = drm_rect_width(&plane_state->base.dst);
1138
1139 if (plane->id == PLANE_CURSOR) {
1140 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1141 } else if (plane->id == PLANE_PRIMARY &&
1142 level == G4X_WM_LEVEL_NORMAL) {
1143 wm = intel_wm_method1(clock, cpp, latency);
1144 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001145 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001146
1147 small = intel_wm_method1(clock, cpp, latency);
1148 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1149
1150 wm = min(small, large);
1151 }
1152
1153 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1154 width, cpp);
1155
1156 wm = DIV_ROUND_UP(wm, 64) + 2;
1157
Chris Wilson1a1f1282017-11-07 14:03:38 +00001158 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001159}
1160
1161static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1162 int level, enum plane_id plane_id, u16 value)
1163{
1164 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1165 bool dirty = false;
1166
1167 for (; level < intel_wm_num_levels(dev_priv); level++) {
1168 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1169
1170 dirty |= raw->plane[plane_id] != value;
1171 raw->plane[plane_id] = value;
1172 }
1173
1174 return dirty;
1175}
1176
1177static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1178 int level, u16 value)
1179{
1180 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1181 bool dirty = false;
1182
1183 /* NORMAL level doesn't have an FBC watermark */
1184 level = max(level, G4X_WM_LEVEL_SR);
1185
1186 for (; level < intel_wm_num_levels(dev_priv); level++) {
1187 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1188
1189 dirty |= raw->fbc != value;
1190 raw->fbc = value;
1191 }
1192
1193 return dirty;
1194}
1195
1196static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
1197 const struct intel_plane_state *pstate,
1198 uint32_t pri_val);
1199
1200static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1201 const struct intel_plane_state *plane_state)
1202{
1203 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1204 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1205 enum plane_id plane_id = plane->id;
1206 bool dirty = false;
1207 int level;
1208
1209 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1210 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1211 if (plane_id == PLANE_PRIMARY)
1212 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1213 goto out;
1214 }
1215
1216 for (level = 0; level < num_levels; level++) {
1217 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1218 int wm, max_wm;
1219
1220 wm = g4x_compute_wm(crtc_state, plane_state, level);
1221 max_wm = g4x_plane_fifo_size(plane_id, level);
1222
1223 if (wm > max_wm)
1224 break;
1225
1226 dirty |= raw->plane[plane_id] != wm;
1227 raw->plane[plane_id] = wm;
1228
1229 if (plane_id != PLANE_PRIMARY ||
1230 level == G4X_WM_LEVEL_NORMAL)
1231 continue;
1232
1233 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1234 raw->plane[plane_id]);
1235 max_wm = g4x_fbc_fifo_size(level);
1236
1237 /*
1238 * FBC wm is not mandatory as we
1239 * can always just disable its use.
1240 */
1241 if (wm > max_wm)
1242 wm = USHRT_MAX;
1243
1244 dirty |= raw->fbc != wm;
1245 raw->fbc = wm;
1246 }
1247
1248 /* mark watermarks as invalid */
1249 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1250
1251 if (plane_id == PLANE_PRIMARY)
1252 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1253
1254 out:
1255 if (dirty) {
1256 DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1257 plane->base.name,
1258 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1259 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1260 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1261
1262 if (plane_id == PLANE_PRIMARY)
1263 DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n",
1264 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1265 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1266 }
1267
1268 return dirty;
1269}
1270
1271static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1272 enum plane_id plane_id, int level)
1273{
1274 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1275
1276 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1277}
1278
1279static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1280 int level)
1281{
1282 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1283
1284 if (level > dev_priv->wm.max_level)
1285 return false;
1286
1287 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1288 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1289 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1290}
1291
1292/* mark all levels starting from 'level' as invalid */
1293static void g4x_invalidate_wms(struct intel_crtc *crtc,
1294 struct g4x_wm_state *wm_state, int level)
1295{
1296 if (level <= G4X_WM_LEVEL_NORMAL) {
1297 enum plane_id plane_id;
1298
1299 for_each_plane_id_on_crtc(crtc, plane_id)
1300 wm_state->wm.plane[plane_id] = USHRT_MAX;
1301 }
1302
1303 if (level <= G4X_WM_LEVEL_SR) {
1304 wm_state->cxsr = false;
1305 wm_state->sr.cursor = USHRT_MAX;
1306 wm_state->sr.plane = USHRT_MAX;
1307 wm_state->sr.fbc = USHRT_MAX;
1308 }
1309
1310 if (level <= G4X_WM_LEVEL_HPLL) {
1311 wm_state->hpll_en = false;
1312 wm_state->hpll.cursor = USHRT_MAX;
1313 wm_state->hpll.plane = USHRT_MAX;
1314 wm_state->hpll.fbc = USHRT_MAX;
1315 }
1316}
1317
1318static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1319{
1320 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1321 struct intel_atomic_state *state =
1322 to_intel_atomic_state(crtc_state->base.state);
1323 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1324 int num_active_planes = hweight32(crtc_state->active_planes &
1325 ~BIT(PLANE_CURSOR));
1326 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001327 const struct intel_plane_state *old_plane_state;
1328 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001329 struct intel_plane *plane;
1330 enum plane_id plane_id;
1331 int i, level;
1332 unsigned int dirty = 0;
1333
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001334 for_each_oldnew_intel_plane_in_state(state, plane,
1335 old_plane_state,
1336 new_plane_state, i) {
1337 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001338 old_plane_state->base.crtc != &crtc->base)
1339 continue;
1340
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001341 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001342 dirty |= BIT(plane->id);
1343 }
1344
1345 if (!dirty)
1346 return 0;
1347
1348 level = G4X_WM_LEVEL_NORMAL;
1349 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1350 goto out;
1351
1352 raw = &crtc_state->wm.g4x.raw[level];
1353 for_each_plane_id_on_crtc(crtc, plane_id)
1354 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1355
1356 level = G4X_WM_LEVEL_SR;
1357
1358 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1359 goto out;
1360
1361 raw = &crtc_state->wm.g4x.raw[level];
1362 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1363 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1364 wm_state->sr.fbc = raw->fbc;
1365
1366 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1367
1368 level = G4X_WM_LEVEL_HPLL;
1369
1370 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1371 goto out;
1372
1373 raw = &crtc_state->wm.g4x.raw[level];
1374 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1375 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1376 wm_state->hpll.fbc = raw->fbc;
1377
1378 wm_state->hpll_en = wm_state->cxsr;
1379
1380 level++;
1381
1382 out:
1383 if (level == G4X_WM_LEVEL_NORMAL)
1384 return -EINVAL;
1385
1386 /* invalidate the higher levels */
1387 g4x_invalidate_wms(crtc, wm_state, level);
1388
1389 /*
1390 * Determine if the FBC watermark(s) can be used. IF
1391 * this isn't the case we prefer to disable the FBC
1392 ( watermark(s) rather than disable the SR/HPLL
1393 * level(s) entirely.
1394 */
1395 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1396
1397 if (level >= G4X_WM_LEVEL_SR &&
1398 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1399 wm_state->fbc_en = false;
1400 else if (level >= G4X_WM_LEVEL_HPLL &&
1401 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1402 wm_state->fbc_en = false;
1403
1404 return 0;
1405}
1406
1407static int g4x_compute_intermediate_wm(struct drm_device *dev,
1408 struct intel_crtc *crtc,
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001409 struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001410{
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001411 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1412 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1413 struct intel_atomic_state *intel_state =
1414 to_intel_atomic_state(new_crtc_state->base.state);
1415 const struct intel_crtc_state *old_crtc_state =
1416 intel_atomic_get_old_crtc_state(intel_state, crtc);
1417 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001418 enum plane_id plane_id;
1419
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001420 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
1421 *intermediate = *optimal;
1422
1423 intermediate->cxsr = false;
1424 intermediate->hpll_en = false;
1425 goto out;
1426 }
1427
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001428 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001429 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001430 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001431 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001432 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1433
1434 for_each_plane_id_on_crtc(crtc, plane_id) {
1435 intermediate->wm.plane[plane_id] =
1436 max(optimal->wm.plane[plane_id],
1437 active->wm.plane[plane_id]);
1438
1439 WARN_ON(intermediate->wm.plane[plane_id] >
1440 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1441 }
1442
1443 intermediate->sr.plane = max(optimal->sr.plane,
1444 active->sr.plane);
1445 intermediate->sr.cursor = max(optimal->sr.cursor,
1446 active->sr.cursor);
1447 intermediate->sr.fbc = max(optimal->sr.fbc,
1448 active->sr.fbc);
1449
1450 intermediate->hpll.plane = max(optimal->hpll.plane,
1451 active->hpll.plane);
1452 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1453 active->hpll.cursor);
1454 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1455 active->hpll.fbc);
1456
1457 WARN_ON((intermediate->sr.plane >
1458 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1459 intermediate->sr.cursor >
1460 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1461 intermediate->cxsr);
1462 WARN_ON((intermediate->sr.plane >
1463 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1464 intermediate->sr.cursor >
1465 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1466 intermediate->hpll_en);
1467
1468 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1469 intermediate->fbc_en && intermediate->cxsr);
1470 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1471 intermediate->fbc_en && intermediate->hpll_en);
1472
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001473out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001474 /*
1475 * If our intermediate WM are identical to the final WM, then we can
1476 * omit the post-vblank programming; only update if it's different.
1477 */
1478 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001479 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001480
1481 return 0;
1482}
1483
1484static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1485 struct g4x_wm_values *wm)
1486{
1487 struct intel_crtc *crtc;
1488 int num_active_crtcs = 0;
1489
1490 wm->cxsr = true;
1491 wm->hpll_en = true;
1492 wm->fbc_en = true;
1493
1494 for_each_intel_crtc(&dev_priv->drm, crtc) {
1495 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1496
1497 if (!crtc->active)
1498 continue;
1499
1500 if (!wm_state->cxsr)
1501 wm->cxsr = false;
1502 if (!wm_state->hpll_en)
1503 wm->hpll_en = false;
1504 if (!wm_state->fbc_en)
1505 wm->fbc_en = false;
1506
1507 num_active_crtcs++;
1508 }
1509
1510 if (num_active_crtcs != 1) {
1511 wm->cxsr = false;
1512 wm->hpll_en = false;
1513 wm->fbc_en = false;
1514 }
1515
1516 for_each_intel_crtc(&dev_priv->drm, crtc) {
1517 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1518 enum pipe pipe = crtc->pipe;
1519
1520 wm->pipe[pipe] = wm_state->wm;
1521 if (crtc->active && wm->cxsr)
1522 wm->sr = wm_state->sr;
1523 if (crtc->active && wm->hpll_en)
1524 wm->hpll = wm_state->hpll;
1525 }
1526}
1527
1528static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1529{
1530 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1531 struct g4x_wm_values new_wm = {};
1532
1533 g4x_merge_wm(dev_priv, &new_wm);
1534
1535 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1536 return;
1537
1538 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1539 _intel_set_memory_cxsr(dev_priv, false);
1540
1541 g4x_write_wm_values(dev_priv, &new_wm);
1542
1543 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1544 _intel_set_memory_cxsr(dev_priv, true);
1545
1546 *old_wm = new_wm;
1547}
1548
1549static void g4x_initial_watermarks(struct intel_atomic_state *state,
1550 struct intel_crtc_state *crtc_state)
1551{
1552 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1553 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1554
1555 mutex_lock(&dev_priv->wm.wm_mutex);
1556 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1557 g4x_program_watermarks(dev_priv);
1558 mutex_unlock(&dev_priv->wm.wm_mutex);
1559}
1560
1561static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1562 struct intel_crtc_state *crtc_state)
1563{
1564 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1565 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1566
1567 if (!crtc_state->wm.need_postvbl_update)
1568 return;
1569
1570 mutex_lock(&dev_priv->wm.wm_mutex);
1571 intel_crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1572 g4x_program_watermarks(dev_priv);
1573 mutex_unlock(&dev_priv->wm.wm_mutex);
1574}
1575
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001576/* latency must be in 0.1us units. */
1577static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001578 unsigned int htotal,
1579 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001580 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001581 unsigned int latency)
1582{
1583 unsigned int ret;
1584
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001585 ret = intel_wm_method2(pixel_rate, htotal,
1586 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001587 ret = DIV_ROUND_UP(ret, 64);
1588
1589 return ret;
1590}
1591
Ville Syrjäläbb726512016-10-31 22:37:24 +02001592static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001593{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001594 /* all latencies in usec */
1595 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1596
Ville Syrjälä58590c12015-09-08 21:05:12 +03001597 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1598
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001599 if (IS_CHERRYVIEW(dev_priv)) {
1600 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1601 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001602
1603 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001604 }
1605}
1606
Ville Syrjäläe339d672016-11-28 19:37:17 +02001607static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1608 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001609 int level)
1610{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001611 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001612 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001613 const struct drm_display_mode *adjusted_mode =
1614 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001615 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001616
1617 if (dev_priv->wm.pri_latency[level] == 0)
1618 return USHRT_MAX;
1619
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001620 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001621 return 0;
1622
Daniel Vetteref426c12017-01-04 11:41:10 +01001623 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001624 clock = adjusted_mode->crtc_clock;
1625 htotal = adjusted_mode->crtc_htotal;
1626 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001627
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001628 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001629 /*
1630 * FIXME the formula gives values that are
1631 * too big for the cursor FIFO, and hence we
1632 * would never be able to use cursors. For
1633 * now just hardcode the watermark.
1634 */
1635 wm = 63;
1636 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001637 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001638 dev_priv->wm.pri_latency[level] * 10);
1639 }
1640
Chris Wilson1a1f1282017-11-07 14:03:38 +00001641 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001642}
1643
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001644static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1645{
1646 return (active_planes & (BIT(PLANE_SPRITE0) |
1647 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1648}
1649
Ville Syrjälä5012e602017-03-02 19:14:56 +02001650static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001651{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001652 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001653 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001654 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001655 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001656 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1657 int num_active_planes = hweight32(active_planes);
1658 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001659 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001660 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001661 unsigned int total_rate;
1662 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001663
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001664 /*
1665 * When enabling sprite0 after sprite1 has already been enabled
1666 * we tend to get an underrun unless sprite0 already has some
1667 * FIFO space allcoated. Hence we always allocate at least one
1668 * cacheline for sprite0 whenever sprite1 is enabled.
1669 *
1670 * All other plane enable sequences appear immune to this problem.
1671 */
1672 if (vlv_need_sprite0_fifo_workaround(active_planes))
1673 sprite0_fifo_extra = 1;
1674
Ville Syrjälä5012e602017-03-02 19:14:56 +02001675 total_rate = raw->plane[PLANE_PRIMARY] +
1676 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001677 raw->plane[PLANE_SPRITE1] +
1678 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001679
Ville Syrjälä5012e602017-03-02 19:14:56 +02001680 if (total_rate > fifo_size)
1681 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001682
Ville Syrjälä5012e602017-03-02 19:14:56 +02001683 if (total_rate == 0)
1684 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001685
Ville Syrjälä5012e602017-03-02 19:14:56 +02001686 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001687 unsigned int rate;
1688
Ville Syrjälä5012e602017-03-02 19:14:56 +02001689 if ((active_planes & BIT(plane_id)) == 0) {
1690 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001691 continue;
1692 }
1693
Ville Syrjälä5012e602017-03-02 19:14:56 +02001694 rate = raw->plane[plane_id];
1695 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1696 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001697 }
1698
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001699 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1700 fifo_left -= sprite0_fifo_extra;
1701
Ville Syrjälä5012e602017-03-02 19:14:56 +02001702 fifo_state->plane[PLANE_CURSOR] = 63;
1703
1704 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001705
1706 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001707 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001708 int plane_extra;
1709
1710 if (fifo_left == 0)
1711 break;
1712
Ville Syrjälä5012e602017-03-02 19:14:56 +02001713 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001714 continue;
1715
1716 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001717 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001718 fifo_left -= plane_extra;
1719 }
1720
Ville Syrjälä5012e602017-03-02 19:14:56 +02001721 WARN_ON(active_planes != 0 && fifo_left != 0);
1722
1723 /* give it all to the first plane if none are active */
1724 if (active_planes == 0) {
1725 WARN_ON(fifo_left != fifo_size);
1726 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1727 }
1728
1729 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001730}
1731
Ville Syrjäläff32c542017-03-02 19:14:57 +02001732/* mark all levels starting from 'level' as invalid */
1733static void vlv_invalidate_wms(struct intel_crtc *crtc,
1734 struct vlv_wm_state *wm_state, int level)
1735{
1736 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1737
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001738 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001739 enum plane_id plane_id;
1740
1741 for_each_plane_id_on_crtc(crtc, plane_id)
1742 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1743
1744 wm_state->sr[level].cursor = USHRT_MAX;
1745 wm_state->sr[level].plane = USHRT_MAX;
1746 }
1747}
1748
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001749static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1750{
1751 if (wm > fifo_size)
1752 return USHRT_MAX;
1753 else
1754 return fifo_size - wm;
1755}
1756
Ville Syrjäläff32c542017-03-02 19:14:57 +02001757/*
1758 * Starting from 'level' set all higher
1759 * levels to 'value' in the "raw" watermarks.
1760 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001761static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001762 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001763{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001764 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001765 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001766 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001767
Ville Syrjäläff32c542017-03-02 19:14:57 +02001768 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001769 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001770
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001771 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001772 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001773 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001774
1775 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001776}
1777
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001778static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1779 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001780{
1781 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1782 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001783 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001784 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001785 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001786
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001787 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001788 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1789 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001790 }
1791
1792 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001793 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001794 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1795 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1796
Ville Syrjäläff32c542017-03-02 19:14:57 +02001797 if (wm > max_wm)
1798 break;
1799
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001800 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001801 raw->plane[plane_id] = wm;
1802 }
1803
1804 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001805 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001806
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001807out:
1808 if (dirty)
Ville Syrjälä57a65282017-04-21 21:14:22 +03001809 DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001810 plane->base.name,
1811 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1812 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1813 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1814
1815 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001816}
1817
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001818static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1819 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001820{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001821 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001822 &crtc_state->wm.vlv.raw[level];
1823 const struct vlv_fifo_state *fifo_state =
1824 &crtc_state->wm.vlv.fifo_state;
1825
1826 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1827}
1828
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001829static 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 +02001830{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001831 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1832 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1833 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1834 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001835}
1836
1837static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001838{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001839 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001840 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001841 struct intel_atomic_state *state =
1842 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001843 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001844 const struct vlv_fifo_state *fifo_state =
1845 &crtc_state->wm.vlv.fifo_state;
1846 int num_active_planes = hweight32(crtc_state->active_planes &
1847 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001848 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001849 const struct intel_plane_state *old_plane_state;
1850 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001851 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001852 enum plane_id plane_id;
1853 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001854 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001855
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001856 for_each_oldnew_intel_plane_in_state(state, plane,
1857 old_plane_state,
1858 new_plane_state, i) {
1859 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjäläff32c542017-03-02 19:14:57 +02001860 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001861 continue;
1862
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001863 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001864 dirty |= BIT(plane->id);
1865 }
1866
1867 /*
1868 * DSPARB registers may have been reset due to the
1869 * power well being turned off. Make sure we restore
1870 * them to a consistent state even if no primary/sprite
1871 * planes are initially active.
1872 */
1873 if (needs_modeset)
1874 crtc_state->fifo_changed = true;
1875
1876 if (!dirty)
1877 return 0;
1878
1879 /* cursor changes don't warrant a FIFO recompute */
1880 if (dirty & ~BIT(PLANE_CURSOR)) {
1881 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001882 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001883 const struct vlv_fifo_state *old_fifo_state =
1884 &old_crtc_state->wm.vlv.fifo_state;
1885
1886 ret = vlv_compute_fifo(crtc_state);
1887 if (ret)
1888 return ret;
1889
1890 if (needs_modeset ||
1891 memcmp(old_fifo_state, fifo_state,
1892 sizeof(*fifo_state)) != 0)
1893 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001894 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001895
Ville Syrjäläff32c542017-03-02 19:14:57 +02001896 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001897 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001898 /*
1899 * Note that enabling cxsr with no primary/sprite planes
1900 * enabled can wedge the pipe. Hence we only allow cxsr
1901 * with exactly one enabled primary/sprite plane.
1902 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001903 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001904
Ville Syrjälä5012e602017-03-02 19:14:56 +02001905 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001906 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001907 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001908
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001909 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001910 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001911
Ville Syrjäläff32c542017-03-02 19:14:57 +02001912 for_each_plane_id_on_crtc(crtc, plane_id) {
1913 wm_state->wm[level].plane[plane_id] =
1914 vlv_invert_wm_value(raw->plane[plane_id],
1915 fifo_state->plane[plane_id]);
1916 }
1917
1918 wm_state->sr[level].plane =
1919 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001920 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001921 raw->plane[PLANE_SPRITE1]),
1922 sr_fifo_size);
1923
1924 wm_state->sr[level].cursor =
1925 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1926 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001927 }
1928
Ville Syrjäläff32c542017-03-02 19:14:57 +02001929 if (level == 0)
1930 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001931
Ville Syrjäläff32c542017-03-02 19:14:57 +02001932 /* limit to only levels we can actually handle */
1933 wm_state->num_levels = level;
1934
1935 /* invalidate the higher levels */
1936 vlv_invalidate_wms(crtc, wm_state, level);
1937
1938 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001939}
1940
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001941#define VLV_FIFO(plane, value) \
1942 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1943
Ville Syrjäläff32c542017-03-02 19:14:57 +02001944static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1945 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001946{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001947 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001948 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001949 const struct vlv_fifo_state *fifo_state =
1950 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001951 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001952
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001953 if (!crtc_state->fifo_changed)
1954 return;
1955
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001956 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1957 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1958 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001959
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001960 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1961 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001962
Ville Syrjäläc137d662017-03-02 19:15:06 +02001963 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1964
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001965 /*
1966 * uncore.lock serves a double purpose here. It allows us to
1967 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1968 * it protects the DSPARB registers from getting clobbered by
1969 * parallel updates from multiple pipes.
1970 *
1971 * intel_pipe_update_start() has already disabled interrupts
1972 * for us, so a plain spin_lock() is sufficient here.
1973 */
1974 spin_lock(&dev_priv->uncore.lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001975
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001976 switch (crtc->pipe) {
1977 uint32_t dsparb, dsparb2, dsparb3;
1978 case PIPE_A:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001979 dsparb = I915_READ_FW(DSPARB);
1980 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001981
1982 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1983 VLV_FIFO(SPRITEB, 0xff));
1984 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1985 VLV_FIFO(SPRITEB, sprite1_start));
1986
1987 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1988 VLV_FIFO(SPRITEB_HI, 0x1));
1989 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1990 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1991
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001992 I915_WRITE_FW(DSPARB, dsparb);
1993 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001994 break;
1995 case PIPE_B:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001996 dsparb = I915_READ_FW(DSPARB);
1997 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001998
1999 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
2000 VLV_FIFO(SPRITED, 0xff));
2001 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
2002 VLV_FIFO(SPRITED, sprite1_start));
2003
2004 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
2005 VLV_FIFO(SPRITED_HI, 0xff));
2006 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2007 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2008
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002009 I915_WRITE_FW(DSPARB, dsparb);
2010 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002011 break;
2012 case PIPE_C:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002013 dsparb3 = I915_READ_FW(DSPARB3);
2014 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002015
2016 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2017 VLV_FIFO(SPRITEF, 0xff));
2018 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2019 VLV_FIFO(SPRITEF, sprite1_start));
2020
2021 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2022 VLV_FIFO(SPRITEF_HI, 0xff));
2023 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2024 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2025
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002026 I915_WRITE_FW(DSPARB3, dsparb3);
2027 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002028 break;
2029 default:
2030 break;
2031 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002032
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002033 POSTING_READ_FW(DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002034
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002035 spin_unlock(&dev_priv->uncore.lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002036}
2037
2038#undef VLV_FIFO
2039
Ville Syrjälä4841da52017-03-02 19:14:59 +02002040static int vlv_compute_intermediate_wm(struct drm_device *dev,
2041 struct intel_crtc *crtc,
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002042 struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002043{
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002044 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2045 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2046 struct intel_atomic_state *intel_state =
2047 to_intel_atomic_state(new_crtc_state->base.state);
2048 const struct intel_crtc_state *old_crtc_state =
2049 intel_atomic_get_old_crtc_state(intel_state, crtc);
2050 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002051 int level;
2052
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002053 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
2054 *intermediate = *optimal;
2055
2056 intermediate->cxsr = false;
2057 goto out;
2058 }
2059
Ville Syrjälä4841da52017-03-02 19:14:59 +02002060 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002061 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002062 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002063
2064 for (level = 0; level < intermediate->num_levels; level++) {
2065 enum plane_id plane_id;
2066
2067 for_each_plane_id_on_crtc(crtc, plane_id) {
2068 intermediate->wm[level].plane[plane_id] =
2069 min(optimal->wm[level].plane[plane_id],
2070 active->wm[level].plane[plane_id]);
2071 }
2072
2073 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2074 active->sr[level].plane);
2075 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2076 active->sr[level].cursor);
2077 }
2078
2079 vlv_invalidate_wms(crtc, intermediate, level);
2080
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002081out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002082 /*
2083 * If our intermediate WM are identical to the final WM, then we can
2084 * omit the post-vblank programming; only update if it's different.
2085 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002086 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002087 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002088
2089 return 0;
2090}
2091
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002092static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002093 struct vlv_wm_values *wm)
2094{
2095 struct intel_crtc *crtc;
2096 int num_active_crtcs = 0;
2097
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002098 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002099 wm->cxsr = true;
2100
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002101 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002102 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002103
2104 if (!crtc->active)
2105 continue;
2106
2107 if (!wm_state->cxsr)
2108 wm->cxsr = false;
2109
2110 num_active_crtcs++;
2111 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2112 }
2113
2114 if (num_active_crtcs != 1)
2115 wm->cxsr = false;
2116
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002117 if (num_active_crtcs > 1)
2118 wm->level = VLV_WM_LEVEL_PM2;
2119
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002120 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002121 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002122 enum pipe pipe = crtc->pipe;
2123
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002124 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002125 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002126 wm->sr = wm_state->sr[wm->level];
2127
Ville Syrjälä1b313892016-11-28 19:37:08 +02002128 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2129 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2130 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2131 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002132 }
2133}
2134
Ville Syrjäläff32c542017-03-02 19:14:57 +02002135static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002136{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002137 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2138 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002139
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002140 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002141
Ville Syrjäläff32c542017-03-02 19:14:57 +02002142 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002143 return;
2144
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002145 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002146 chv_set_memory_dvfs(dev_priv, false);
2147
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002148 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002149 chv_set_memory_pm5(dev_priv, false);
2150
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002151 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002152 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002153
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002154 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002155
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002156 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002157 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002158
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002159 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002160 chv_set_memory_pm5(dev_priv, true);
2161
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002162 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002163 chv_set_memory_dvfs(dev_priv, true);
2164
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002165 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002166}
2167
Ville Syrjäläff32c542017-03-02 19:14:57 +02002168static void vlv_initial_watermarks(struct intel_atomic_state *state,
2169 struct intel_crtc_state *crtc_state)
2170{
2171 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2172 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
2173
2174 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002175 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2176 vlv_program_watermarks(dev_priv);
2177 mutex_unlock(&dev_priv->wm.wm_mutex);
2178}
2179
2180static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2181 struct intel_crtc_state *crtc_state)
2182{
2183 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2184 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2185
2186 if (!crtc_state->wm.need_postvbl_update)
2187 return;
2188
2189 mutex_lock(&dev_priv->wm.wm_mutex);
2190 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002191 vlv_program_watermarks(dev_priv);
2192 mutex_unlock(&dev_priv->wm.wm_mutex);
2193}
2194
Ville Syrjälä432081b2016-10-31 22:37:03 +02002195static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002196{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002197 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002198 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002199 int srwm = 1;
2200 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002201 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002202
2203 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002204 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002205 if (crtc) {
2206 /* self-refresh has much higher latency */
2207 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002208 const struct drm_display_mode *adjusted_mode =
2209 &crtc->config->base.adjusted_mode;
2210 const struct drm_framebuffer *fb =
2211 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002212 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002213 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002214 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002215 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002216 int entries;
2217
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002218 entries = intel_wm_method2(clock, htotal,
2219 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002220 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2221 srwm = I965_FIFO_SIZE - entries;
2222 if (srwm < 0)
2223 srwm = 1;
2224 srwm &= 0x1ff;
2225 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
2226 entries, srwm);
2227
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002228 entries = intel_wm_method2(clock, htotal,
2229 crtc->base.cursor->state->crtc_w, 4,
2230 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002231 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002232 i965_cursor_wm_info.cacheline_size) +
2233 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002234
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002235 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002236 if (cursor_sr > i965_cursor_wm_info.max_wm)
2237 cursor_sr = i965_cursor_wm_info.max_wm;
2238
2239 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2240 "cursor %d\n", srwm, cursor_sr);
2241
Imre Deak98584252014-06-13 14:54:20 +03002242 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002243 } else {
Imre Deak98584252014-06-13 14:54:20 +03002244 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002245 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002246 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002247 }
2248
2249 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2250 srwm);
2251
2252 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002253 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2254 FW_WM(8, CURSORB) |
2255 FW_WM(8, PLANEB) |
2256 FW_WM(8, PLANEA));
2257 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2258 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002259 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002260 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002261
2262 if (cxsr_enabled)
2263 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002264}
2265
Ville Syrjäläf4998962015-03-10 17:02:21 +02002266#undef FW_WM
2267
Ville Syrjälä432081b2016-10-31 22:37:03 +02002268static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002269{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002270 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002271 const struct intel_watermark_params *wm_info;
2272 uint32_t fwater_lo;
2273 uint32_t fwater_hi;
2274 int cwm, srwm = 1;
2275 int fifo_size;
2276 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002277 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002278
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002279 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002280 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002281 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002282 wm_info = &i915_wm_info;
2283 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002284 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002285
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002286 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002287 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002288 if (intel_crtc_active(crtc)) {
2289 const struct drm_display_mode *adjusted_mode =
2290 &crtc->config->base.adjusted_mode;
2291 const struct drm_framebuffer *fb =
2292 crtc->base.primary->state->fb;
2293 int cpp;
2294
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002295 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002296 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002297 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002298 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002299
Damien Lespiau241bfc32013-09-25 16:45:37 +01002300 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002301 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002302 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002303 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002304 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002305 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002306 if (planea_wm > (long)wm_info->max_wm)
2307 planea_wm = wm_info->max_wm;
2308 }
2309
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002310 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002311 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002312
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002313 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002314 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002315 if (intel_crtc_active(crtc)) {
2316 const struct drm_display_mode *adjusted_mode =
2317 &crtc->config->base.adjusted_mode;
2318 const struct drm_framebuffer *fb =
2319 crtc->base.primary->state->fb;
2320 int cpp;
2321
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002322 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002323 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002324 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002325 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002326
Damien Lespiau241bfc32013-09-25 16:45:37 +01002327 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002328 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002329 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002330 if (enabled == NULL)
2331 enabled = crtc;
2332 else
2333 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002334 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002335 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002336 if (planeb_wm > (long)wm_info->max_wm)
2337 planeb_wm = wm_info->max_wm;
2338 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002339
2340 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2341
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002342 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002343 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002344
Ville Syrjäläefc26112016-10-31 22:37:04 +02002345 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002346
2347 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002348 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002349 enabled = NULL;
2350 }
2351
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002352 /*
2353 * Overlay gets an aggressive default since video jitter is bad.
2354 */
2355 cwm = 2;
2356
2357 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002358 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002359
2360 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002361 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002362 /* self-refresh has much higher latency */
2363 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002364 const struct drm_display_mode *adjusted_mode =
2365 &enabled->config->base.adjusted_mode;
2366 const struct drm_framebuffer *fb =
2367 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002368 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002369 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002370 int hdisplay = enabled->config->pipe_src_w;
2371 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002372 int entries;
2373
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002374 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002375 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002376 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002377 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002378
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002379 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2380 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002381 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2382 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
2383 srwm = wm_info->fifo_size - entries;
2384 if (srwm < 0)
2385 srwm = 1;
2386
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002387 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002388 I915_WRITE(FW_BLC_SELF,
2389 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002390 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002391 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2392 }
2393
2394 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2395 planea_wm, planeb_wm, cwm, srwm);
2396
2397 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2398 fwater_hi = (cwm & 0x1f);
2399
2400 /* Set request length to 8 cachelines per fetch */
2401 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2402 fwater_hi = fwater_hi | (1 << 8);
2403
2404 I915_WRITE(FW_BLC, fwater_lo);
2405 I915_WRITE(FW_BLC2, fwater_hi);
2406
Imre Deak5209b1f2014-07-01 12:36:17 +03002407 if (enabled)
2408 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002409}
2410
Ville Syrjälä432081b2016-10-31 22:37:03 +02002411static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002412{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002413 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002414 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002415 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002416 uint32_t fwater_lo;
2417 int planea_wm;
2418
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002419 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002420 if (crtc == NULL)
2421 return;
2422
Ville Syrjäläefc26112016-10-31 22:37:04 +02002423 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002424 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002425 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002426 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01002427 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002428 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2429 fwater_lo |= (3<<8) | planea_wm;
2430
2431 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
2432
2433 I915_WRITE(FW_BLC, fwater_lo);
2434}
2435
Ville Syrjälä37126462013-08-01 16:18:55 +03002436/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002437static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2438 unsigned int cpp,
2439 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002440{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002441 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002442
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002443 ret = intel_wm_method1(pixel_rate, cpp, latency);
2444 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002445
2446 return ret;
2447}
2448
Ville Syrjälä37126462013-08-01 16:18:55 +03002449/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002450static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2451 unsigned int htotal,
2452 unsigned int width,
2453 unsigned int cpp,
2454 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002455{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002456 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002457
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002458 ret = intel_wm_method2(pixel_rate, htotal,
2459 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002460 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002461
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002462 return ret;
2463}
2464
Ville Syrjälä23297042013-07-05 11:57:17 +03002465static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02002466 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002467{
Matt Roper15126882015-12-03 11:37:40 -08002468 /*
2469 * Neither of these should be possible since this function shouldn't be
2470 * called if the CRTC is off or the plane is invisible. But let's be
2471 * extra paranoid to avoid a potential divide-by-zero if we screw up
2472 * elsewhere in the driver.
2473 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002474 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002475 return 0;
2476 if (WARN_ON(!horiz_pixels))
2477 return 0;
2478
Ville Syrjäläac484962016-01-20 21:05:26 +02002479 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002480}
2481
Imre Deak820c1982013-12-17 14:46:36 +02002482struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002483 uint16_t pri;
2484 uint16_t spr;
2485 uint16_t cur;
2486 uint16_t fbc;
2487};
2488
Ville Syrjälä37126462013-08-01 16:18:55 +03002489/*
2490 * For both WM_PIPE and WM_LP.
2491 * mem_value must be in 0.1us units.
2492 */
Matt Roper7221fc32015-09-24 15:53:08 -07002493static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002494 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002495 uint32_t mem_value,
2496 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002497{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002498 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002499 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002500
Ville Syrjälä24304d812017-03-14 17:10:49 +02002501 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002502 return 0;
2503
Ville Syrjälä353c8592016-12-14 23:30:57 +02002504 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002505
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002506 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002507
2508 if (!is_lp)
2509 return method1;
2510
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002511 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002512 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002513 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002514 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002515
2516 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002517}
2518
Ville Syrjälä37126462013-08-01 16:18:55 +03002519/*
2520 * For both WM_PIPE and WM_LP.
2521 * mem_value must be in 0.1us units.
2522 */
Matt Roper7221fc32015-09-24 15:53:08 -07002523static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002524 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002525 uint32_t mem_value)
2526{
2527 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002528 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002529
Ville Syrjälä24304d812017-03-14 17:10:49 +02002530 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002531 return 0;
2532
Ville Syrjälä353c8592016-12-14 23:30:57 +02002533 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002534
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002535 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
2536 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002537 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002538 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002539 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002540 return min(method1, method2);
2541}
2542
Ville Syrjälä37126462013-08-01 16:18:55 +03002543/*
2544 * For both WM_PIPE and WM_LP.
2545 * mem_value must be in 0.1us units.
2546 */
Matt Roper7221fc32015-09-24 15:53:08 -07002547static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002548 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002549 uint32_t mem_value)
2550{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002551 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002552
Ville Syrjälä24304d812017-03-14 17:10:49 +02002553 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002554 return 0;
2555
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002556 cpp = pstate->base.fb->format->cpp[0];
2557
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002558 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002559 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002560 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002561}
2562
Paulo Zanonicca32e92013-05-31 11:45:06 -03002563/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002564static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002565 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002566 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002567{
Ville Syrjälä83054942016-11-18 21:53:00 +02002568 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002569
Ville Syrjälä24304d812017-03-14 17:10:49 +02002570 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002571 return 0;
2572
Ville Syrjälä353c8592016-12-14 23:30:57 +02002573 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002574
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002575 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002576}
2577
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002578static unsigned int
2579ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002580{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002581 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002582 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002583 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002584 return 768;
2585 else
2586 return 512;
2587}
2588
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002589static unsigned int
2590ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2591 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002592{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002593 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002594 /* BDW primary/sprite plane watermarks */
2595 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002596 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002597 /* IVB/HSW primary/sprite plane watermarks */
2598 return level == 0 ? 127 : 1023;
2599 else if (!is_sprite)
2600 /* ILK/SNB primary plane watermarks */
2601 return level == 0 ? 127 : 511;
2602 else
2603 /* ILK/SNB sprite plane watermarks */
2604 return level == 0 ? 63 : 255;
2605}
2606
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002607static unsigned int
2608ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002609{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002610 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002611 return level == 0 ? 63 : 255;
2612 else
2613 return level == 0 ? 31 : 63;
2614}
2615
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002616static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002617{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002618 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002619 return 31;
2620 else
2621 return 15;
2622}
2623
Ville Syrjälä158ae642013-08-07 13:28:19 +03002624/* Calculate the maximum primary/sprite plane watermark */
2625static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2626 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002627 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002628 enum intel_ddb_partitioning ddb_partitioning,
2629 bool is_sprite)
2630{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002631 struct drm_i915_private *dev_priv = to_i915(dev);
2632 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002633
2634 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002635 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002636 return 0;
2637
2638 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002639 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002640 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002641
2642 /*
2643 * For some reason the non self refresh
2644 * FIFO size is only half of the self
2645 * refresh FIFO size on ILK/SNB.
2646 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002647 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002648 fifo_size /= 2;
2649 }
2650
Ville Syrjälä240264f2013-08-07 13:29:12 +03002651 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002652 /* level 0 is always calculated with 1:1 split */
2653 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2654 if (is_sprite)
2655 fifo_size *= 5;
2656 fifo_size /= 6;
2657 } else {
2658 fifo_size /= 2;
2659 }
2660 }
2661
2662 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002663 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002664}
2665
2666/* Calculate the maximum cursor plane watermark */
2667static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002668 int level,
2669 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002670{
2671 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002672 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002673 return 64;
2674
2675 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002676 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002677}
2678
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002679static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002680 int level,
2681 const struct intel_wm_config *config,
2682 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002683 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002684{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002685 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2686 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2687 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002688 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002689}
2690
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002691static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002692 int level,
2693 struct ilk_wm_maximums *max)
2694{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002695 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2696 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2697 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2698 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002699}
2700
Ville Syrjäläd9395652013-10-09 19:18:10 +03002701static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002702 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002703 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002704{
2705 bool ret;
2706
2707 /* already determined to be invalid? */
2708 if (!result->enable)
2709 return false;
2710
2711 result->enable = result->pri_val <= max->pri &&
2712 result->spr_val <= max->spr &&
2713 result->cur_val <= max->cur;
2714
2715 ret = result->enable;
2716
2717 /*
2718 * HACK until we can pre-compute everything,
2719 * and thus fail gracefully if LP0 watermarks
2720 * are exceeded...
2721 */
2722 if (level == 0 && !result->enable) {
2723 if (result->pri_val > max->pri)
2724 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2725 level, result->pri_val, max->pri);
2726 if (result->spr_val > max->spr)
2727 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2728 level, result->spr_val, max->spr);
2729 if (result->cur_val > max->cur)
2730 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2731 level, result->cur_val, max->cur);
2732
2733 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2734 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2735 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2736 result->enable = true;
2737 }
2738
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002739 return ret;
2740}
2741
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002742static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002743 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002744 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002745 struct intel_crtc_state *cstate,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002746 const struct intel_plane_state *pristate,
2747 const struct intel_plane_state *sprstate,
2748 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002749 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002750{
2751 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2752 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2753 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2754
2755 /* WM1+ latency values stored in 0.5us units */
2756 if (level > 0) {
2757 pri_latency *= 5;
2758 spr_latency *= 5;
2759 cur_latency *= 5;
2760 }
2761
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002762 if (pristate) {
2763 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2764 pri_latency, level);
2765 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2766 }
2767
2768 if (sprstate)
2769 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2770
2771 if (curstate)
2772 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2773
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002774 result->enable = true;
2775}
2776
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002777static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002778hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002779{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002780 const struct intel_atomic_state *intel_state =
2781 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002782 const struct drm_display_mode *adjusted_mode =
2783 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002784 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002785
Matt Roperee91a152015-12-03 11:37:39 -08002786 if (!cstate->base.active)
2787 return 0;
2788 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2789 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002790 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002791 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002792
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002793 /* The WM are computed with base on how long it takes to fill a single
2794 * row at the given clock rate, multiplied by 8.
2795 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002796 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2797 adjusted_mode->crtc_clock);
2798 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002799 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002800
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002801 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2802 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002803}
2804
Ville Syrjäläbb726512016-10-31 22:37:24 +02002805static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2806 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002807{
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002808 if (INTEL_GEN(dev_priv) >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002809 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002810 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002811 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002812
2813 /* read the first set of memory latencies[0:3] */
2814 val = 0; /* data0 to be programmed to 0 for first set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002815 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002816 ret = sandybridge_pcode_read(dev_priv,
2817 GEN9_PCODE_READ_MEM_LATENCY,
2818 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002819 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002820
2821 if (ret) {
2822 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2823 return;
2824 }
2825
2826 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2827 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2828 GEN9_MEM_LATENCY_LEVEL_MASK;
2829 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2830 GEN9_MEM_LATENCY_LEVEL_MASK;
2831 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2832 GEN9_MEM_LATENCY_LEVEL_MASK;
2833
2834 /* read the second set of memory latencies[4:7] */
2835 val = 1; /* data0 to be programmed to 1 for second set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002836 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002837 ret = sandybridge_pcode_read(dev_priv,
2838 GEN9_PCODE_READ_MEM_LATENCY,
2839 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002840 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002841 if (ret) {
2842 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2843 return;
2844 }
2845
2846 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2847 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2848 GEN9_MEM_LATENCY_LEVEL_MASK;
2849 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2850 GEN9_MEM_LATENCY_LEVEL_MASK;
2851 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2852 GEN9_MEM_LATENCY_LEVEL_MASK;
2853
Vandana Kannan367294b2014-11-04 17:06:46 +00002854 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002855 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2856 * need to be disabled. We make sure to sanitize the values out
2857 * of the punit to satisfy this requirement.
2858 */
2859 for (level = 1; level <= max_level; level++) {
2860 if (wm[level] == 0) {
2861 for (i = level + 1; i <= max_level; i++)
2862 wm[i] = 0;
2863 break;
2864 }
2865 }
2866
2867 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002868 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002869 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002870 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002871 * to add 2us to the various latency levels we retrieve from the
2872 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002873 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002874 if (wm[0] == 0) {
2875 wm[0] += 2;
2876 for (level = 1; level <= max_level; level++) {
2877 if (wm[level] == 0)
2878 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002879 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002880 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002881 }
2882
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002883 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002884 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2885
2886 wm[0] = (sskpd >> 56) & 0xFF;
2887 if (wm[0] == 0)
2888 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002889 wm[1] = (sskpd >> 4) & 0xFF;
2890 wm[2] = (sskpd >> 12) & 0xFF;
2891 wm[3] = (sskpd >> 20) & 0x1FF;
2892 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002893 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002894 uint32_t sskpd = I915_READ(MCH_SSKPD);
2895
2896 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2897 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2898 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2899 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002900 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002901 uint32_t mltr = I915_READ(MLTR_ILK);
2902
2903 /* ILK primary LP0 latency is 700 ns */
2904 wm[0] = 7;
2905 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2906 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002907 } else {
2908 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002909 }
2910}
2911
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002912static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2913 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002914{
2915 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002916 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002917 wm[0] = 13;
2918}
2919
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002920static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2921 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002922{
2923 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002924 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002925 wm[0] = 13;
2926
2927 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002928 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002929 wm[3] *= 2;
2930}
2931
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002932int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002933{
2934 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002935 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002936 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002937 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002938 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002939 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002940 return 3;
2941 else
2942 return 2;
2943}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002944
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002945static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002946 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002947 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002948{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002949 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002950
2951 for (level = 0; level <= max_level; level++) {
2952 unsigned int latency = wm[level];
2953
2954 if (latency == 0) {
2955 DRM_ERROR("%s WM%d latency not provided\n",
2956 name, level);
2957 continue;
2958 }
2959
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002960 /*
2961 * - latencies are in us on gen9.
2962 * - before then, WM1+ latency values are in 0.5us units
2963 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002964 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002965 latency *= 10;
2966 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002967 latency *= 5;
2968
2969 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2970 name, level, wm[level],
2971 latency / 10, latency % 10);
2972 }
2973}
2974
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002975static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2976 uint16_t wm[5], uint16_t min)
2977{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002978 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002979
2980 if (wm[0] >= min)
2981 return false;
2982
2983 wm[0] = max(wm[0], min);
2984 for (level = 1; level <= max_level; level++)
2985 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2986
2987 return true;
2988}
2989
Ville Syrjäläbb726512016-10-31 22:37:24 +02002990static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002991{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002992 bool changed;
2993
2994 /*
2995 * The BIOS provided WM memory latency values are often
2996 * inadequate for high resolution displays. Adjust them.
2997 */
2998 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2999 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3000 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3001
3002 if (!changed)
3003 return;
3004
3005 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003006 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3007 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3008 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003009}
3010
Ville Syrjäläbb726512016-10-31 22:37:24 +02003011static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03003012{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003013 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003014
3015 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3016 sizeof(dev_priv->wm.pri_latency));
3017 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3018 sizeof(dev_priv->wm.pri_latency));
3019
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003020 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003021 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003022
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003023 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3024 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3025 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003026
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003027 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02003028 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003029}
3030
Ville Syrjäläbb726512016-10-31 22:37:24 +02003031static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003032{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003033 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003034 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003035}
3036
Matt Ropered4a6a72016-02-23 17:20:13 -08003037static bool ilk_validate_pipe_wm(struct drm_device *dev,
3038 struct intel_pipe_wm *pipe_wm)
3039{
3040 /* LP0 watermark maximums depend on this pipe alone */
3041 const struct intel_wm_config config = {
3042 .num_pipes_active = 1,
3043 .sprites_enabled = pipe_wm->sprites_enabled,
3044 .sprites_scaled = pipe_wm->sprites_scaled,
3045 };
3046 struct ilk_wm_maximums max;
3047
3048 /* LP0 watermarks always use 1/2 DDB partitioning */
3049 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
3050
3051 /* At least LP0 must be valid */
3052 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3053 DRM_DEBUG_KMS("LP0 watermark invalid\n");
3054 return false;
3055 }
3056
3057 return true;
3058}
3059
Matt Roper261a27d2015-10-08 15:28:25 -07003060/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003061static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07003062{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003063 struct drm_atomic_state *state = cstate->base.state;
3064 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003065 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003066 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003067 const struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003068 struct drm_plane *plane;
3069 const struct drm_plane_state *plane_state;
3070 const struct intel_plane_state *pristate = NULL;
3071 const struct intel_plane_state *sprstate = NULL;
3072 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003073 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003074 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003075
Matt Ropere8f1f022016-05-12 07:05:55 -07003076 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003077
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003078 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, &cstate->base) {
3079 const struct intel_plane_state *ps = to_intel_plane_state(plane_state);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003080
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003081 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003082 pristate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003083 else if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003084 sprstate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003085 else if (plane->type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003086 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07003087 }
3088
Matt Ropered4a6a72016-02-23 17:20:13 -08003089 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003090 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003091 pipe_wm->sprites_enabled = sprstate->base.visible;
3092 pipe_wm->sprites_scaled = sprstate->base.visible &&
3093 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
3094 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003095 }
3096
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003097 usable_level = max_level;
3098
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003099 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003100 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003101 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003102
3103 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003104 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003105 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003106
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003107 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003108 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
3109 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003110
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003111 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03003112 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003113
Matt Ropered4a6a72016-02-23 17:20:13 -08003114 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003115 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003116
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003117 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003118
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003119 for (level = 1; level <= usable_level; level++) {
3120 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003121
Matt Roper86c8bbb2015-09-24 15:53:16 -07003122 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003123 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003124
3125 /*
3126 * Disable any watermark level that exceeds the
3127 * register maximums since such watermarks are
3128 * always invalid.
3129 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003130 if (!ilk_validate_wm_level(level, &max, wm)) {
3131 memset(wm, 0, sizeof(*wm));
3132 break;
3133 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003134 }
3135
Matt Roper86c8bbb2015-09-24 15:53:16 -07003136 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003137}
3138
3139/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003140 * Build a set of 'intermediate' watermark values that satisfy both the old
3141 * state and the new state. These can be programmed to the hardware
3142 * immediately.
3143 */
3144static int ilk_compute_intermediate_wm(struct drm_device *dev,
3145 struct intel_crtc *intel_crtc,
3146 struct intel_crtc_state *newstate)
3147{
Matt Ropere8f1f022016-05-12 07:05:55 -07003148 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003149 struct intel_atomic_state *intel_state =
3150 to_intel_atomic_state(newstate->base.state);
3151 const struct intel_crtc_state *oldstate =
3152 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3153 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003154 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08003155
3156 /*
3157 * Start with the final, target watermarks, then combine with the
3158 * currently active watermarks to get values that are safe both before
3159 * and after the vblank.
3160 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003161 *a = newstate->wm.ilk.optimal;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003162 if (!newstate->base.active || drm_atomic_crtc_needs_modeset(&newstate->base))
3163 return 0;
3164
Matt Ropered4a6a72016-02-23 17:20:13 -08003165 a->pipe_enabled |= b->pipe_enabled;
3166 a->sprites_enabled |= b->sprites_enabled;
3167 a->sprites_scaled |= b->sprites_scaled;
3168
3169 for (level = 0; level <= max_level; level++) {
3170 struct intel_wm_level *a_wm = &a->wm[level];
3171 const struct intel_wm_level *b_wm = &b->wm[level];
3172
3173 a_wm->enable &= b_wm->enable;
3174 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3175 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3176 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3177 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3178 }
3179
3180 /*
3181 * We need to make sure that these merged watermark values are
3182 * actually a valid configuration themselves. If they're not,
3183 * there's no safe way to transition from the old state to
3184 * the new state, so we need to fail the atomic transaction.
3185 */
3186 if (!ilk_validate_pipe_wm(dev, a))
3187 return -EINVAL;
3188
3189 /*
3190 * If our intermediate WM are identical to the final WM, then we can
3191 * omit the post-vblank programming; only update if it's different.
3192 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003193 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3194 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003195
3196 return 0;
3197}
3198
3199/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003200 * Merge the watermarks from all active pipes for a specific level.
3201 */
3202static void ilk_merge_wm_level(struct drm_device *dev,
3203 int level,
3204 struct intel_wm_level *ret_wm)
3205{
3206 const struct intel_crtc *intel_crtc;
3207
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003208 ret_wm->enable = true;
3209
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003210 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003211 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003212 const struct intel_wm_level *wm = &active->wm[level];
3213
3214 if (!active->pipe_enabled)
3215 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003216
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003217 /*
3218 * The watermark values may have been used in the past,
3219 * so we must maintain them in the registers for some
3220 * time even if the level is now disabled.
3221 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003222 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003223 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003224
3225 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3226 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3227 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3228 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3229 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003230}
3231
3232/*
3233 * Merge all low power watermarks for all active pipes.
3234 */
3235static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003236 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003237 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003238 struct intel_pipe_wm *merged)
3239{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003240 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003241 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003242 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003243
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003244 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003245 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003246 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003247 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003248
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003249 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003250 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003251
3252 /* merge each WM1+ level */
3253 for (level = 1; level <= max_level; level++) {
3254 struct intel_wm_level *wm = &merged->wm[level];
3255
3256 ilk_merge_wm_level(dev, level, wm);
3257
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003258 if (level > last_enabled_level)
3259 wm->enable = false;
3260 else if (!ilk_validate_wm_level(level, max, wm))
3261 /* make sure all following levels get disabled */
3262 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003263
3264 /*
3265 * The spec says it is preferred to disable
3266 * FBC WMs instead of disabling a WM level.
3267 */
3268 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003269 if (wm->enable)
3270 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003271 wm->fbc_val = 0;
3272 }
3273 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003274
3275 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3276 /*
3277 * FIXME this is racy. FBC might get enabled later.
3278 * What we should check here is whether FBC can be
3279 * enabled sometime later.
3280 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003281 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003282 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003283 for (level = 2; level <= max_level; level++) {
3284 struct intel_wm_level *wm = &merged->wm[level];
3285
3286 wm->enable = false;
3287 }
3288 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003289}
3290
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003291static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3292{
3293 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3294 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3295}
3296
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003297/* The value we need to program into the WM_LPx latency field */
3298static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
3299{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003300 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003301
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003302 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003303 return 2 * level;
3304 else
3305 return dev_priv->wm.pri_latency[level];
3306}
3307
Imre Deak820c1982013-12-17 14:46:36 +02003308static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003309 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003310 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003311 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003312{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003313 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003314 struct intel_crtc *intel_crtc;
3315 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003316
Ville Syrjälä0362c782013-10-09 19:17:57 +03003317 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003318 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003319
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003320 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003321 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003322 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003323
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003324 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003325
Ville Syrjälä0362c782013-10-09 19:17:57 +03003326 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003327
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003328 /*
3329 * Maintain the watermark values even if the level is
3330 * disabled. Doing otherwise could cause underruns.
3331 */
3332 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003333 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003334 (r->pri_val << WM1_LP_SR_SHIFT) |
3335 r->cur_val;
3336
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003337 if (r->enable)
3338 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3339
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003340 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003341 results->wm_lp[wm_lp - 1] |=
3342 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3343 else
3344 results->wm_lp[wm_lp - 1] |=
3345 r->fbc_val << WM1_LP_FBC_SHIFT;
3346
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003347 /*
3348 * Always set WM1S_LP_EN when spr_val != 0, even if the
3349 * level is disabled. Doing otherwise could cause underruns.
3350 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003351 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003352 WARN_ON(wm_lp != 1);
3353 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3354 } else
3355 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003356 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003357
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003358 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003359 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003360 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003361 const struct intel_wm_level *r =
3362 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003363
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003364 if (WARN_ON(!r->enable))
3365 continue;
3366
Matt Ropered4a6a72016-02-23 17:20:13 -08003367 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003368
3369 results->wm_pipe[pipe] =
3370 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3371 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3372 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003373 }
3374}
3375
Paulo Zanoni861f3382013-05-31 10:19:21 -03003376/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3377 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02003378static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003379 struct intel_pipe_wm *r1,
3380 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003381{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003382 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003383 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003384
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003385 for (level = 1; level <= max_level; level++) {
3386 if (r1->wm[level].enable)
3387 level1 = level;
3388 if (r2->wm[level].enable)
3389 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003390 }
3391
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003392 if (level1 == level2) {
3393 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003394 return r2;
3395 else
3396 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003397 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003398 return r1;
3399 } else {
3400 return r2;
3401 }
3402}
3403
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003404/* dirty bits used to track which watermarks need changes */
3405#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3406#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3407#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3408#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3409#define WM_DIRTY_FBC (1 << 24)
3410#define WM_DIRTY_DDB (1 << 25)
3411
Damien Lespiau055e3932014-08-18 13:49:10 +01003412static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003413 const struct ilk_wm_values *old,
3414 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003415{
3416 unsigned int dirty = 0;
3417 enum pipe pipe;
3418 int wm_lp;
3419
Damien Lespiau055e3932014-08-18 13:49:10 +01003420 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003421 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3422 dirty |= WM_DIRTY_LINETIME(pipe);
3423 /* Must disable LP1+ watermarks too */
3424 dirty |= WM_DIRTY_LP_ALL;
3425 }
3426
3427 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3428 dirty |= WM_DIRTY_PIPE(pipe);
3429 /* Must disable LP1+ watermarks too */
3430 dirty |= WM_DIRTY_LP_ALL;
3431 }
3432 }
3433
3434 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3435 dirty |= WM_DIRTY_FBC;
3436 /* Must disable LP1+ watermarks too */
3437 dirty |= WM_DIRTY_LP_ALL;
3438 }
3439
3440 if (old->partitioning != new->partitioning) {
3441 dirty |= WM_DIRTY_DDB;
3442 /* Must disable LP1+ watermarks too */
3443 dirty |= WM_DIRTY_LP_ALL;
3444 }
3445
3446 /* LP1+ watermarks already deemed dirty, no need to continue */
3447 if (dirty & WM_DIRTY_LP_ALL)
3448 return dirty;
3449
3450 /* Find the lowest numbered LP1+ watermark in need of an update... */
3451 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3452 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3453 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3454 break;
3455 }
3456
3457 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3458 for (; wm_lp <= 3; wm_lp++)
3459 dirty |= WM_DIRTY_LP(wm_lp);
3460
3461 return dirty;
3462}
3463
Ville Syrjälä8553c182013-12-05 15:51:39 +02003464static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3465 unsigned int dirty)
3466{
Imre Deak820c1982013-12-17 14:46:36 +02003467 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003468 bool changed = false;
3469
3470 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3471 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3472 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3473 changed = true;
3474 }
3475 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3476 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3477 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3478 changed = true;
3479 }
3480 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3481 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3482 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3483 changed = true;
3484 }
3485
3486 /*
3487 * Don't touch WM1S_LP_EN here.
3488 * Doing so could cause underruns.
3489 */
3490
3491 return changed;
3492}
3493
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003494/*
3495 * The spec says we shouldn't write when we don't need, because every write
3496 * causes WMs to be re-evaluated, expending some power.
3497 */
Imre Deak820c1982013-12-17 14:46:36 +02003498static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3499 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003500{
Imre Deak820c1982013-12-17 14:46:36 +02003501 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003502 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003503 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003504
Damien Lespiau055e3932014-08-18 13:49:10 +01003505 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003506 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003507 return;
3508
Ville Syrjälä8553c182013-12-05 15:51:39 +02003509 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003510
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003511 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003512 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003513 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003514 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003515 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003516 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3517
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003518 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003519 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003520 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003521 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003522 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003523 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3524
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003525 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003526 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003527 val = I915_READ(WM_MISC);
3528 if (results->partitioning == INTEL_DDB_PART_1_2)
3529 val &= ~WM_MISC_DATA_PARTITION_5_6;
3530 else
3531 val |= WM_MISC_DATA_PARTITION_5_6;
3532 I915_WRITE(WM_MISC, val);
3533 } else {
3534 val = I915_READ(DISP_ARB_CTL2);
3535 if (results->partitioning == INTEL_DDB_PART_1_2)
3536 val &= ~DISP_DATA_PARTITION_5_6;
3537 else
3538 val |= DISP_DATA_PARTITION_5_6;
3539 I915_WRITE(DISP_ARB_CTL2, val);
3540 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003541 }
3542
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003543 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003544 val = I915_READ(DISP_ARB_CTL);
3545 if (results->enable_fbc_wm)
3546 val &= ~DISP_FBC_WM_DIS;
3547 else
3548 val |= DISP_FBC_WM_DIS;
3549 I915_WRITE(DISP_ARB_CTL, val);
3550 }
3551
Imre Deak954911e2013-12-17 14:46:34 +02003552 if (dirty & WM_DIRTY_LP(1) &&
3553 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3554 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3555
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003556 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003557 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3558 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3559 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3560 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3561 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003562
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003563 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003564 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003565 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003566 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003567 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003568 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003569
3570 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003571}
3572
Matt Ropered4a6a72016-02-23 17:20:13 -08003573bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003574{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003575 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003576
3577 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3578}
3579
Matt Roper024c9042015-09-24 15:53:11 -07003580/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003581 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3582 * so assume we'll always need it in order to avoid underruns.
3583 */
3584static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3585{
3586 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3587
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003588 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003589 return true;
3590
3591 return false;
3592}
3593
Paulo Zanoni56feca92016-09-22 18:00:28 -03003594static bool
3595intel_has_sagv(struct drm_i915_private *dev_priv)
3596{
Rodrigo Vivi01971812017-08-09 13:52:44 -07003597 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
3598 IS_CANNONLAKE(dev_priv))
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003599 return true;
3600
3601 if (IS_SKYLAKE(dev_priv) &&
3602 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3603 return true;
3604
3605 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003606}
3607
Lyude656d1b82016-08-17 15:55:54 -04003608/*
3609 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3610 * depending on power and performance requirements. The display engine access
3611 * to system memory is blocked during the adjustment time. Because of the
3612 * blocking time, having this enabled can cause full system hangs and/or pipe
3613 * underruns if we don't meet all of the following requirements:
3614 *
3615 * - <= 1 pipe enabled
3616 * - All planes can enable watermarks for latencies >= SAGV engine block time
3617 * - We're not using an interlaced display configuration
3618 */
3619int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003620intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003621{
3622 int ret;
3623
Paulo Zanoni56feca92016-09-22 18:00:28 -03003624 if (!intel_has_sagv(dev_priv))
3625 return 0;
3626
3627 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003628 return 0;
3629
3630 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003631 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003632
3633 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3634 GEN9_SAGV_ENABLE);
3635
3636 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003637 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003638
3639 /*
3640 * Some skl systems, pre-release machines in particular,
3641 * don't actually have an SAGV.
3642 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003643 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003644 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003645 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003646 return 0;
3647 } else if (ret < 0) {
3648 DRM_ERROR("Failed to enable the SAGV\n");
3649 return ret;
3650 }
3651
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003652 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003653 return 0;
3654}
3655
Lyude656d1b82016-08-17 15:55:54 -04003656int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003657intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003658{
Imre Deakb3b8e992016-12-05 18:27:38 +02003659 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003660
Paulo Zanoni56feca92016-09-22 18:00:28 -03003661 if (!intel_has_sagv(dev_priv))
3662 return 0;
3663
3664 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003665 return 0;
3666
3667 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003668 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003669
3670 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003671 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3672 GEN9_SAGV_DISABLE,
3673 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3674 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003675 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003676
Lyude656d1b82016-08-17 15:55:54 -04003677 /*
3678 * Some skl systems, pre-release machines in particular,
3679 * don't actually have an SAGV.
3680 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003681 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003682 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003683 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003684 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003685 } else if (ret < 0) {
3686 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3687 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003688 }
3689
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003690 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003691 return 0;
3692}
3693
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003694bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003695{
3696 struct drm_device *dev = state->dev;
3697 struct drm_i915_private *dev_priv = to_i915(dev);
3698 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003699 struct intel_crtc *crtc;
3700 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003701 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003702 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003703 int level, latency;
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003704 int sagv_block_time_us = IS_GEN9(dev_priv) ? 30 : 20;
Lyude656d1b82016-08-17 15:55:54 -04003705
Paulo Zanoni56feca92016-09-22 18:00:28 -03003706 if (!intel_has_sagv(dev_priv))
3707 return false;
3708
Lyude656d1b82016-08-17 15:55:54 -04003709 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003710 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003711 * more then one pipe enabled
3712 *
3713 * If there are no active CRTCs, no additional checks need be performed
3714 */
3715 if (hweight32(intel_state->active_crtcs) == 0)
3716 return true;
3717 else if (hweight32(intel_state->active_crtcs) > 1)
3718 return false;
3719
3720 /* Since we're now guaranteed to only have one active CRTC... */
3721 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003722 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003723 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003724
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003725 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003726 return false;
3727
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003728 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003729 struct skl_plane_wm *wm =
3730 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003731
Lyude656d1b82016-08-17 15:55:54 -04003732 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003733 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003734 continue;
3735
3736 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003737 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003738 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003739 { }
3740
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003741 latency = dev_priv->wm.skl_latency[level];
3742
3743 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003744 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003745 I915_FORMAT_MOD_X_TILED)
3746 latency += 15;
3747
Lyude656d1b82016-08-17 15:55:54 -04003748 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003749 * If any of the planes on this pipe don't enable wm levels that
3750 * incur memory latencies higher than sagv_block_time_us we
3751 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003752 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003753 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003754 return false;
3755 }
3756
3757 return true;
3758}
3759
Damien Lespiaub9cec072014-11-04 17:06:43 +00003760static void
3761skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003762 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003763 struct skl_ddb_entry *alloc, /* out */
3764 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003765{
Matt Roperc107acf2016-05-12 07:06:01 -07003766 struct drm_atomic_state *state = cstate->base.state;
3767 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3768 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003769 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003770 unsigned int pipe_size, ddb_size;
3771 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003772
Matt Ropera6d3460e2016-05-12 07:06:04 -07003773 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003774 alloc->start = 0;
3775 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003776 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003777 return;
3778 }
3779
Matt Ropera6d3460e2016-05-12 07:06:04 -07003780 if (intel_state->active_pipe_changes)
3781 *num_active = hweight32(intel_state->active_crtcs);
3782 else
3783 *num_active = hweight32(dev_priv->active_crtcs);
3784
Deepak M6f3fff62016-09-15 15:01:10 +05303785 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3786 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003787
3788 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3789
Matt Roperc107acf2016-05-12 07:06:01 -07003790 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003791 * If the state doesn't change the active CRTC's, then there's
3792 * no need to recalculate; the existing pipe allocation limits
3793 * should remain unchanged. Note that we're safe from racing
3794 * commits since any racing commit that changes the active CRTC
3795 * list would need to grab _all_ crtc locks, including the one
3796 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003797 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003798 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003799 /*
3800 * alloc may be cleared by clear_intel_crtc_state,
3801 * copy from old state to be sure
3802 */
3803 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003804 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003805 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003806
3807 nth_active_pipe = hweight32(intel_state->active_crtcs &
3808 (drm_crtc_mask(for_crtc) - 1));
3809 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3810 alloc->start = nth_active_pipe * ddb_size / *num_active;
3811 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003812}
3813
Matt Roperc107acf2016-05-12 07:06:01 -07003814static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003815{
Matt Roperc107acf2016-05-12 07:06:01 -07003816 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003817 return 32;
3818
3819 return 8;
3820}
3821
Damien Lespiaua269c582014-11-04 17:06:49 +00003822static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3823{
3824 entry->start = reg & 0x3ff;
3825 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003826 if (entry->end)
3827 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003828}
3829
Damien Lespiau08db6652014-11-04 17:06:52 +00003830void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3831 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003832{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003833 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003834
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003835 memset(ddb, 0, sizeof(*ddb));
3836
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003837 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003838 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003839 enum plane_id plane_id;
3840 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003841
3842 power_domain = POWER_DOMAIN_PIPE(pipe);
3843 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003844 continue;
3845
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003846 for_each_plane_id_on_crtc(crtc, plane_id) {
3847 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003848
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003849 if (plane_id != PLANE_CURSOR)
3850 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3851 else
3852 val = I915_READ(CUR_BUF_CFG(pipe));
3853
3854 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3855 }
Imre Deak4d800032016-02-17 16:31:29 +02003856
3857 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003858 }
3859}
3860
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003861/*
3862 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3863 * The bspec defines downscale amount as:
3864 *
3865 * """
3866 * Horizontal down scale amount = maximum[1, Horizontal source size /
3867 * Horizontal destination size]
3868 * Vertical down scale amount = maximum[1, Vertical source size /
3869 * Vertical destination size]
3870 * Total down scale amount = Horizontal down scale amount *
3871 * Vertical down scale amount
3872 * """
3873 *
3874 * Return value is provided in 16.16 fixed point form to retain fractional part.
3875 * Caller should take care of dividing & rounding off the value.
3876 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303877static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003878skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
3879 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003880{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003881 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003882 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303883 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3884 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003885
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003886 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303887 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003888
3889 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003890 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003891 /*
3892 * Cursors only support 0/180 degree rotation,
3893 * hence no need to account for rotation here.
3894 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303895 src_w = pstate->base.src_w >> 16;
3896 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003897 dst_w = pstate->base.crtc_w;
3898 dst_h = pstate->base.crtc_h;
3899 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003900 /*
3901 * Src coordinates are already rotated by 270 degrees for
3902 * the 90/270 degree plane rotation cases (to match the
3903 * GTT mapping), hence no need to account for rotation here.
3904 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303905 src_w = drm_rect_width(&pstate->base.src) >> 16;
3906 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003907 dst_w = drm_rect_width(&pstate->base.dst);
3908 dst_h = drm_rect_height(&pstate->base.dst);
3909 }
3910
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303911 fp_w_ratio = div_fixed16(src_w, dst_w);
3912 fp_h_ratio = div_fixed16(src_h, dst_h);
3913 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3914 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003915
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303916 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003917}
3918
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303919static uint_fixed_16_16_t
3920skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
3921{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303922 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303923
3924 if (!crtc_state->base.enable)
3925 return pipe_downscale;
3926
3927 if (crtc_state->pch_pfit.enabled) {
3928 uint32_t src_w, src_h, dst_w, dst_h;
3929 uint32_t pfit_size = crtc_state->pch_pfit.size;
3930 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3931 uint_fixed_16_16_t downscale_h, downscale_w;
3932
3933 src_w = crtc_state->pipe_src_w;
3934 src_h = crtc_state->pipe_src_h;
3935 dst_w = pfit_size >> 16;
3936 dst_h = pfit_size & 0xffff;
3937
3938 if (!dst_w || !dst_h)
3939 return pipe_downscale;
3940
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303941 fp_w_ratio = div_fixed16(src_w, dst_w);
3942 fp_h_ratio = div_fixed16(src_h, dst_h);
3943 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3944 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303945
3946 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
3947 }
3948
3949 return pipe_downscale;
3950}
3951
3952int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
3953 struct intel_crtc_state *cstate)
3954{
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003955 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303956 struct drm_crtc_state *crtc_state = &cstate->base;
3957 struct drm_atomic_state *state = crtc_state->state;
3958 struct drm_plane *plane;
3959 const struct drm_plane_state *pstate;
3960 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003961 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303962 uint32_t pipe_max_pixel_rate;
3963 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303964 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303965
3966 if (!cstate->base.enable)
3967 return 0;
3968
3969 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
3970 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303971 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303972 int bpp;
3973
3974 if (!intel_wm_plane_visible(cstate,
3975 to_intel_plane_state(pstate)))
3976 continue;
3977
3978 if (WARN_ON(!pstate->fb))
3979 return -EINVAL;
3980
3981 intel_pstate = to_intel_plane_state(pstate);
3982 plane_downscale = skl_plane_downscale_amount(cstate,
3983 intel_pstate);
3984 bpp = pstate->fb->format->cpp[0] * 8;
3985 if (bpp == 64)
3986 plane_downscale = mul_fixed16(plane_downscale,
3987 fp_9_div_8);
3988
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303989 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303990 }
3991 pipe_downscale = skl_pipe_downscale_amount(cstate);
3992
3993 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
3994
3995 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003996 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
3997
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003998 if (IS_GEMINILAKE(dev_priv) || INTEL_GEN(dev_priv) >= 10)
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003999 dotclk *= 2;
4000
4001 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304002
4003 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02004004 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304005 return -EINVAL;
4006 }
4007
4008 return 0;
4009}
4010
Damien Lespiaub9cec072014-11-04 17:06:43 +00004011static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07004012skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
4013 const struct drm_plane_state *pstate,
4014 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004015{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004016 struct intel_plane *plane = to_intel_plane(pstate->plane);
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004017 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304018 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004019 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004020 struct drm_framebuffer *fb;
4021 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304022 uint_fixed_16_16_t down_scale_amount;
Matt Ropera1de91e2016-05-12 07:05:57 -07004023
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004024 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004025 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004026
4027 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004028 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004029
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004030 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004031 return 0;
4032 if (y && format != DRM_FORMAT_NV12)
4033 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004034
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004035 /*
4036 * Src coordinates are already rotated by 270 degrees for
4037 * the 90/270 degree plane rotation cases (to match the
4038 * GTT mapping), hence no need to account for rotation here.
4039 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004040 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4041 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004042
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004043 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07004044 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004045 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004046 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004047 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004048 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004049 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004050 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004051 } else {
4052 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02004053 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004054 }
4055
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004056 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004057
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304058 return mul_round_up_u32_fixed16(data_rate, down_scale_amount);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004059}
4060
4061/*
4062 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
4063 * a 8192x4096@32bpp framebuffer:
4064 * 3 * 4096 * 8192 * 4 < 2^32
4065 */
4066static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004067skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4068 unsigned *plane_data_rate,
4069 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004070{
Matt Roper9c74d822016-05-12 07:05:58 -07004071 struct drm_crtc_state *cstate = &intel_cstate->base;
4072 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004073 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004074 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004075 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004076
4077 if (WARN_ON(!state))
4078 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004079
Matt Ropera1de91e2016-05-12 07:05:57 -07004080 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004081 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004082 enum plane_id plane_id = to_intel_plane(plane)->id;
4083 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07004084
Matt Ropera6d3460e2016-05-12 07:06:04 -07004085 /* packed/uv */
4086 rate = skl_plane_relative_data_rate(intel_cstate,
4087 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004088 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004089
4090 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004091
Matt Ropera6d3460e2016-05-12 07:06:04 -07004092 /* y-plane */
4093 rate = skl_plane_relative_data_rate(intel_cstate,
4094 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004095 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004096
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004097 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004098 }
4099
4100 return total_data_rate;
4101}
4102
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004103static uint16_t
4104skl_ddb_min_alloc(const struct drm_plane_state *pstate,
4105 const int y)
4106{
4107 struct drm_framebuffer *fb = pstate->fb;
4108 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
4109 uint32_t src_w, src_h;
4110 uint32_t min_scanlines = 8;
4111 uint8_t plane_bpp;
4112
4113 if (WARN_ON(!fb))
4114 return 0;
4115
4116 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004117 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004118 return 0;
4119
4120 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004121 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004122 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4123 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4124 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004125 return 8;
4126
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004127 /*
4128 * Src coordinates are already rotated by 270 degrees for
4129 * the 90/270 degree plane rotation cases (to match the
4130 * GTT mapping), hence no need to account for rotation here.
4131 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004132 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
4133 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004134
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004135 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004136 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004137 src_w /= 2;
4138 src_h /= 2;
4139 }
4140
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004141 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02004142 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004143 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02004144 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004145
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03004146 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004147 switch (plane_bpp) {
4148 case 1:
4149 min_scanlines = 32;
4150 break;
4151 case 2:
4152 min_scanlines = 16;
4153 break;
4154 case 4:
4155 min_scanlines = 8;
4156 break;
4157 case 8:
4158 min_scanlines = 4;
4159 break;
4160 default:
4161 WARN(1, "Unsupported pixel depth %u for rotation",
4162 plane_bpp);
4163 min_scanlines = 32;
4164 }
4165 }
4166
4167 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4168}
4169
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004170static void
4171skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
4172 uint16_t *minimum, uint16_t *y_minimum)
4173{
4174 const struct drm_plane_state *pstate;
4175 struct drm_plane *plane;
4176
4177 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004178 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004179
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004180 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004181 continue;
4182
4183 if (!pstate->visible)
4184 continue;
4185
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004186 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
4187 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004188 }
4189
4190 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4191}
4192
Matt Roperc107acf2016-05-12 07:06:01 -07004193static int
Matt Roper024c9042015-09-24 15:53:11 -07004194skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004195 struct skl_ddb_allocation *ddb /* out */)
4196{
Matt Roperc107acf2016-05-12 07:06:01 -07004197 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004198 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004199 struct drm_device *dev = crtc->dev;
4200 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4201 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04004202 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004203 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004204 uint16_t minimum[I915_MAX_PLANES] = {};
4205 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00004206 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004207 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004208 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004209 unsigned plane_data_rate[I915_MAX_PLANES] = {};
4210 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304211 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004212
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004213 /* Clear the partitioning for disabled planes. */
4214 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
4215 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
4216
Matt Ropera6d3460e2016-05-12 07:06:04 -07004217 if (WARN_ON(!state))
4218 return 0;
4219
Matt Roperc107acf2016-05-12 07:06:01 -07004220 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004221 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004222 return 0;
4223 }
4224
Matt Ropera6d3460e2016-05-12 07:06:04 -07004225 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004226 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304227 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004228 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004229
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004230 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004231
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004232 /*
4233 * 1. Allocate the mininum required blocks for each active plane
4234 * and allocate the cursor, it doesn't require extra allocation
4235 * proportional to the data rate.
4236 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004237
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004238 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304239 total_min_blocks += minimum[plane_id];
4240 total_min_blocks += y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004241 }
4242
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304243 if (total_min_blocks > alloc_size) {
4244 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4245 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4246 alloc_size);
4247 return -EINVAL;
4248 }
4249
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004250 alloc_size -= total_min_blocks;
4251 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004252 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
4253
Damien Lespiaub9cec072014-11-04 17:06:43 +00004254 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004255 * 2. Distribute the remaining space in proportion to the amount of
4256 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004257 *
4258 * FIXME: we may not allocate every single block here.
4259 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004260 total_data_rate = skl_get_total_relative_data_rate(cstate,
4261 plane_data_rate,
4262 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07004263 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004264 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004265
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004266 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004267 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004268 unsigned int data_rate, y_data_rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004269 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004270
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004271 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004272 continue;
4273
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004274 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004275
4276 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004277 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004278 * promote the expression to 64 bits to avoid overflowing, the
4279 * result is < available as data_rate / total_data_rate < 1
4280 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004281 plane_blocks = minimum[plane_id];
4282 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
4283 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004284
Matt Roperc107acf2016-05-12 07:06:01 -07004285 /* Leave disabled planes at (0,0) */
4286 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004287 ddb->plane[pipe][plane_id].start = start;
4288 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004289 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004290
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004291 start += plane_blocks;
4292
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004293 /*
4294 * allocation for y_plane part of planar format:
4295 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004296 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004297
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004298 y_plane_blocks = y_minimum[plane_id];
4299 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
4300 total_data_rate);
4301
Matt Roperc107acf2016-05-12 07:06:01 -07004302 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004303 ddb->y_plane[pipe][plane_id].start = start;
4304 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004305 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004306
4307 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004308 }
4309
Matt Roperc107acf2016-05-12 07:06:01 -07004310 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004311}
4312
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004313/*
4314 * 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 +02004315 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004316 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4317 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4318*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004319static uint_fixed_16_16_t
4320skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
4321 uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004322{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304323 uint32_t wm_intermediate_val;
4324 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004325
4326 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304327 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004328
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304329 wm_intermediate_val = latency * pixel_rate * cpp;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304330 ret = div_fixed16(wm_intermediate_val, 1000 * 512);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004331
4332 if (INTEL_GEN(dev_priv) >= 10)
4333 ret = add_fixed16_u32(ret, 1);
4334
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004335 return ret;
4336}
4337
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304338static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4339 uint32_t pipe_htotal,
4340 uint32_t latency,
4341 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004342{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004343 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304344 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004345
4346 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304347 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004348
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004349 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304350 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4351 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304352 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004353 return ret;
4354}
4355
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304356static uint_fixed_16_16_t
4357intel_get_linetime_us(struct intel_crtc_state *cstate)
4358{
4359 uint32_t pixel_rate;
4360 uint32_t crtc_htotal;
4361 uint_fixed_16_16_t linetime_us;
4362
4363 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304364 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304365
4366 pixel_rate = cstate->pixel_rate;
4367
4368 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304369 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304370
4371 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304372 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304373
4374 return linetime_us;
4375}
4376
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304377static uint32_t
4378skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4379 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004380{
4381 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304382 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004383
4384 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004385 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004386 return 0;
4387
4388 /*
4389 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4390 * with additional adjustments for plane-specific scaling.
4391 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004392 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004393 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004394
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304395 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4396 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004397}
4398
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304399static int
4400skl_compute_plane_wm_params(const struct drm_i915_private *dev_priv,
4401 struct intel_crtc_state *cstate,
4402 const struct intel_plane_state *intel_pstate,
4403 struct skl_wm_params *wp)
4404{
4405 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
4406 const struct drm_plane_state *pstate = &intel_pstate->base;
4407 const struct drm_framebuffer *fb = pstate->fb;
4408 uint32_t interm_pbpl;
4409 struct intel_atomic_state *state =
4410 to_intel_atomic_state(cstate->base.state);
4411 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4412
4413 if (!intel_wm_plane_visible(cstate, intel_pstate))
4414 return 0;
4415
4416 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4417 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4418 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4419 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4420 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4421 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4422 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4423
4424 if (plane->id == PLANE_CURSOR) {
4425 wp->width = intel_pstate->base.crtc_w;
4426 } else {
4427 /*
4428 * Src coordinates are already rotated by 270 degrees for
4429 * the 90/270 degree plane rotation cases (to match the
4430 * GTT mapping), hence no need to account for rotation here.
4431 */
4432 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4433 }
4434
4435 wp->cpp = (fb->format->format == DRM_FORMAT_NV12) ? fb->format->cpp[1] :
4436 fb->format->cpp[0];
4437 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4438 intel_pstate);
4439
4440 if (drm_rotation_90_or_270(pstate->rotation)) {
4441
4442 switch (wp->cpp) {
4443 case 1:
4444 wp->y_min_scanlines = 16;
4445 break;
4446 case 2:
4447 wp->y_min_scanlines = 8;
4448 break;
4449 case 4:
4450 wp->y_min_scanlines = 4;
4451 break;
4452 default:
4453 MISSING_CASE(wp->cpp);
4454 return -EINVAL;
4455 }
4456 } else {
4457 wp->y_min_scanlines = 4;
4458 }
4459
4460 if (apply_memory_bw_wa)
4461 wp->y_min_scanlines *= 2;
4462
4463 wp->plane_bytes_per_line = wp->width * wp->cpp;
4464 if (wp->y_tiled) {
4465 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
4466 wp->y_min_scanlines, 512);
4467
4468 if (INTEL_GEN(dev_priv) >= 10)
4469 interm_pbpl++;
4470
4471 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4472 wp->y_min_scanlines);
4473 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
4474 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512);
4475 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4476 } else {
4477 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512) + 1;
4478 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4479 }
4480
4481 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4482 wp->plane_blocks_per_line);
4483 wp->linetime_us = fixed16_to_u32_round_up(
4484 intel_get_linetime_us(cstate));
4485
4486 return 0;
4487}
4488
Matt Roper55994c22016-05-12 07:06:08 -07004489static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
4490 struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304491 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004492 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004493 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304494 const struct skl_wm_params *wp,
Matt Roper55994c22016-05-12 07:06:08 -07004495 uint16_t *out_blocks, /* out */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004496 uint8_t *out_lines, /* out */
4497 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004498{
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304499 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004500 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304501 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304502 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004503 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004504 struct intel_atomic_state *state =
4505 to_intel_atomic_state(cstate->base.state);
4506 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004507
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004508 if (latency == 0 ||
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004509 !intel_wm_plane_visible(cstate, intel_pstate)) {
4510 *enabled = false;
Matt Roper55994c22016-05-12 07:06:08 -07004511 return 0;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004512 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004513
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004514 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304515 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4516 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004517 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304518 latency += 4;
4519
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304520 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004521 latency += 15;
4522
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304523 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
4524 wp->cpp, latency);
4525 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004526 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004527 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304528 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004529
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304530 if (wp->y_tiled) {
4531 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004532 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304533 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
4534 512 < 1) && (wp->plane_bytes_per_line / 512 < 1))
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004535 selected_result = method2;
Maarten Lankhorst54d20ed2017-07-17 14:02:30 +02004536 else if (ddb_allocation >=
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304537 fixed16_to_u32_round_up(wp->plane_blocks_per_line))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304538 selected_result = min_fixed16(method1, method2);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304539 else if (latency >= wp->linetime_us)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304540 selected_result = min_fixed16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004541 else
4542 selected_result = method1;
4543 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004544
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304545 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304546 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304547 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004548
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004549 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304550 if (level == 0 && wp->rc_surface)
4551 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004552
4553 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004554 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304555 if (wp->y_tiled) {
4556 res_blocks += fixed16_to_u32_round_up(
4557 wp->y_tile_minimum);
4558 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004559 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004560 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004561 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004562 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004563
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004564 if (res_blocks >= ddb_allocation || res_lines > 31) {
4565 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07004566
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004567 /*
4568 * If there are no valid level 0 watermarks, then we can't
4569 * support this display configuration.
4570 */
4571 if (level) {
4572 return 0;
4573 } else {
4574 struct drm_plane *plane = pstate->plane;
4575
4576 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4577 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4578 plane->base.id, plane->name,
4579 res_blocks, ddb_allocation, res_lines);
4580 return -EINVAL;
4581 }
Matt Roper55994c22016-05-12 07:06:08 -07004582 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004583
4584 *out_blocks = res_blocks;
4585 *out_lines = res_lines;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004586 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004587
Matt Roper55994c22016-05-12 07:06:08 -07004588 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004589}
4590
Matt Roperf4a96752016-05-12 07:06:06 -07004591static int
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304592skl_compute_wm_levels(const struct drm_i915_private *dev_priv,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004593 struct skl_ddb_allocation *ddb,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304594 struct intel_crtc_state *cstate,
4595 const struct intel_plane_state *intel_pstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304596 const struct skl_wm_params *wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304597 struct skl_plane_wm *wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004598{
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004599 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4600 struct drm_plane *plane = intel_pstate->base.plane;
4601 struct intel_plane *intel_plane = to_intel_plane(plane);
4602 uint16_t ddb_blocks;
4603 enum pipe pipe = intel_crtc->pipe;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304604 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07004605 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004606
Kumar, Mahesh7b751192017-05-17 17:28:24 +05304607 if (WARN_ON(!intel_pstate->base.fb))
4608 return -EINVAL;
Matt Roper024c9042015-09-24 15:53:11 -07004609
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004610 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
4611
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304612 for (level = 0; level <= max_level; level++) {
4613 struct skl_wm_level *result = &wm->wm[level];
4614
4615 ret = skl_compute_plane_wm(dev_priv,
4616 cstate,
4617 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004618 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304619 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304620 wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304621 &result->plane_res_b,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004622 &result->plane_res_l,
4623 &result->plane_en);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304624 if (ret)
4625 return ret;
4626 }
Matt Roperf4a96752016-05-12 07:06:06 -07004627
4628 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004629}
4630
Damien Lespiau407b50f2014-11-04 17:06:57 +00004631static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07004632skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004633{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304634 struct drm_atomic_state *state = cstate->base.state;
4635 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304636 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304637 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004638
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304639 linetime_us = intel_get_linetime_us(cstate);
4640
4641 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004642 return 0;
4643
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304644 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304645
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304646 /* Display WA #1135: bxt:ALL GLK:ALL */
4647 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4648 dev_priv->ipc_enabled)
4649 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304650
4651 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004652}
4653
Matt Roper024c9042015-09-24 15:53:11 -07004654static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Kumar, Maheshca476672017-08-17 19:15:24 +05304655 struct skl_wm_params *wp,
4656 struct skl_wm_level *wm_l0,
4657 uint16_t ddb_allocation,
Damien Lespiau9414f562014-11-04 17:06:58 +00004658 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004659{
Kumar, Maheshca476672017-08-17 19:15:24 +05304660 struct drm_device *dev = cstate->base.crtc->dev;
4661 const struct drm_i915_private *dev_priv = to_i915(dev);
4662 uint16_t trans_min, trans_y_tile_min;
4663 const uint16_t trans_amount = 10; /* This is configurable amount */
4664 uint16_t trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004665
Kumar, Maheshca476672017-08-17 19:15:24 +05304666 if (!cstate->base.active)
4667 goto exit;
4668
4669 /* Transition WM are not recommended by HW team for GEN9 */
4670 if (INTEL_GEN(dev_priv) <= 9)
4671 goto exit;
4672
4673 /* Transition WM don't make any sense if ipc is disabled */
4674 if (!dev_priv->ipc_enabled)
4675 goto exit;
4676
4677 if (INTEL_GEN(dev_priv) >= 10)
4678 trans_min = 4;
4679
4680 trans_offset_b = trans_min + trans_amount;
4681
4682 if (wp->y_tiled) {
4683 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4684 wp->y_tile_minimum);
4685 res_blocks = max(wm_l0->plane_res_b, trans_y_tile_min) +
4686 trans_offset_b;
4687 } else {
4688 res_blocks = wm_l0->plane_res_b + trans_offset_b;
4689
4690 /* WA BUG:1938466 add one block for non y-tile planes */
4691 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4692 res_blocks += 1;
4693
4694 }
4695
4696 res_blocks += 1;
4697
4698 if (res_blocks < ddb_allocation) {
4699 trans_wm->plane_res_b = res_blocks;
4700 trans_wm->plane_en = true;
4701 return;
4702 }
4703
4704exit:
Lyudea62163e2016-10-04 14:28:20 -04004705 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004706}
4707
Matt Roper55994c22016-05-12 07:06:08 -07004708static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
4709 struct skl_ddb_allocation *ddb,
4710 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004711{
Matt Roper024c9042015-09-24 15:53:11 -07004712 struct drm_device *dev = cstate->base.crtc->dev;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304713 struct drm_crtc_state *crtc_state = &cstate->base;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004714 const struct drm_i915_private *dev_priv = to_i915(dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304715 struct drm_plane *plane;
4716 const struct drm_plane_state *pstate;
Lyudea62163e2016-10-04 14:28:20 -04004717 struct skl_plane_wm *wm;
Matt Roper55994c22016-05-12 07:06:08 -07004718 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004719
Lyudea62163e2016-10-04 14:28:20 -04004720 /*
4721 * We'll only calculate watermarks for planes that are actually
4722 * enabled, so make sure all other planes are set as disabled.
4723 */
4724 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
4725
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304726 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4727 const struct intel_plane_state *intel_pstate =
4728 to_intel_plane_state(pstate);
4729 enum plane_id plane_id = to_intel_plane(plane)->id;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304730 struct skl_wm_params wm_params;
Kumar, Maheshca476672017-08-17 19:15:24 +05304731 enum pipe pipe = to_intel_crtc(cstate->base.crtc)->pipe;
4732 uint16_t ddb_blocks;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304733
4734 wm = &pipe_wm->planes[plane_id];
Kumar, Maheshca476672017-08-17 19:15:24 +05304735 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][plane_id]);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304736 memset(&wm_params, 0, sizeof(struct skl_wm_params));
4737
4738 ret = skl_compute_plane_wm_params(dev_priv, cstate,
4739 intel_pstate, &wm_params);
4740 if (ret)
4741 return ret;
Lyudea62163e2016-10-04 14:28:20 -04004742
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004743 ret = skl_compute_wm_levels(dev_priv, ddb, cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304744 intel_pstate, &wm_params, wm);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304745 if (ret)
4746 return ret;
Kumar, Maheshca476672017-08-17 19:15:24 +05304747 skl_compute_transition_wm(cstate, &wm_params, &wm->wm[0],
4748 ddb_blocks, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004749 }
Matt Roper024c9042015-09-24 15:53:11 -07004750 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004751
Matt Roper55994c22016-05-12 07:06:08 -07004752 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004753}
4754
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004755static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
4756 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00004757 const struct skl_ddb_entry *entry)
4758{
4759 if (entry->end)
4760 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
4761 else
4762 I915_WRITE(reg, 0);
4763}
4764
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004765static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4766 i915_reg_t reg,
4767 const struct skl_wm_level *level)
4768{
4769 uint32_t val = 0;
4770
4771 if (level->plane_en) {
4772 val |= PLANE_WM_EN;
4773 val |= level->plane_res_b;
4774 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4775 }
4776
4777 I915_WRITE(reg, val);
4778}
4779
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004780static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4781 const struct skl_plane_wm *wm,
4782 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004783 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004784{
4785 struct drm_crtc *crtc = &intel_crtc->base;
4786 struct drm_device *dev = crtc->dev;
4787 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004788 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004789 enum pipe pipe = intel_crtc->pipe;
4790
4791 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004792 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004793 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004794 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004795 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004796 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004797
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004798 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4799 &ddb->plane[pipe][plane_id]);
4800 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4801 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004802}
4803
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004804static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4805 const struct skl_plane_wm *wm,
4806 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004807{
4808 struct drm_crtc *crtc = &intel_crtc->base;
4809 struct drm_device *dev = crtc->dev;
4810 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004811 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004812 enum pipe pipe = intel_crtc->pipe;
4813
4814 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004815 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4816 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004817 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004818 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004819
4820 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004821 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004822}
4823
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004824bool skl_wm_level_equals(const struct skl_wm_level *l1,
4825 const struct skl_wm_level *l2)
4826{
4827 if (l1->plane_en != l2->plane_en)
4828 return false;
4829
4830 /* If both planes aren't enabled, the rest shouldn't matter */
4831 if (!l1->plane_en)
4832 return true;
4833
4834 return (l1->plane_res_l == l2->plane_res_l &&
4835 l1->plane_res_b == l2->plane_res_b);
4836}
4837
Lyude27082492016-08-24 07:48:10 +02004838static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4839 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004840{
Lyude27082492016-08-24 07:48:10 +02004841 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004842}
4843
Mika Kahola2b685042017-10-10 13:17:03 +03004844bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
4845 const struct skl_ddb_entry **entries,
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004846 const struct skl_ddb_entry *ddb,
4847 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004848{
Mika Kahola2b685042017-10-10 13:17:03 +03004849 enum pipe pipe;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004850
Mika Kahola2b685042017-10-10 13:17:03 +03004851 for_each_pipe(dev_priv, pipe) {
4852 if (pipe != ignore && entries[pipe] &&
4853 skl_ddb_entries_overlap(ddb, entries[pipe]))
Lyude27082492016-08-24 07:48:10 +02004854 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03004855 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004856
Lyude27082492016-08-24 07:48:10 +02004857 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004858}
4859
Matt Roper55994c22016-05-12 07:06:08 -07004860static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004861 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004862 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004863 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004864 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004865{
Matt Roperf4a96752016-05-12 07:06:06 -07004866 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004867 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004868
Matt Roper55994c22016-05-12 07:06:08 -07004869 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4870 if (ret)
4871 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004872
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004873 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004874 *changed = false;
4875 else
4876 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004877
Matt Roper55994c22016-05-12 07:06:08 -07004878 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004879}
4880
Matt Roper9b613022016-06-27 16:42:44 -07004881static uint32_t
4882pipes_modified(struct drm_atomic_state *state)
4883{
4884 struct drm_crtc *crtc;
4885 struct drm_crtc_state *cstate;
4886 uint32_t i, ret = 0;
4887
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01004888 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper9b613022016-06-27 16:42:44 -07004889 ret |= drm_crtc_mask(crtc);
4890
4891 return ret;
4892}
4893
Jani Nikulabb7791b2016-10-04 12:29:17 +03004894static int
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004895skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4896{
4897 struct drm_atomic_state *state = cstate->base.state;
4898 struct drm_device *dev = state->dev;
4899 struct drm_crtc *crtc = cstate->base.crtc;
4900 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4901 struct drm_i915_private *dev_priv = to_i915(dev);
4902 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4903 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4904 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4905 struct drm_plane_state *plane_state;
4906 struct drm_plane *plane;
4907 enum pipe pipe = intel_crtc->pipe;
4908
4909 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4910
4911 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
4912 enum plane_id plane_id = to_intel_plane(plane)->id;
4913
4914 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4915 &new_ddb->plane[pipe][plane_id]) &&
4916 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4917 &new_ddb->y_plane[pipe][plane_id]))
4918 continue;
4919
4920 plane_state = drm_atomic_get_plane_state(state, plane);
4921 if (IS_ERR(plane_state))
4922 return PTR_ERR(plane_state);
4923 }
4924
4925 return 0;
4926}
4927
4928static int
4929skl_compute_ddb(struct drm_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07004930{
4931 struct drm_device *dev = state->dev;
4932 struct drm_i915_private *dev_priv = to_i915(dev);
4933 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4934 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004935 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004936 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004937 int ret;
4938
4939 /*
4940 * If this is our first atomic update following hardware readout,
4941 * we can't trust the DDB that the BIOS programmed for us. Let's
4942 * pretend that all pipes switched active status so that we'll
4943 * ensure a full DDB recompute.
4944 */
Matt Roper1b54a882016-06-17 13:42:18 -07004945 if (dev_priv->wm.distrust_bios_wm) {
4946 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4947 state->acquire_ctx);
4948 if (ret)
4949 return ret;
4950
Matt Roper98d39492016-05-12 07:06:03 -07004951 intel_state->active_pipe_changes = ~0;
4952
Matt Roper1b54a882016-06-17 13:42:18 -07004953 /*
4954 * We usually only initialize intel_state->active_crtcs if we
4955 * we're doing a modeset; make sure this field is always
4956 * initialized during the sanitization process that happens
4957 * on the first commit too.
4958 */
4959 if (!intel_state->modeset)
4960 intel_state->active_crtcs = dev_priv->active_crtcs;
4961 }
4962
Matt Roper98d39492016-05-12 07:06:03 -07004963 /*
4964 * If the modeset changes which CRTC's are active, we need to
4965 * recompute the DDB allocation for *all* active pipes, even
4966 * those that weren't otherwise being modified in any way by this
4967 * atomic commit. Due to the shrinking of the per-pipe allocations
4968 * when new active CRTC's are added, it's possible for a pipe that
4969 * we were already using and aren't changing at all here to suddenly
4970 * become invalid if its DDB needs exceeds its new allocation.
4971 *
4972 * Note that if we wind up doing a full DDB recompute, we can't let
4973 * any other display updates race with this transaction, so we need
4974 * to grab the lock on *all* CRTC's.
4975 */
Matt Roper734fa012016-05-12 15:11:40 -07004976 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004977 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004978 intel_state->wm_results.dirty_pipes = ~0;
4979 }
Matt Roper98d39492016-05-12 07:06:03 -07004980
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004981 /*
4982 * We're not recomputing for the pipes not included in the commit, so
4983 * make sure we start with the current state.
4984 */
4985 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4986
Matt Roper98d39492016-05-12 07:06:03 -07004987 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4988 struct intel_crtc_state *cstate;
4989
4990 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4991 if (IS_ERR(cstate))
4992 return PTR_ERR(cstate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004993
4994 ret = skl_allocate_pipe_ddb(cstate, ddb);
4995 if (ret)
4996 return ret;
4997
4998 ret = skl_ddb_add_affected_planes(cstate);
4999 if (ret)
5000 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07005001 }
5002
5003 return 0;
5004}
5005
Matt Roper2722efb2016-08-17 15:55:55 -04005006static void
5007skl_copy_wm_for_pipe(struct skl_wm_values *dst,
5008 struct skl_wm_values *src,
5009 enum pipe pipe)
5010{
Matt Roper2722efb2016-08-17 15:55:55 -04005011 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
5012 sizeof(dst->ddb.y_plane[pipe]));
5013 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
5014 sizeof(dst->ddb.plane[pipe]));
5015}
5016
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005017static void
5018skl_print_wm_changes(const struct drm_atomic_state *state)
5019{
5020 const struct drm_device *dev = state->dev;
5021 const struct drm_i915_private *dev_priv = to_i915(dev);
5022 const struct intel_atomic_state *intel_state =
5023 to_intel_atomic_state(state);
5024 const struct drm_crtc *crtc;
5025 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005026 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005027 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
5028 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005029 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005030
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005031 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01005032 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5033 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005034
Maarten Lankhorst75704982016-11-01 12:04:10 +01005035 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005036 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005037 const struct skl_ddb_entry *old, *new;
5038
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005039 old = &old_ddb->plane[pipe][plane_id];
5040 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005041
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005042 if (skl_ddb_entry_equal(old, new))
5043 continue;
5044
Maarten Lankhorst75704982016-11-01 12:04:10 +01005045 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
5046 intel_plane->base.base.id,
5047 intel_plane->base.name,
5048 old->start, old->end,
5049 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005050 }
5051 }
5052}
5053
Matt Roper98d39492016-05-12 07:06:03 -07005054static int
5055skl_compute_wm(struct drm_atomic_state *state)
5056{
5057 struct drm_crtc *crtc;
5058 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07005059 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5060 struct skl_wm_values *results = &intel_state->wm_results;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005061 struct drm_device *dev = state->dev;
Matt Roper734fa012016-05-12 15:11:40 -07005062 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07005063 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07005064 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005065
5066 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005067 * When we distrust bios wm we always need to recompute to set the
5068 * expected DDB allocations for each CRTC.
5069 */
5070 if (to_i915(dev)->wm.distrust_bios_wm)
5071 changed = true;
5072
5073 /*
Matt Roper98d39492016-05-12 07:06:03 -07005074 * If this transaction isn't actually touching any CRTC's, don't
5075 * bother with watermark calculation. Note that if we pass this
5076 * test, we're guaranteed to hold at least one CRTC state mutex,
5077 * which means we can safely use values like dev_priv->active_crtcs
5078 * since any racing commits that want to update them would need to
5079 * hold _all_ CRTC state mutexes.
5080 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005081 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper98d39492016-05-12 07:06:03 -07005082 changed = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005083
Matt Roper98d39492016-05-12 07:06:03 -07005084 if (!changed)
5085 return 0;
5086
Matt Roper734fa012016-05-12 15:11:40 -07005087 /* Clear all dirty flags */
5088 results->dirty_pipes = 0;
5089
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005090 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005091 if (ret)
5092 return ret;
5093
Matt Roper734fa012016-05-12 15:11:40 -07005094 /*
5095 * Calculate WM's for all pipes that are part of this transaction.
5096 * Note that the DDB allocation above may have added more CRTC's that
5097 * weren't otherwise being modified (and set bits in dirty_pipes) if
5098 * pipe allocations had to change.
5099 *
5100 * FIXME: Now that we're doing this in the atomic check phase, we
5101 * should allow skl_update_pipe_wm() to return failure in cases where
5102 * no suitable watermark values can be found.
5103 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005104 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07005105 struct intel_crtc_state *intel_cstate =
5106 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005107 const struct skl_pipe_wm *old_pipe_wm =
5108 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005109
5110 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005111 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
5112 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07005113 if (ret)
5114 return ret;
5115
5116 if (changed)
5117 results->dirty_pipes |= drm_crtc_mask(crtc);
5118
5119 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
5120 /* This pipe's WM's did not change */
5121 continue;
5122
5123 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07005124 }
5125
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005126 skl_print_wm_changes(state);
5127
Matt Roper98d39492016-05-12 07:06:03 -07005128 return 0;
5129}
5130
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005131static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5132 struct intel_crtc_state *cstate)
5133{
5134 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5135 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5136 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005137 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005138 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005139 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005140
5141 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5142 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005143
5144 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005145
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005146 for_each_plane_id_on_crtc(crtc, plane_id) {
5147 if (plane_id != PLANE_CURSOR)
5148 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
5149 ddb, plane_id);
5150 else
5151 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
5152 ddb);
5153 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005154}
5155
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005156static void skl_initial_wm(struct intel_atomic_state *state,
5157 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005158{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005159 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005160 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005161 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005162 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04005163 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02005164 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07005165
Ville Syrjälä432081b2016-10-31 22:37:03 +02005166 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005167 return;
5168
Matt Roper734fa012016-05-12 15:11:40 -07005169 mutex_lock(&dev_priv->wm.wm_mutex);
5170
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005171 if (cstate->base.active_changed)
5172 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005173
5174 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07005175
5176 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005177}
5178
Ville Syrjäläd8905652016-01-14 14:53:35 +02005179static void ilk_compute_wm_config(struct drm_device *dev,
5180 struct intel_wm_config *config)
5181{
5182 struct intel_crtc *crtc;
5183
5184 /* Compute the currently _active_ config */
5185 for_each_intel_crtc(dev, crtc) {
5186 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5187
5188 if (!wm->pipe_enabled)
5189 continue;
5190
5191 config->sprites_enabled |= wm->sprites_enabled;
5192 config->sprites_scaled |= wm->sprites_scaled;
5193 config->num_pipes_active++;
5194 }
5195}
5196
Matt Ropered4a6a72016-02-23 17:20:13 -08005197static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005198{
Chris Wilson91c8a322016-07-05 10:40:23 +01005199 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005200 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005201 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005202 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005203 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005204 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005205
Ville Syrjäläd8905652016-01-14 14:53:35 +02005206 ilk_compute_wm_config(dev, &config);
5207
5208 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
5209 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005210
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005211 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005212 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005213 config.num_pipes_active == 1 && config.sprites_enabled) {
5214 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
5215 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005216
Imre Deak820c1982013-12-17 14:46:36 +02005217 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005218 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005219 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005220 }
5221
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005222 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005223 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005224
Imre Deak820c1982013-12-17 14:46:36 +02005225 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005226
Imre Deak820c1982013-12-17 14:46:36 +02005227 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005228}
5229
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005230static void ilk_initial_watermarks(struct intel_atomic_state *state,
5231 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005232{
Matt Ropered4a6a72016-02-23 17:20:13 -08005233 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5234 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005235
Matt Ropered4a6a72016-02-23 17:20:13 -08005236 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005237 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005238 ilk_program_watermarks(dev_priv);
5239 mutex_unlock(&dev_priv->wm.wm_mutex);
5240}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005241
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005242static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5243 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005244{
5245 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5246 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5247
5248 mutex_lock(&dev_priv->wm.wm_mutex);
5249 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005250 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005251 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005252 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005253 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005254}
5255
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005256static inline void skl_wm_level_from_reg_val(uint32_t val,
5257 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005258{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005259 level->plane_en = val & PLANE_WM_EN;
5260 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5261 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5262 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005263}
5264
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005265void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
5266 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005267{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005268 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00005269 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00005270 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005271 int level, max_level;
5272 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005273 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005274
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005275 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005276
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005277 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
5278 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005279
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005280 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005281 if (plane_id != PLANE_CURSOR)
5282 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005283 else
5284 val = I915_READ(CUR_WM(pipe, level));
5285
5286 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5287 }
5288
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005289 if (plane_id != PLANE_CURSOR)
5290 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005291 else
5292 val = I915_READ(CUR_WM_TRANS(pipe));
5293
5294 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5295 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005296
Matt Roper3ef00282015-03-09 10:19:24 -07005297 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005298 return;
5299
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005300 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005301}
5302
5303void skl_wm_get_hw_state(struct drm_device *dev)
5304{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005305 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005306 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005307 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00005308 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005309 struct intel_crtc *intel_crtc;
5310 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005311
Damien Lespiaua269c582014-11-04 17:06:49 +00005312 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005313 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5314 intel_crtc = to_intel_crtc(crtc);
5315 cstate = to_intel_crtc_state(crtc->state);
5316
5317 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5318
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005319 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005320 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005321 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005322
Matt Roper279e99d2016-05-12 07:06:02 -07005323 if (dev_priv->active_crtcs) {
5324 /* Fully recompute DDB on first atomic commit */
5325 dev_priv->wm.distrust_bios_wm = true;
5326 } else {
5327 /* Easy/common case; just sanitize DDB now if everything off */
5328 memset(ddb, 0, sizeof(*ddb));
5329 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005330}
5331
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005332static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
5333{
5334 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005335 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005336 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07005338 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005339 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005340 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005341 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005342 [PIPE_A] = WM0_PIPEA_ILK,
5343 [PIPE_B] = WM0_PIPEB_ILK,
5344 [PIPE_C] = WM0_PIPEC_IVB,
5345 };
5346
5347 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005348 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005349 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005350
Ville Syrjälä15606532016-05-13 17:55:17 +03005351 memset(active, 0, sizeof(*active));
5352
Matt Roper3ef00282015-03-09 10:19:24 -07005353 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005354
5355 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005356 u32 tmp = hw->wm_pipe[pipe];
5357
5358 /*
5359 * For active pipes LP0 watermark is marked as
5360 * enabled, and LP1+ watermaks as disabled since
5361 * we can't really reverse compute them in case
5362 * multiple pipes are active.
5363 */
5364 active->wm[0].enable = true;
5365 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5366 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5367 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5368 active->linetime = hw->wm_linetime[pipe];
5369 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005370 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005371
5372 /*
5373 * For inactive pipes, all watermark levels
5374 * should be marked as enabled but zeroed,
5375 * which is what we'd compute them to.
5376 */
5377 for (level = 0; level <= max_level; level++)
5378 active->wm[level].enable = true;
5379 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005380
5381 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005382}
5383
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005384#define _FW_WM(value, plane) \
5385 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5386#define _FW_WM_VLV(value, plane) \
5387 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5388
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005389static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5390 struct g4x_wm_values *wm)
5391{
5392 uint32_t tmp;
5393
5394 tmp = I915_READ(DSPFW1);
5395 wm->sr.plane = _FW_WM(tmp, SR);
5396 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5397 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5398 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5399
5400 tmp = I915_READ(DSPFW2);
5401 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5402 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5403 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5404 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5405 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5406 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5407
5408 tmp = I915_READ(DSPFW3);
5409 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5410 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5411 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5412 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5413}
5414
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005415static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5416 struct vlv_wm_values *wm)
5417{
5418 enum pipe pipe;
5419 uint32_t tmp;
5420
5421 for_each_pipe(dev_priv, pipe) {
5422 tmp = I915_READ(VLV_DDL(pipe));
5423
Ville Syrjälä1b313892016-11-28 19:37:08 +02005424 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005425 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005426 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005427 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005428 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005429 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005430 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005431 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5432 }
5433
5434 tmp = I915_READ(DSPFW1);
5435 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005436 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5437 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5438 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005439
5440 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005441 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5442 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5443 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005444
5445 tmp = I915_READ(DSPFW3);
5446 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5447
5448 if (IS_CHERRYVIEW(dev_priv)) {
5449 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005450 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5451 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005452
5453 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005454 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5455 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005456
5457 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005458 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5459 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005460
5461 tmp = I915_READ(DSPHOWM);
5462 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005463 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5464 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5465 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5466 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5467 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5468 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5469 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5470 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5471 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005472 } else {
5473 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005474 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5475 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005476
5477 tmp = I915_READ(DSPHOWM);
5478 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005479 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5480 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5481 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5482 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5483 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5484 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005485 }
5486}
5487
5488#undef _FW_WM
5489#undef _FW_WM_VLV
5490
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005491void g4x_wm_get_hw_state(struct drm_device *dev)
5492{
5493 struct drm_i915_private *dev_priv = to_i915(dev);
5494 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5495 struct intel_crtc *crtc;
5496
5497 g4x_read_wm_values(dev_priv, wm);
5498
5499 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5500
5501 for_each_intel_crtc(dev, crtc) {
5502 struct intel_crtc_state *crtc_state =
5503 to_intel_crtc_state(crtc->base.state);
5504 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5505 struct g4x_pipe_wm *raw;
5506 enum pipe pipe = crtc->pipe;
5507 enum plane_id plane_id;
5508 int level, max_level;
5509
5510 active->cxsr = wm->cxsr;
5511 active->hpll_en = wm->hpll_en;
5512 active->fbc_en = wm->fbc_en;
5513
5514 active->sr = wm->sr;
5515 active->hpll = wm->hpll;
5516
5517 for_each_plane_id_on_crtc(crtc, plane_id) {
5518 active->wm.plane[plane_id] =
5519 wm->pipe[pipe].plane[plane_id];
5520 }
5521
5522 if (wm->cxsr && wm->hpll_en)
5523 max_level = G4X_WM_LEVEL_HPLL;
5524 else if (wm->cxsr)
5525 max_level = G4X_WM_LEVEL_SR;
5526 else
5527 max_level = G4X_WM_LEVEL_NORMAL;
5528
5529 level = G4X_WM_LEVEL_NORMAL;
5530 raw = &crtc_state->wm.g4x.raw[level];
5531 for_each_plane_id_on_crtc(crtc, plane_id)
5532 raw->plane[plane_id] = active->wm.plane[plane_id];
5533
5534 if (++level > max_level)
5535 goto out;
5536
5537 raw = &crtc_state->wm.g4x.raw[level];
5538 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5539 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5540 raw->plane[PLANE_SPRITE0] = 0;
5541 raw->fbc = active->sr.fbc;
5542
5543 if (++level > max_level)
5544 goto out;
5545
5546 raw = &crtc_state->wm.g4x.raw[level];
5547 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5548 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5549 raw->plane[PLANE_SPRITE0] = 0;
5550 raw->fbc = active->hpll.fbc;
5551
5552 out:
5553 for_each_plane_id_on_crtc(crtc, plane_id)
5554 g4x_raw_plane_wm_set(crtc_state, level,
5555 plane_id, USHRT_MAX);
5556 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5557
5558 crtc_state->wm.g4x.optimal = *active;
5559 crtc_state->wm.g4x.intermediate = *active;
5560
5561 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5562 pipe_name(pipe),
5563 wm->pipe[pipe].plane[PLANE_PRIMARY],
5564 wm->pipe[pipe].plane[PLANE_CURSOR],
5565 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5566 }
5567
5568 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5569 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5570 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5571 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5572 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5573 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5574}
5575
5576void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5577{
5578 struct intel_plane *plane;
5579 struct intel_crtc *crtc;
5580
5581 mutex_lock(&dev_priv->wm.wm_mutex);
5582
5583 for_each_intel_plane(&dev_priv->drm, plane) {
5584 struct intel_crtc *crtc =
5585 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5586 struct intel_crtc_state *crtc_state =
5587 to_intel_crtc_state(crtc->base.state);
5588 struct intel_plane_state *plane_state =
5589 to_intel_plane_state(plane->base.state);
5590 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5591 enum plane_id plane_id = plane->id;
5592 int level;
5593
5594 if (plane_state->base.visible)
5595 continue;
5596
5597 for (level = 0; level < 3; level++) {
5598 struct g4x_pipe_wm *raw =
5599 &crtc_state->wm.g4x.raw[level];
5600
5601 raw->plane[plane_id] = 0;
5602 wm_state->wm.plane[plane_id] = 0;
5603 }
5604
5605 if (plane_id == PLANE_PRIMARY) {
5606 for (level = 0; level < 3; level++) {
5607 struct g4x_pipe_wm *raw =
5608 &crtc_state->wm.g4x.raw[level];
5609 raw->fbc = 0;
5610 }
5611
5612 wm_state->sr.fbc = 0;
5613 wm_state->hpll.fbc = 0;
5614 wm_state->fbc_en = false;
5615 }
5616 }
5617
5618 for_each_intel_crtc(&dev_priv->drm, crtc) {
5619 struct intel_crtc_state *crtc_state =
5620 to_intel_crtc_state(crtc->base.state);
5621
5622 crtc_state->wm.g4x.intermediate =
5623 crtc_state->wm.g4x.optimal;
5624 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
5625 }
5626
5627 g4x_program_watermarks(dev_priv);
5628
5629 mutex_unlock(&dev_priv->wm.wm_mutex);
5630}
5631
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005632void vlv_wm_get_hw_state(struct drm_device *dev)
5633{
5634 struct drm_i915_private *dev_priv = to_i915(dev);
5635 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02005636 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005637 u32 val;
5638
5639 vlv_read_wm_values(dev_priv, wm);
5640
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005641 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
5642 wm->level = VLV_WM_LEVEL_PM2;
5643
5644 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005645 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005646
5647 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5648 if (val & DSP_MAXFIFO_PM5_ENABLE)
5649 wm->level = VLV_WM_LEVEL_PM5;
5650
Ville Syrjälä58590c12015-09-08 21:05:12 +03005651 /*
5652 * If DDR DVFS is disabled in the BIOS, Punit
5653 * will never ack the request. So if that happens
5654 * assume we don't have to enable/disable DDR DVFS
5655 * dynamically. To test that just set the REQ_ACK
5656 * bit to poke the Punit, but don't change the
5657 * HIGH/LOW bits so that we don't actually change
5658 * the current state.
5659 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005660 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03005661 val |= FORCE_DDR_FREQ_REQ_ACK;
5662 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
5663
5664 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
5665 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
5666 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
5667 "assuming DDR DVFS is disabled\n");
5668 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
5669 } else {
5670 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
5671 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
5672 wm->level = VLV_WM_LEVEL_DDR_DVFS;
5673 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005674
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005675 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005676 }
5677
Ville Syrjäläff32c542017-03-02 19:14:57 +02005678 for_each_intel_crtc(dev, crtc) {
5679 struct intel_crtc_state *crtc_state =
5680 to_intel_crtc_state(crtc->base.state);
5681 struct vlv_wm_state *active = &crtc->wm.active.vlv;
5682 const struct vlv_fifo_state *fifo_state =
5683 &crtc_state->wm.vlv.fifo_state;
5684 enum pipe pipe = crtc->pipe;
5685 enum plane_id plane_id;
5686 int level;
5687
5688 vlv_get_fifo_size(crtc_state);
5689
5690 active->num_levels = wm->level + 1;
5691 active->cxsr = wm->cxsr;
5692
Ville Syrjäläff32c542017-03-02 19:14:57 +02005693 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005694 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02005695 &crtc_state->wm.vlv.raw[level];
5696
5697 active->sr[level].plane = wm->sr.plane;
5698 active->sr[level].cursor = wm->sr.cursor;
5699
5700 for_each_plane_id_on_crtc(crtc, plane_id) {
5701 active->wm[level].plane[plane_id] =
5702 wm->pipe[pipe].plane[plane_id];
5703
5704 raw->plane[plane_id] =
5705 vlv_invert_wm_value(active->wm[level].plane[plane_id],
5706 fifo_state->plane[plane_id]);
5707 }
5708 }
5709
5710 for_each_plane_id_on_crtc(crtc, plane_id)
5711 vlv_raw_plane_wm_set(crtc_state, level,
5712 plane_id, USHRT_MAX);
5713 vlv_invalidate_wms(crtc, active, level);
5714
5715 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02005716 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02005717
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005718 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 +02005719 pipe_name(pipe),
5720 wm->pipe[pipe].plane[PLANE_PRIMARY],
5721 wm->pipe[pipe].plane[PLANE_CURSOR],
5722 wm->pipe[pipe].plane[PLANE_SPRITE0],
5723 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02005724 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005725
5726 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
5727 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
5728}
5729
Ville Syrjälä602ae832017-03-02 19:15:02 +02005730void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
5731{
5732 struct intel_plane *plane;
5733 struct intel_crtc *crtc;
5734
5735 mutex_lock(&dev_priv->wm.wm_mutex);
5736
5737 for_each_intel_plane(&dev_priv->drm, plane) {
5738 struct intel_crtc *crtc =
5739 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5740 struct intel_crtc_state *crtc_state =
5741 to_intel_crtc_state(crtc->base.state);
5742 struct intel_plane_state *plane_state =
5743 to_intel_plane_state(plane->base.state);
5744 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
5745 const struct vlv_fifo_state *fifo_state =
5746 &crtc_state->wm.vlv.fifo_state;
5747 enum plane_id plane_id = plane->id;
5748 int level;
5749
5750 if (plane_state->base.visible)
5751 continue;
5752
5753 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005754 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02005755 &crtc_state->wm.vlv.raw[level];
5756
5757 raw->plane[plane_id] = 0;
5758
5759 wm_state->wm[level].plane[plane_id] =
5760 vlv_invert_wm_value(raw->plane[plane_id],
5761 fifo_state->plane[plane_id]);
5762 }
5763 }
5764
5765 for_each_intel_crtc(&dev_priv->drm, crtc) {
5766 struct intel_crtc_state *crtc_state =
5767 to_intel_crtc_state(crtc->base.state);
5768
5769 crtc_state->wm.vlv.intermediate =
5770 crtc_state->wm.vlv.optimal;
5771 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
5772 }
5773
5774 vlv_program_watermarks(dev_priv);
5775
5776 mutex_unlock(&dev_priv->wm.wm_mutex);
5777}
5778
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02005779/*
5780 * FIXME should probably kill this and improve
5781 * the real watermark readout/sanitation instead
5782 */
5783static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
5784{
5785 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5786 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5787 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5788
5789 /*
5790 * Don't touch WM1S_LP_EN here.
5791 * Doing so could cause underruns.
5792 */
5793}
5794
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005795void ilk_wm_get_hw_state(struct drm_device *dev)
5796{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005797 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005798 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005799 struct drm_crtc *crtc;
5800
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02005801 ilk_init_lp_watermarks(dev_priv);
5802
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01005803 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005804 ilk_pipe_wm_get_hw_state(crtc);
5805
5806 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
5807 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
5808 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
5809
5810 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005811 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02005812 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
5813 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
5814 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005815
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005816 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005817 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
5818 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01005819 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005820 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
5821 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005822
5823 hw->enable_fbc_wm =
5824 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
5825}
5826
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005827/**
5828 * intel_update_watermarks - update FIFO watermark values based on current modes
5829 *
5830 * Calculate watermark values for the various WM regs based on current mode
5831 * and plane configuration.
5832 *
5833 * There are several cases to deal with here:
5834 * - normal (i.e. non-self-refresh)
5835 * - self-refresh (SR) mode
5836 * - lines are large relative to FIFO size (buffer can hold up to 2)
5837 * - lines are small relative to FIFO size (buffer can hold more than 2
5838 * lines), so need to account for TLB latency
5839 *
5840 * The normal calculation is:
5841 * watermark = dotclock * bytes per pixel * latency
5842 * where latency is platform & configuration dependent (we assume pessimal
5843 * values here).
5844 *
5845 * The SR calculation is:
5846 * watermark = (trunc(latency/line time)+1) * surface width *
5847 * bytes per pixel
5848 * where
5849 * line time = htotal / dotclock
5850 * surface width = hdisplay for normal plane and 64 for cursor
5851 * and latency is assumed to be high, as above.
5852 *
5853 * The final value programmed to the register should always be rounded up,
5854 * and include an extra 2 entries to account for clock crossings.
5855 *
5856 * We don't use the sprite, so we can ignore that. And on Crestline we have
5857 * to set the non-SR watermarks to 8.
5858 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02005859void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005860{
Ville Syrjälä432081b2016-10-31 22:37:03 +02005861 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005862
5863 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005864 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005865}
5866
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305867void intel_enable_ipc(struct drm_i915_private *dev_priv)
5868{
5869 u32 val;
5870
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -07005871 /* Display WA #0477 WaDisableIPC: skl */
5872 if (IS_SKYLAKE(dev_priv)) {
5873 dev_priv->ipc_enabled = false;
5874 return;
5875 }
5876
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305877 val = I915_READ(DISP_ARB_CTL2);
5878
5879 if (dev_priv->ipc_enabled)
5880 val |= DISP_IPC_ENABLE;
5881 else
5882 val &= ~DISP_IPC_ENABLE;
5883
5884 I915_WRITE(DISP_ARB_CTL2, val);
5885}
5886
5887void intel_init_ipc(struct drm_i915_private *dev_priv)
5888{
5889 dev_priv->ipc_enabled = false;
5890 if (!HAS_IPC(dev_priv))
5891 return;
5892
5893 dev_priv->ipc_enabled = true;
5894 intel_enable_ipc(dev_priv);
5895}
5896
Jani Nikulae2828912016-01-18 09:19:47 +02005897/*
Daniel Vetter92703882012-08-09 16:46:01 +02005898 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02005899 */
5900DEFINE_SPINLOCK(mchdev_lock);
5901
5902/* Global for IPS driver to get at the current i915 device. Protected by
5903 * mchdev_lock. */
5904static struct drm_i915_private *i915_mch_dev;
5905
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005906bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005907{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005908 u16 rgvswctl;
5909
Chris Wilson67520412017-03-02 13:28:01 +00005910 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02005911
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005912 rgvswctl = I915_READ16(MEMSWCTL);
5913 if (rgvswctl & MEMCTL_CMD_STS) {
5914 DRM_DEBUG("gpu busy, RCS change rejected\n");
5915 return false; /* still busy with another command */
5916 }
5917
5918 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5919 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5920 I915_WRITE16(MEMSWCTL, rgvswctl);
5921 POSTING_READ16(MEMSWCTL);
5922
5923 rgvswctl |= MEMCTL_CMD_STS;
5924 I915_WRITE16(MEMSWCTL, rgvswctl);
5925
5926 return true;
5927}
5928
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005929static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005930{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005931 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005932 u8 fmax, fmin, fstart, vstart;
5933
Daniel Vetter92703882012-08-09 16:46:01 +02005934 spin_lock_irq(&mchdev_lock);
5935
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005936 rgvmodectl = I915_READ(MEMMODECTL);
5937
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005938 /* Enable temp reporting */
5939 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5940 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5941
5942 /* 100ms RC evaluation intervals */
5943 I915_WRITE(RCUPEI, 100000);
5944 I915_WRITE(RCDNEI, 100000);
5945
5946 /* Set max/min thresholds to 90ms and 80ms respectively */
5947 I915_WRITE(RCBMAXAVG, 90000);
5948 I915_WRITE(RCBMINAVG, 80000);
5949
5950 I915_WRITE(MEMIHYST, 1);
5951
5952 /* Set up min, max, and cur for interrupt handling */
5953 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5954 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5955 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5956 MEMMODE_FSTART_SHIFT;
5957
Ville Syrjälä616847e2015-09-18 20:03:19 +03005958 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005959 PXVFREQ_PX_SHIFT;
5960
Daniel Vetter20e4d402012-08-08 23:35:39 +02005961 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
5962 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005963
Daniel Vetter20e4d402012-08-08 23:35:39 +02005964 dev_priv->ips.max_delay = fstart;
5965 dev_priv->ips.min_delay = fmin;
5966 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005967
5968 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
5969 fmax, fmin, fstart);
5970
5971 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5972
5973 /*
5974 * Interrupts will be enabled in ironlake_irq_postinstall
5975 */
5976
5977 I915_WRITE(VIDSTART, vstart);
5978 POSTING_READ(VIDSTART);
5979
5980 rgvmodectl |= MEMMODE_SWMODE_EN;
5981 I915_WRITE(MEMMODECTL, rgvmodectl);
5982
Daniel Vetter92703882012-08-09 16:46:01 +02005983 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005984 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005985 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005986
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005987 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005988
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005989 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
5990 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005991 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005992 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005993 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005994
5995 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005996}
5997
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005998static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005999{
Daniel Vetter92703882012-08-09 16:46:01 +02006000 u16 rgvswctl;
6001
6002 spin_lock_irq(&mchdev_lock);
6003
6004 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006005
6006 /* Ack interrupts, disable EFC interrupt */
6007 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6008 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6009 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6010 I915_WRITE(DEIIR, DE_PCU_EVENT);
6011 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6012
6013 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006014 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006015 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006016 rgvswctl |= MEMCTL_CMD_STS;
6017 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006018 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006019
Daniel Vetter92703882012-08-09 16:46:01 +02006020 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006021}
6022
Daniel Vetteracbe9472012-07-26 11:50:05 +02006023/* There's a funny hw issue where the hw returns all 0 when reading from
6024 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
6025 * ourselves, instead of doing a rmw cycle (which might result in us clearing
6026 * all limits and the gpu stuck at whatever frequency it is at atm).
6027 */
Akash Goel74ef1172015-03-06 11:07:19 +05306028static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006029{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006030 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006031 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006032
Daniel Vetter20b46e52012-07-26 11:16:14 +02006033 /* Only set the down limit when we've reached the lowest level to avoid
6034 * getting more interrupts, otherwise leave this clear. This prevents a
6035 * race in the hw when coming out of rc6: There's a tiny window where
6036 * the hw runs at the minimal clock before selecting the desired
6037 * frequency, if the down threshold expires in that window we will not
6038 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006039 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006040 limits = (rps->max_freq_softlimit) << 23;
6041 if (val <= rps->min_freq_softlimit)
6042 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05306043 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006044 limits = rps->max_freq_softlimit << 24;
6045 if (val <= rps->min_freq_softlimit)
6046 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306047 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006048
6049 return limits;
6050}
6051
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006052static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6053{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006054 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006055 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05306056 u32 threshold_up = 0, threshold_down = 0; /* in % */
6057 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006058
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006059 new_power = rps->power;
6060 switch (rps->power) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006061 case LOW_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006062 if (val > rps->efficient_freq + 1 &&
6063 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006064 new_power = BETWEEN;
6065 break;
6066
6067 case BETWEEN:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006068 if (val <= rps->efficient_freq &&
6069 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006070 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006071 else if (val >= rps->rp0_freq &&
6072 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006073 new_power = HIGH_POWER;
6074 break;
6075
6076 case HIGH_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006077 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6078 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006079 new_power = BETWEEN;
6080 break;
6081 }
6082 /* Max/min bins are special */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006083 if (val <= rps->min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006084 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006085 if (val >= rps->max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006086 new_power = HIGH_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006087 if (new_power == rps->power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006088 return;
6089
6090 /* Note the units here are not exactly 1us, but 1280ns. */
6091 switch (new_power) {
6092 case LOW_POWER:
6093 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306094 ei_up = 16000;
6095 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006096
6097 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306098 ei_down = 32000;
6099 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006100 break;
6101
6102 case BETWEEN:
6103 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306104 ei_up = 13000;
6105 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006106
6107 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306108 ei_down = 32000;
6109 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006110 break;
6111
6112 case HIGH_POWER:
6113 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306114 ei_up = 10000;
6115 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006116
6117 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306118 ei_down = 32000;
6119 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006120 break;
6121 }
6122
Mika Kuoppala6067a272017-02-15 15:52:59 +02006123 /* When byt can survive without system hang with dynamic
6124 * sw freq adjustments, this restriction can be lifted.
6125 */
6126 if (IS_VALLEYVIEW(dev_priv))
6127 goto skip_hw_write;
6128
Akash Goel8a586432015-03-06 11:07:18 +05306129 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006130 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306131 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006132 GT_INTERVAL_FROM_US(dev_priv,
6133 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306134
6135 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006136 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306137 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006138 GT_INTERVAL_FROM_US(dev_priv,
6139 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306140
Chris Wilsona72b5622016-07-02 15:35:59 +01006141 I915_WRITE(GEN6_RP_CONTROL,
6142 GEN6_RP_MEDIA_TURBO |
6143 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6144 GEN6_RP_MEDIA_IS_GFX |
6145 GEN6_RP_ENABLE |
6146 GEN6_RP_UP_BUSY_AVG |
6147 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306148
Mika Kuoppala6067a272017-02-15 15:52:59 +02006149skip_hw_write:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006150 rps->power = new_power;
6151 rps->up_threshold = threshold_up;
6152 rps->down_threshold = threshold_down;
6153 rps->last_adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006154}
6155
Chris Wilson2876ce72014-03-28 08:03:34 +00006156static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6157{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006158 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006159 u32 mask = 0;
6160
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006161 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006162 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006163 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 +01006164 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006165 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006166
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006167 mask &= dev_priv->pm_rps_events;
6168
Imre Deak59d02a12014-12-19 19:33:26 +02006169 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006170}
6171
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006172/* gen6_set_rps is called to update the frequency request, but should also be
6173 * called when the range (min_delay and max_delay) is modified so that we can
6174 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006175static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006176{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006177 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6178
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006179 /* min/max delay may still have been modified so be sure to
6180 * write the limits value.
6181 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006182 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006183 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006184
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006185 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306186 I915_WRITE(GEN6_RPNSWREQ,
6187 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006188 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006189 I915_WRITE(GEN6_RPNSWREQ,
6190 HSW_FREQUENCY(val));
6191 else
6192 I915_WRITE(GEN6_RPNSWREQ,
6193 GEN6_FREQUENCY(val) |
6194 GEN6_OFFSET(0) |
6195 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006196 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006197
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006198 /* Make sure we continue to get interrupts
6199 * until we hit the minimum or maximum frequencies.
6200 */
Akash Goel74ef1172015-03-06 11:07:19 +05306201 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006202 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006203
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006204 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006205 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006206
6207 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006208}
6209
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006210static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006211{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006212 int err;
6213
Chris Wilsondc979972016-05-10 14:10:04 +01006214 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006215 "Odd GPU freq value\n"))
6216 val &= ~1;
6217
Deepak Scd25dd52015-07-10 18:31:40 +05306218 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6219
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006220 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006221 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6222 if (err)
6223 return err;
6224
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006225 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006226 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006227
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006228 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006229 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006230
6231 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006232}
6233
Deepak Sa7f6e232015-05-09 18:04:44 +05306234/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306235 *
6236 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306237 * 1. Forcewake Media well.
6238 * 2. Request idle freq.
6239 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306240*/
6241static void vlv_set_rps_idle(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 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006245 int err;
Deepak S5549d252014-06-28 11:26:11 +05306246
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006247 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306248 return;
6249
Chris Wilsonc9efef72017-01-02 15:28:45 +00006250 /* The punit delays the write of the frequency and voltage until it
6251 * determines the GPU is awake. During normal usage we don't want to
6252 * waste power changing the frequency if the GPU is sleeping (rc6).
6253 * However, the GPU and driver is now idle and we do not want to delay
6254 * switching to minimum voltage (reducing power whilst idle) as we do
6255 * not expect to be woken in the near future and so must flush the
6256 * change by waking the device.
6257 *
6258 * We choose to take the media powerwell (either would do to trick the
6259 * punit into committing the voltage change) as that takes a lot less
6260 * power than the render powerwell.
6261 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306262 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006263 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306264 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006265
6266 if (err)
6267 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306268}
6269
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006270void gen6_rps_busy(struct drm_i915_private *dev_priv)
6271{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006272 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6273
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006274 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006275 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006276 u8 freq;
6277
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006278 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006279 gen6_rps_reset_ei(dev_priv);
6280 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006281 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006282
Chris Wilsonc33d2472016-07-04 08:08:36 +01006283 gen6_enable_rps_interrupts(dev_priv);
6284
Chris Wilsonbd648182017-02-10 15:03:48 +00006285 /* Use the user's desired frequency as a guide, but for better
6286 * performance, jump directly to RPe as our starting frequency.
6287 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006288 freq = max(rps->cur_freq,
6289 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006290
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006291 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006292 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006293 rps->min_freq_softlimit,
6294 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006295 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006296 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006297 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006298}
6299
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006300void gen6_rps_idle(struct drm_i915_private *dev_priv)
6301{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006302 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6303
Chris Wilsonc33d2472016-07-04 08:08:36 +01006304 /* Flush our bottom-half so that it does not race with us
6305 * setting the idle frequency and so that it is bounded by
6306 * our rpm wakeref. And then disable the interrupts to stop any
6307 * futher RPS reclocking whilst we are asleep.
6308 */
6309 gen6_disable_rps_interrupts(dev_priv);
6310
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006311 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006312 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006313 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306314 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006315 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006316 gen6_set_rps(dev_priv, rps->idle_freq);
6317 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006318 I915_WRITE(GEN6_PMINTRMSK,
6319 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006320 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006321 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006322}
6323
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006324void gen6_rps_boost(struct drm_i915_gem_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006325 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006326{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006327 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006328 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006329 bool boost;
6330
Chris Wilson8d3afd72015-05-21 21:01:47 +01006331 /* This is intentionally racy! We peek at the state here, then
6332 * validate inside the RPS worker.
6333 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006334 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006335 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006336
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006337 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006338 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006339 if (!rq->waitboost && !i915_gem_request_completed(rq)) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006340 atomic_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006341 rq->waitboost = true;
6342 boost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006343 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006344 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006345 if (!boost)
6346 return;
6347
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006348 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6349 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006350
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006351 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006352}
6353
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006354int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006355{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006356 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006357 int err;
6358
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006359 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006360 GEM_BUG_ON(val > rps->max_freq);
6361 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006362
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006363 if (!rps->enabled) {
6364 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006365 return 0;
6366 }
6367
Chris Wilsondc979972016-05-10 14:10:04 +01006368 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006369 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006370 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006371 err = gen6_set_rps(dev_priv, val);
6372
6373 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006374}
6375
Chris Wilsondc979972016-05-10 14:10:04 +01006376static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006377{
Zhe Wang20e49362014-11-04 17:07:05 +00006378 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006379 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006380}
6381
Chris Wilsondc979972016-05-10 14:10:04 +01006382static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306383{
Akash Goel2030d682016-04-23 00:05:45 +05306384 I915_WRITE(GEN6_RP_CONTROL, 0);
6385}
6386
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006387static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006388{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006389 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006390}
6391
6392static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6393{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006394 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306395 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006396}
6397
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006398static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306399{
Deepak S38807742014-05-23 21:00:15 +05306400 I915_WRITE(GEN6_RC_CONTROL, 0);
6401}
6402
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006403static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
6404{
6405 I915_WRITE(GEN6_RP_CONTROL, 0);
6406}
6407
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006408static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006409{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006410 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006411 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006412 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006413
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006414 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006415
Mika Kuoppala59bad942015-01-16 11:34:40 +02006416 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006417}
6418
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006419static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6420{
6421 I915_WRITE(GEN6_RP_CONTROL, 0);
6422}
6423
Chris Wilsondc979972016-05-10 14:10:04 +01006424static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07006425{
Chris Wilsondc979972016-05-10 14:10:04 +01006426 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03006427 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
6428 mode = GEN6_RC_CTL_RC6_ENABLE;
6429 else
6430 mode = 0;
6431 }
Chris Wilsondc979972016-05-10 14:10:04 +01006432 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03006433 DRM_DEBUG_DRIVER("Enabling RC6 states: "
6434 "RC6 %s RC6p %s RC6pp %s\n",
6435 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
6436 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
6437 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07006438
6439 else
Imre Deakb99d49c2016-06-29 19:13:54 +03006440 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
6441 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07006442}
6443
Chris Wilsondc979972016-05-10 14:10:04 +01006444static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306445{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006446 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306447 bool enable_rc6 = true;
6448 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006449 u32 rc_ctl;
6450 int rc_sw_target;
6451
6452 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6453 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6454 RC_SW_TARGET_STATE_SHIFT;
6455 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6456 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6457 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6458 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6459 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306460
6461 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006462 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306463 enable_rc6 = false;
6464 }
6465
6466 /*
6467 * The exact context size is not known for BXT, so assume a page size
6468 * for this check.
6469 */
6470 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006471 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
6472 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
6473 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006474 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306475 enable_rc6 = false;
6476 }
6477
6478 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
6479 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
6480 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
6481 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006482 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306483 enable_rc6 = false;
6484 }
6485
Imre Deakfc619842016-06-29 19:13:55 +03006486 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
6487 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
6488 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
6489 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
6490 enable_rc6 = false;
6491 }
6492
6493 if (!I915_READ(GEN6_GFXPAUSE)) {
6494 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
6495 enable_rc6 = false;
6496 }
6497
6498 if (!I915_READ(GEN8_MISC_CTRL0)) {
6499 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306500 enable_rc6 = false;
6501 }
6502
6503 return enable_rc6;
6504}
6505
Chris Wilsondc979972016-05-10 14:10:04 +01006506int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006507{
Daniel Vettere7d66d82015-06-15 23:23:54 +02006508 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01006509 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03006510 return 0;
6511
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306512 if (!enable_rc6)
6513 return 0;
6514
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006515 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306516 DRM_INFO("RC6 disabled by BIOS\n");
6517 return 0;
6518 }
6519
Daniel Vetter456470e2012-08-08 23:35:40 +02006520 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03006521 if (enable_rc6 >= 0) {
6522 int mask;
6523
Chris Wilsondc979972016-05-10 14:10:04 +01006524 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03006525 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
6526 INTEL_RC6pp_ENABLE;
6527 else
6528 mask = INTEL_RC6_ENABLE;
6529
6530 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03006531 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
6532 "(requested %d, valid %d)\n",
6533 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03006534
6535 return enable_rc6 & mask;
6536 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006537
Chris Wilsondc979972016-05-10 14:10:04 +01006538 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08006539 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08006540
6541 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006542}
6543
Chris Wilsondc979972016-05-10 14:10:04 +01006544static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006545{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006546 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6547
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006548 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006549
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006550 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006551 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006552 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006553 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6554 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6555 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006556 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006557 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006558 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6559 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6560 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006561 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006562 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006563 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006564
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006565 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006566 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006567 IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006568 u32 ddcc_status = 0;
6569
6570 if (sandybridge_pcode_read(dev_priv,
6571 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6572 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006573 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006574 clamp_t(u8,
6575 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006576 rps->min_freq,
6577 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006578 }
6579
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006580 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05306581 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006582 * the natural hardware unit for SKL
6583 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006584 rps->rp0_freq *= GEN9_FREQ_SCALER;
6585 rps->rp1_freq *= GEN9_FREQ_SCALER;
6586 rps->min_freq *= GEN9_FREQ_SCALER;
6587 rps->max_freq *= GEN9_FREQ_SCALER;
6588 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306589 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006590}
6591
Chris Wilson3a45b052016-07-13 09:10:32 +01006592static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006593 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01006594{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006595 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6596 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01006597
6598 /* force a reset */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006599 rps->power = -1;
6600 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01006601
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006602 if (set(dev_priv, freq))
6603 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01006604}
6605
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006606/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01006607static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006608{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006609 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6610
Akash Goel0beb0592015-03-06 11:07:20 +05306611 /* Program defaults and thresholds for RPS*/
6612 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006613 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006614
Akash Goel0beb0592015-03-06 11:07:20 +05306615 /* 1 second timeout*/
6616 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
6617 GT_INTERVAL_FROM_US(dev_priv, 1000000));
6618
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006619 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006620
Akash Goel0beb0592015-03-06 11:07:20 +05306621 /* Leaning on the below call to gen6_set_rps to program/setup the
6622 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
6623 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01006624 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006625
6626 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6627}
6628
Chris Wilsondc979972016-05-10 14:10:04 +01006629static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006630{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006631 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306632 enum intel_engine_id id;
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006633 u32 rc6_mode, rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00006634
6635 /* 1a: Software RC state - RC0 */
6636 I915_WRITE(GEN6_RC_STATE, 0);
6637
6638 /* 1b: Get forcewake during program sequence. Although the driver
6639 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006640 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006641
6642 /* 2a: Disable RC states. */
6643 I915_WRITE(GEN6_RC_CONTROL, 0);
6644
6645 /* 2b: Program RC6 thresholds.*/
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006646 if (INTEL_GEN(dev_priv) >= 10) {
6647 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
6648 I915_WRITE(GEN10_MEDIA_WAKE_RATE_LIMIT, 150);
6649 } else if (IS_SKYLAKE(dev_priv)) {
6650 /*
6651 * WaRsDoubleRc6WrlWithCoarsePowerGating:skl Doubling WRL only
6652 * when CPG is enabled
6653 */
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306654 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006655 } else {
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306656 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006657 }
6658
Zhe Wang20e49362014-11-04 17:07:05 +00006659 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6660 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306661 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006662 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306663
Dave Gordon1a3d1892016-05-13 15:36:30 +01006664 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306665 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
6666
Zhe Wang20e49362014-11-04 17:07:05 +00006667 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006668
Zhe Wang38c23522015-01-20 12:23:04 +00006669 /* 2c: Program Coarse Power Gating Policies. */
6670 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
6671 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
6672
Zhe Wang20e49362014-11-04 17:07:05 +00006673 /* 3a: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006674 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00006675 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02006676 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00006677 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006678
6679 /* WaRsUseTimeoutMode:cnl (pre-prod) */
6680 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
6681 rc6_mode = GEN7_RC_CTL_TO_MODE;
6682 else
6683 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
6684
Chris Wilson1c044f92017-01-25 17:26:01 +00006685 I915_WRITE(GEN6_RC_CONTROL,
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006686 GEN6_RC_CTL_HW_ENABLE | rc6_mode | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00006687
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306688 /*
6689 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306690 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306691 */
Chris Wilsondc979972016-05-10 14:10:04 +01006692 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306693 I915_WRITE(GEN9_PG_ENABLE, 0);
6694 else
6695 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
6696 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006697
Mika Kuoppala59bad942015-01-16 11:34:40 +02006698 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006699}
6700
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006701static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006702{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006703 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306704 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006705 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006706
6707 /* 1a: Software RC state - RC0 */
6708 I915_WRITE(GEN6_RC_STATE, 0);
6709
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006710 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006711 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006712 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006713
6714 /* 2a: Disable RC states. */
6715 I915_WRITE(GEN6_RC_CONTROL, 0);
6716
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006717 /* 2b: Program RC6 thresholds.*/
6718 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6719 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6720 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306721 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006722 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006723 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006724 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006725
6726 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006727 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006728 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01006729 intel_print_rc6_info(dev_priv, rc6_mask);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006730
6731 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
6732 GEN7_RC_CTL_TO_MODE |
6733 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006734
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006735 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6736}
6737
6738static void gen8_enable_rps(struct drm_i915_private *dev_priv)
6739{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006740 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6741
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006742 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6743
6744 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006745 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006746 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006747 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006748 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02006749 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
6750 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006751
Daniel Vetter7526ed72014-09-29 15:07:19 +02006752 /* Docs recommend 900MHz, and 300 MHz respectively */
6753 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006754 rps->max_freq_softlimit << 24 |
6755 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006756
Daniel Vetter7526ed72014-09-29 15:07:19 +02006757 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
6758 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
6759 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
6760 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006761
Daniel Vetter7526ed72014-09-29 15:07:19 +02006762 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006763
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006764 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02006765 I915_WRITE(GEN6_RP_CONTROL,
6766 GEN6_RP_MEDIA_TURBO |
6767 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6768 GEN6_RP_MEDIA_IS_GFX |
6769 GEN6_RP_ENABLE |
6770 GEN6_RP_UP_BUSY_AVG |
6771 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006772
Chris Wilson3a45b052016-07-13 09:10:32 +01006773 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006774
Mika Kuoppala59bad942015-01-16 11:34:40 +02006775 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006776}
6777
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006778static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006779{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006780 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306781 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01006782 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006783 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006784 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006785 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006786
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006787 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006788
6789 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006790 gtfifodbg = I915_READ(GTFIFODBG);
6791 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006792 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
6793 I915_WRITE(GTFIFODBG, gtfifodbg);
6794 }
6795
Mika Kuoppala59bad942015-01-16 11:34:40 +02006796 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006797
6798 /* disable the counters and set deterministic thresholds */
6799 I915_WRITE(GEN6_RC_CONTROL, 0);
6800
6801 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6802 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6803 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6804 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6805 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6806
Akash Goel3b3f1652016-10-13 22:44:48 +05306807 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006808 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006809
6810 I915_WRITE(GEN6_RC_SLEEP, 0);
6811 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01006812 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07006813 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
6814 else
6815 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08006816 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006817 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6818
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006819 /* Check if we are enabling RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006820 rc6_mode = intel_rc6_enabled();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006821 if (rc6_mode & INTEL_RC6_ENABLE)
6822 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
6823
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006824 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01006825 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006826 if (rc6_mode & INTEL_RC6p_ENABLE)
6827 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006828
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006829 if (rc6_mode & INTEL_RC6pp_ENABLE)
6830 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
6831 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006832
Chris Wilsondc979972016-05-10 14:10:04 +01006833 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006834
6835 I915_WRITE(GEN6_RC_CONTROL,
6836 rc6_mask |
6837 GEN6_RC_CTL_EI_MODE(1) |
6838 GEN6_RC_CTL_HW_ENABLE);
6839
Ben Widawsky31643d52012-09-26 10:34:01 -07006840 rc6vids = 0;
6841 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01006842 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006843 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01006844 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006845 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
6846 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
6847 rc6vids &= 0xffff00;
6848 rc6vids |= GEN6_ENCODE_RC6_VID(450);
6849 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
6850 if (ret)
6851 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
6852 }
6853
Mika Kuoppala59bad942015-01-16 11:34:40 +02006854 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006855}
6856
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006857static void gen6_enable_rps(struct drm_i915_private *dev_priv)
6858{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006859 /* Here begins a magic sequence of register writes to enable
6860 * auto-downclocking.
6861 *
6862 * Perhaps there might be some value in exposing these to
6863 * userspace...
6864 */
6865 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6866
6867 /* Power down if completely idle for over 50ms */
6868 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
6869 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6870
6871 reset_rps(dev_priv, gen6_set_rps);
6872
6873 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6874}
6875
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006876static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006877{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006878 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006879 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006880 unsigned int gpu_freq;
6881 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306882 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006883 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03006884 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006885
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006886 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02006887
Ben Widawskyeda79642013-10-07 17:15:48 -03006888 policy = cpufreq_cpu_get(0);
6889 if (policy) {
6890 max_ia_freq = policy->cpuinfo.max_freq;
6891 cpufreq_cpu_put(policy);
6892 } else {
6893 /*
6894 * Default to measured freq if none found, PCU will ensure we
6895 * don't go over
6896 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006897 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03006898 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006899
6900 /* Convert from kHz to MHz */
6901 max_ia_freq /= 1000;
6902
Ben Widawsky153b4b952013-10-22 22:05:09 -07006903 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07006904 /* convert DDR frequency from units of 266.6MHz to bandwidth */
6905 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006906
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006907 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306908 /* Convert GT frequency to 50 HZ units */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006909 min_gpu_freq = rps->min_freq / GEN9_FREQ_SCALER;
6910 max_gpu_freq = rps->max_freq / GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05306911 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006912 min_gpu_freq = rps->min_freq;
6913 max_gpu_freq = rps->max_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306914 }
6915
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006916 /*
6917 * For each potential GPU frequency, load a ring frequency we'd like
6918 * to use for memory access. We do this by specifying the IA frequency
6919 * the PCU should use as a reference to determine the ring frequency.
6920 */
Akash Goel4c8c7742015-06-29 14:50:20 +05306921 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
6922 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006923 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006924
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006925 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306926 /*
6927 * ring_freq = 2 * GT. ring_freq is in 100MHz units
6928 * No floor required for ring frequency on SKL.
6929 */
6930 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006931 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07006932 /* max(2 * GT, DDR). NB: GT is 50MHz units */
6933 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01006934 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07006935 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006936 ring_freq = max(min_ring_freq, ring_freq);
6937 /* leave ia_freq as the default, chosen by cpufreq */
6938 } else {
6939 /* On older processors, there is no separate ring
6940 * clock domain, so in order to boost the bandwidth
6941 * of the ring, we need to upclock the CPU (ia_freq).
6942 *
6943 * For GPU frequencies less than 750MHz,
6944 * just use the lowest ring freq.
6945 */
6946 if (gpu_freq < min_freq)
6947 ia_freq = 800;
6948 else
6949 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
6950 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
6951 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006952
Ben Widawsky42c05262012-09-26 10:34:00 -07006953 sandybridge_pcode_write(dev_priv,
6954 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01006955 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
6956 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
6957 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006958 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006959}
6960
Ville Syrjälä03af2042014-06-28 02:03:53 +03006961static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05306962{
6963 u32 val, rp0;
6964
Jani Nikula5b5929c2015-10-07 11:17:46 +03006965 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05306966
Imre Deak43b67992016-08-31 19:13:02 +03006967 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03006968 case 8:
6969 /* (2 * 4) config */
6970 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
6971 break;
6972 case 12:
6973 /* (2 * 6) config */
6974 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
6975 break;
6976 case 16:
6977 /* (2 * 8) config */
6978 default:
6979 /* Setting (2 * 8) Min RP0 for any other combination */
6980 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
6981 break;
Deepak S095acd52015-01-17 11:05:59 +05306982 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03006983
6984 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
6985
Deepak S2b6b3a02014-05-27 15:59:30 +05306986 return rp0;
6987}
6988
6989static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6990{
6991 u32 val, rpe;
6992
6993 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
6994 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
6995
6996 return rpe;
6997}
6998
Deepak S7707df42014-07-12 18:46:14 +05306999static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
7000{
7001 u32 val, rp1;
7002
Jani Nikula5b5929c2015-10-07 11:17:46 +03007003 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
7004 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
7005
Deepak S7707df42014-07-12 18:46:14 +05307006 return rp1;
7007}
7008
Deepak S96676fe2016-08-12 18:46:41 +05307009static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
7010{
7011 u32 val, rpn;
7012
7013 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
7014 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
7015 FB_GFX_FREQ_FUSE_MASK);
7016
7017 return rpn;
7018}
7019
Deepak Sf8f2b002014-07-10 13:16:21 +05307020static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
7021{
7022 u32 val, rp1;
7023
7024 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
7025
7026 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
7027
7028 return rp1;
7029}
7030
Ville Syrjälä03af2042014-06-28 02:03:53 +03007031static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007032{
7033 u32 val, rp0;
7034
Jani Nikula64936252013-05-22 15:36:20 +03007035 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007036
7037 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
7038 /* Clamp to max */
7039 rp0 = min_t(u32, rp0, 0xea);
7040
7041 return rp0;
7042}
7043
7044static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7045{
7046 u32 val, rpe;
7047
Jani Nikula64936252013-05-22 15:36:20 +03007048 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007049 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007050 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007051 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7052
7053 return rpe;
7054}
7055
Ville Syrjälä03af2042014-06-28 02:03:53 +03007056static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007057{
Imre Deak36146032014-12-04 18:39:35 +02007058 u32 val;
7059
7060 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7061 /*
7062 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7063 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7064 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7065 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7066 * to make sure it matches what Punit accepts.
7067 */
7068 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007069}
7070
Imre Deakae484342014-03-31 15:10:44 +03007071/* Check that the pctx buffer wasn't move under us. */
7072static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7073{
7074 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7075
7076 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
7077 dev_priv->vlv_pctx->stolen->start);
7078}
7079
Deepak S38807742014-05-23 21:00:15 +05307080
7081/* Check that the pcbr address is not empty. */
7082static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7083{
7084 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7085
7086 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7087}
7088
Chris Wilsondc979972016-05-10 14:10:04 +01007089static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307090{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007091 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03007092 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05307093 u32 pcbr;
7094 int pctx_size = 32*1024;
7095
Deepak S38807742014-05-23 21:00:15 +05307096 pcbr = I915_READ(VLV_PCBR);
7097 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007098 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05307099 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007100 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05307101
7102 pctx_paddr = (paddr & (~4095));
7103 I915_WRITE(VLV_PCBR, pctx_paddr);
7104 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007105
7106 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05307107}
7108
Chris Wilsondc979972016-05-10 14:10:04 +01007109static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007110{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007111 struct drm_i915_gem_object *pctx;
7112 unsigned long pctx_paddr;
7113 u32 pcbr;
7114 int pctx_size = 24*1024;
7115
7116 pcbr = I915_READ(VLV_PCBR);
7117 if (pcbr) {
7118 /* BIOS set it up already, grab the pre-alloc'd space */
7119 int pcbr_offset;
7120
7121 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007122 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007123 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02007124 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007125 pctx_size);
7126 goto out;
7127 }
7128
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007129 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
7130
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007131 /*
7132 * From the Gunit register HAS:
7133 * The Gfx driver is expected to program this register and ensure
7134 * proper allocation within Gfx stolen memory. For example, this
7135 * register should be programmed such than the PCBR range does not
7136 * overlap with other ranges, such as the frame buffer, protected
7137 * memory, or any other relevant ranges.
7138 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007139 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007140 if (!pctx) {
7141 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00007142 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007143 }
7144
7145 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
7146 I915_WRITE(VLV_PCBR, pctx_paddr);
7147
7148out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007149 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007150 dev_priv->vlv_pctx = pctx;
7151}
7152
Chris Wilsondc979972016-05-10 14:10:04 +01007153static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007154{
Imre Deakae484342014-03-31 15:10:44 +03007155 if (WARN_ON(!dev_priv->vlv_pctx))
7156 return;
7157
Chris Wilsonf0cd5182016-10-28 13:58:43 +01007158 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03007159 dev_priv->vlv_pctx = NULL;
7160}
7161
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007162static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7163{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007164 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007165 vlv_get_cck_clock(dev_priv, "GPLL ref",
7166 CCK_GPLL_CLOCK_CONTROL,
7167 dev_priv->czclk_freq);
7168
7169 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007170 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007171}
7172
Chris Wilsondc979972016-05-10 14:10:04 +01007173static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007174{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007175 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007176 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007177
Chris Wilsondc979972016-05-10 14:10:04 +01007178 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007179
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007180 vlv_init_gpll_ref_freq(dev_priv);
7181
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007182 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7183 switch ((val >> 6) & 3) {
7184 case 0:
7185 case 1:
7186 dev_priv->mem_freq = 800;
7187 break;
7188 case 2:
7189 dev_priv->mem_freq = 1066;
7190 break;
7191 case 3:
7192 dev_priv->mem_freq = 1333;
7193 break;
7194 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007195 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007196
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007197 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7198 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007199 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007200 intel_gpu_freq(dev_priv, rps->max_freq),
7201 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007202
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007203 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007204 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007205 intel_gpu_freq(dev_priv, rps->efficient_freq),
7206 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007207
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007208 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307209 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007210 intel_gpu_freq(dev_priv, rps->rp1_freq),
7211 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307212
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007213 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007214 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007215 intel_gpu_freq(dev_priv, rps->min_freq),
7216 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007217}
7218
Chris Wilsondc979972016-05-10 14:10:04 +01007219static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307220{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007221 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007222 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307223
Chris Wilsondc979972016-05-10 14:10:04 +01007224 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307225
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007226 vlv_init_gpll_ref_freq(dev_priv);
7227
Ville Syrjäläa5805162015-05-26 20:42:30 +03007228 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007229 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007230 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007231
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007232 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007233 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007234 dev_priv->mem_freq = 2000;
7235 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007236 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007237 dev_priv->mem_freq = 1600;
7238 break;
7239 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007240 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007241
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007242 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7243 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307244 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007245 intel_gpu_freq(dev_priv, rps->max_freq),
7246 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307247
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007248 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307249 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007250 intel_gpu_freq(dev_priv, rps->efficient_freq),
7251 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307252
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007253 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307254 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007255 intel_gpu_freq(dev_priv, rps->rp1_freq),
7256 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307257
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007258 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307259 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007260 intel_gpu_freq(dev_priv, rps->min_freq),
7261 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307262
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007263 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7264 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007265 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307266}
7267
Chris Wilsondc979972016-05-10 14:10:04 +01007268static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007269{
Chris Wilsondc979972016-05-10 14:10:04 +01007270 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007271}
7272
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007273static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307274{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007275 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307276 enum intel_engine_id id;
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007277 u32 gtfifodbg, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307278
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007279 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7280 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307281 if (gtfifodbg) {
7282 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7283 gtfifodbg);
7284 I915_WRITE(GTFIFODBG, gtfifodbg);
7285 }
7286
7287 cherryview_check_pctx(dev_priv);
7288
7289 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7290 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007291 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307292
Ville Syrjälä160614a2015-01-19 13:50:47 +02007293 /* Disable RC states. */
7294 I915_WRITE(GEN6_RC_CONTROL, 0);
7295
Deepak S38807742014-05-23 21:00:15 +05307296 /* 2a: Program RC6 thresholds.*/
7297 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7298 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7299 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7300
Akash Goel3b3f1652016-10-13 22:44:48 +05307301 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007302 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307303 I915_WRITE(GEN6_RC_SLEEP, 0);
7304
Deepak Sf4f71c72015-03-28 15:23:35 +05307305 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7306 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307307
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007308 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307309 I915_WRITE(VLV_COUNTER_CONTROL,
7310 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7311 VLV_MEDIA_RC6_COUNT_EN |
7312 VLV_RENDER_RC6_COUNT_EN));
7313
7314 /* For now we assume BIOS is allocating and populating the PCBR */
7315 pcbr = I915_READ(VLV_PCBR);
7316
Deepak S38807742014-05-23 21:00:15 +05307317 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007318 if ((intel_rc6_enabled() & INTEL_RC6_ENABLE) &&
Chris Wilsondc979972016-05-10 14:10:04 +01007319 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007320 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307321
7322 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7323
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007324 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7325}
7326
7327static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7328{
7329 u32 val;
7330
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007331 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7332
7333 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007334 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307335 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7336 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7337 I915_WRITE(GEN6_RP_UP_EI, 66000);
7338 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7339
7340 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7341
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007342 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307343 I915_WRITE(GEN6_RP_CONTROL,
7344 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007345 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307346 GEN6_RP_ENABLE |
7347 GEN6_RP_UP_BUSY_AVG |
7348 GEN6_RP_DOWN_IDLE_AVG);
7349
Deepak S3ef62342015-04-29 08:36:24 +05307350 /* Setting Fixed Bias */
7351 val = VLV_OVERRIDE_EN |
7352 VLV_SOC_TDP_EN |
7353 CHV_BIAS_CPU_50_SOC_50;
7354 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7355
Deepak S2b6b3a02014-05-27 15:59:30 +05307356 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7357
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007358 /* RPS code assumes GPLL is used */
7359 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7360
Jani Nikula742f4912015-09-03 11:16:09 +03007361 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307362 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7363
Chris Wilson3a45b052016-07-13 09:10:32 +01007364 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307365
Mika Kuoppala59bad942015-01-16 11:34:40 +02007366 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307367}
7368
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007369static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007370{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007371 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307372 enum intel_engine_id id;
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007373 u32 gtfifodbg, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007374
Imre Deakae484342014-03-31 15:10:44 +03007375 valleyview_check_pctx(dev_priv);
7376
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007377 gtfifodbg = I915_READ(GTFIFODBG);
7378 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007379 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7380 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007381 I915_WRITE(GTFIFODBG, gtfifodbg);
7382 }
7383
Mika Kuoppala59bad942015-01-16 11:34:40 +02007384 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007385
Ville Syrjälä160614a2015-01-19 13:50:47 +02007386 /* Disable RC states. */
7387 I915_WRITE(GEN6_RC_CONTROL, 0);
7388
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007389 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7390 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7391 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7392
7393 for_each_engine(engine, dev_priv, id)
7394 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7395
7396 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7397
7398 /* Allows RC6 residency counter to work */
7399 I915_WRITE(VLV_COUNTER_CONTROL,
7400 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7401 VLV_MEDIA_RC0_COUNT_EN |
7402 VLV_RENDER_RC0_COUNT_EN |
7403 VLV_MEDIA_RC6_COUNT_EN |
7404 VLV_RENDER_RC6_COUNT_EN));
7405
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007406 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007407 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
7408
7409 intel_print_rc6_info(dev_priv, rc6_mode);
7410
7411 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7412
7413 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7414}
7415
7416static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7417{
7418 u32 val;
7419
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007420 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7421
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007422 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007423 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7424 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7425 I915_WRITE(GEN6_RP_UP_EI, 66000);
7426 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7427
7428 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7429
7430 I915_WRITE(GEN6_RP_CONTROL,
7431 GEN6_RP_MEDIA_TURBO |
7432 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7433 GEN6_RP_MEDIA_IS_GFX |
7434 GEN6_RP_ENABLE |
7435 GEN6_RP_UP_BUSY_AVG |
7436 GEN6_RP_DOWN_IDLE_CONT);
7437
Deepak S3ef62342015-04-29 08:36:24 +05307438 /* Setting Fixed Bias */
7439 val = VLV_OVERRIDE_EN |
7440 VLV_SOC_TDP_EN |
7441 VLV_BIAS_CPU_125_SOC_875;
7442 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7443
Jani Nikula64936252013-05-22 15:36:20 +03007444 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007445
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007446 /* RPS code assumes GPLL is used */
7447 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7448
Jani Nikula742f4912015-09-03 11:16:09 +03007449 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007450 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7451
Chris Wilson3a45b052016-07-13 09:10:32 +01007452 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007453
Mika Kuoppala59bad942015-01-16 11:34:40 +02007454 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007455}
7456
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007457static unsigned long intel_pxfreq(u32 vidfreq)
7458{
7459 unsigned long freq;
7460 int div = (vidfreq & 0x3f0000) >> 16;
7461 int post = (vidfreq & 0x3000) >> 12;
7462 int pre = (vidfreq & 0x7);
7463
7464 if (!pre)
7465 return 0;
7466
7467 freq = ((div * 133333) / ((1<<post) * pre));
7468
7469 return freq;
7470}
7471
Daniel Vettereb48eb02012-04-26 23:28:12 +02007472static const struct cparams {
7473 u16 i;
7474 u16 t;
7475 u16 m;
7476 u16 c;
7477} cparams[] = {
7478 { 1, 1333, 301, 28664 },
7479 { 1, 1066, 294, 24460 },
7480 { 1, 800, 294, 25192 },
7481 { 0, 1333, 276, 27605 },
7482 { 0, 1066, 276, 27605 },
7483 { 0, 800, 231, 23784 },
7484};
7485
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007486static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007487{
7488 u64 total_count, diff, ret;
7489 u32 count1, count2, count3, m = 0, c = 0;
7490 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7491 int i;
7492
Chris Wilson67520412017-03-02 13:28:01 +00007493 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007494
Daniel Vetter20e4d402012-08-08 23:35:39 +02007495 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007496
7497 /* Prevent division-by-zero if we are asking too fast.
7498 * Also, we don't get interesting results if we are polling
7499 * faster than once in 10ms, so just return the saved value
7500 * in such cases.
7501 */
7502 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007503 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007504
7505 count1 = I915_READ(DMIEC);
7506 count2 = I915_READ(DDREC);
7507 count3 = I915_READ(CSIEC);
7508
7509 total_count = count1 + count2 + count3;
7510
7511 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007512 if (total_count < dev_priv->ips.last_count1) {
7513 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007514 diff += total_count;
7515 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007516 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007517 }
7518
7519 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007520 if (cparams[i].i == dev_priv->ips.c_m &&
7521 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007522 m = cparams[i].m;
7523 c = cparams[i].c;
7524 break;
7525 }
7526 }
7527
7528 diff = div_u64(diff, diff1);
7529 ret = ((m * diff) + c);
7530 ret = div_u64(ret, 10);
7531
Daniel Vetter20e4d402012-08-08 23:35:39 +02007532 dev_priv->ips.last_count1 = total_count;
7533 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007534
Daniel Vetter20e4d402012-08-08 23:35:39 +02007535 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007536
7537 return ret;
7538}
7539
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007540unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7541{
7542 unsigned long val;
7543
Chris Wilsondc979972016-05-10 14:10:04 +01007544 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007545 return 0;
7546
7547 spin_lock_irq(&mchdev_lock);
7548
7549 val = __i915_chipset_val(dev_priv);
7550
7551 spin_unlock_irq(&mchdev_lock);
7552
7553 return val;
7554}
7555
Daniel Vettereb48eb02012-04-26 23:28:12 +02007556unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7557{
7558 unsigned long m, x, b;
7559 u32 tsfs;
7560
7561 tsfs = I915_READ(TSFS);
7562
7563 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7564 x = I915_READ8(TR1);
7565
7566 b = tsfs & TSFS_INTR_MASK;
7567
7568 return ((m * x) / 127) - b;
7569}
7570
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007571static int _pxvid_to_vd(u8 pxvid)
7572{
7573 if (pxvid == 0)
7574 return 0;
7575
7576 if (pxvid >= 8 && pxvid < 31)
7577 pxvid = 31;
7578
7579 return (pxvid + 2) * 125;
7580}
7581
7582static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007583{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007584 const int vd = _pxvid_to_vd(pxvid);
7585 const int vm = vd - 1125;
7586
Chris Wilsondc979972016-05-10 14:10:04 +01007587 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007588 return vm > 0 ? vm : 0;
7589
7590 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007591}
7592
Daniel Vetter02d71952012-08-09 16:44:54 +02007593static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007594{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007595 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007596 u32 count;
7597
Chris Wilson67520412017-03-02 13:28:01 +00007598 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007599
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007600 now = ktime_get_raw_ns();
7601 diffms = now - dev_priv->ips.last_time2;
7602 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007603
7604 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02007605 if (!diffms)
7606 return;
7607
7608 count = I915_READ(GFXEC);
7609
Daniel Vetter20e4d402012-08-08 23:35:39 +02007610 if (count < dev_priv->ips.last_count2) {
7611 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007612 diff += count;
7613 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007614 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007615 }
7616
Daniel Vetter20e4d402012-08-08 23:35:39 +02007617 dev_priv->ips.last_count2 = count;
7618 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007619
7620 /* More magic constants... */
7621 diff = diff * 1181;
7622 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02007623 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007624}
7625
Daniel Vetter02d71952012-08-09 16:44:54 +02007626void i915_update_gfx_val(struct drm_i915_private *dev_priv)
7627{
Chris Wilsondc979972016-05-10 14:10:04 +01007628 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02007629 return;
7630
Daniel Vetter92703882012-08-09 16:46:01 +02007631 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007632
7633 __i915_update_gfx_val(dev_priv);
7634
Daniel Vetter92703882012-08-09 16:46:01 +02007635 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007636}
7637
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007638static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007639{
7640 unsigned long t, corr, state1, corr2, state2;
7641 u32 pxvid, ext_v;
7642
Chris Wilson67520412017-03-02 13:28:01 +00007643 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007644
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007645 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02007646 pxvid = (pxvid >> 24) & 0x7f;
7647 ext_v = pvid_to_extvid(dev_priv, pxvid);
7648
7649 state1 = ext_v;
7650
7651 t = i915_mch_val(dev_priv);
7652
7653 /* Revel in the empirically derived constants */
7654
7655 /* Correction factor in 1/100000 units */
7656 if (t > 80)
7657 corr = ((t * 2349) + 135940);
7658 else if (t >= 50)
7659 corr = ((t * 964) + 29317);
7660 else /* < 50 */
7661 corr = ((t * 301) + 1004);
7662
7663 corr = corr * ((150142 * state1) / 10000 - 78642);
7664 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02007665 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007666
7667 state2 = (corr2 * state1) / 10000;
7668 state2 /= 100; /* convert to mW */
7669
Daniel Vetter02d71952012-08-09 16:44:54 +02007670 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007671
Daniel Vetter20e4d402012-08-08 23:35:39 +02007672 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007673}
7674
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007675unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
7676{
7677 unsigned long val;
7678
Chris Wilsondc979972016-05-10 14:10:04 +01007679 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007680 return 0;
7681
7682 spin_lock_irq(&mchdev_lock);
7683
7684 val = __i915_gfx_val(dev_priv);
7685
7686 spin_unlock_irq(&mchdev_lock);
7687
7688 return val;
7689}
7690
Daniel Vettereb48eb02012-04-26 23:28:12 +02007691/**
7692 * i915_read_mch_val - return value for IPS use
7693 *
7694 * Calculate and return a value for the IPS driver to use when deciding whether
7695 * we have thermal and power headroom to increase CPU or GPU power budget.
7696 */
7697unsigned long i915_read_mch_val(void)
7698{
7699 struct drm_i915_private *dev_priv;
7700 unsigned long chipset_val, graphics_val, ret = 0;
7701
Daniel Vetter92703882012-08-09 16:46:01 +02007702 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007703 if (!i915_mch_dev)
7704 goto out_unlock;
7705 dev_priv = i915_mch_dev;
7706
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007707 chipset_val = __i915_chipset_val(dev_priv);
7708 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007709
7710 ret = chipset_val + graphics_val;
7711
7712out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007713 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007714
7715 return ret;
7716}
7717EXPORT_SYMBOL_GPL(i915_read_mch_val);
7718
7719/**
7720 * i915_gpu_raise - raise GPU frequency limit
7721 *
7722 * Raise the limit; IPS indicates we have thermal headroom.
7723 */
7724bool i915_gpu_raise(void)
7725{
7726 struct drm_i915_private *dev_priv;
7727 bool ret = true;
7728
Daniel Vetter92703882012-08-09 16:46:01 +02007729 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007730 if (!i915_mch_dev) {
7731 ret = false;
7732 goto out_unlock;
7733 }
7734 dev_priv = i915_mch_dev;
7735
Daniel Vetter20e4d402012-08-08 23:35:39 +02007736 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
7737 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007738
7739out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007740 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007741
7742 return ret;
7743}
7744EXPORT_SYMBOL_GPL(i915_gpu_raise);
7745
7746/**
7747 * i915_gpu_lower - lower GPU frequency limit
7748 *
7749 * IPS indicates we're close to a thermal limit, so throttle back the GPU
7750 * frequency maximum.
7751 */
7752bool i915_gpu_lower(void)
7753{
7754 struct drm_i915_private *dev_priv;
7755 bool ret = true;
7756
Daniel Vetter92703882012-08-09 16:46:01 +02007757 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007758 if (!i915_mch_dev) {
7759 ret = false;
7760 goto out_unlock;
7761 }
7762 dev_priv = i915_mch_dev;
7763
Daniel Vetter20e4d402012-08-08 23:35:39 +02007764 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
7765 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007766
7767out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007768 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007769
7770 return ret;
7771}
7772EXPORT_SYMBOL_GPL(i915_gpu_lower);
7773
7774/**
7775 * i915_gpu_busy - indicate GPU business to IPS
7776 *
7777 * Tell the IPS driver whether or not the GPU is busy.
7778 */
7779bool i915_gpu_busy(void)
7780{
Daniel Vettereb48eb02012-04-26 23:28:12 +02007781 bool ret = false;
7782
Daniel Vetter92703882012-08-09 16:46:01 +02007783 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01007784 if (i915_mch_dev)
7785 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02007786 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007787
7788 return ret;
7789}
7790EXPORT_SYMBOL_GPL(i915_gpu_busy);
7791
7792/**
7793 * i915_gpu_turbo_disable - disable graphics turbo
7794 *
7795 * Disable graphics turbo by resetting the max frequency and setting the
7796 * current frequency to the default.
7797 */
7798bool i915_gpu_turbo_disable(void)
7799{
7800 struct drm_i915_private *dev_priv;
7801 bool ret = true;
7802
Daniel Vetter92703882012-08-09 16:46:01 +02007803 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007804 if (!i915_mch_dev) {
7805 ret = false;
7806 goto out_unlock;
7807 }
7808 dev_priv = i915_mch_dev;
7809
Daniel Vetter20e4d402012-08-08 23:35:39 +02007810 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007811
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007812 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02007813 ret = false;
7814
7815out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007816 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007817
7818 return ret;
7819}
7820EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
7821
7822/**
7823 * Tells the intel_ips driver that the i915 driver is now loaded, if
7824 * IPS got loaded first.
7825 *
7826 * This awkward dance is so that neither module has to depend on the
7827 * other in order for IPS to do the appropriate communication of
7828 * GPU turbo limits to i915.
7829 */
7830static void
7831ips_ping_for_i915_load(void)
7832{
7833 void (*link)(void);
7834
7835 link = symbol_get(ips_link_to_i915_driver);
7836 if (link) {
7837 link();
7838 symbol_put(ips_link_to_i915_driver);
7839 }
7840}
7841
7842void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
7843{
Daniel Vetter02d71952012-08-09 16:44:54 +02007844 /* We only register the i915 ips part with intel-ips once everything is
7845 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02007846 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007847 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02007848 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007849
7850 ips_ping_for_i915_load();
7851}
7852
7853void intel_gpu_ips_teardown(void)
7854{
Daniel Vetter92703882012-08-09 16:46:01 +02007855 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007856 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02007857 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007858}
Deepak S76c3552f2014-01-30 23:08:16 +05307859
Chris Wilsondc979972016-05-10 14:10:04 +01007860static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007861{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007862 u32 lcfuse;
7863 u8 pxw[16];
7864 int i;
7865
7866 /* Disable to program */
7867 I915_WRITE(ECR, 0);
7868 POSTING_READ(ECR);
7869
7870 /* Program energy weights for various events */
7871 I915_WRITE(SDEW, 0x15040d00);
7872 I915_WRITE(CSIEW0, 0x007f0000);
7873 I915_WRITE(CSIEW1, 0x1e220004);
7874 I915_WRITE(CSIEW2, 0x04000004);
7875
7876 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007877 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007878 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007879 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007880
7881 /* Program P-state weights to account for frequency power adjustment */
7882 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03007883 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007884 unsigned long freq = intel_pxfreq(pxvidfreq);
7885 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
7886 PXVFREQ_PX_SHIFT;
7887 unsigned long val;
7888
7889 val = vid * vid;
7890 val *= (freq / 1000);
7891 val *= 255;
7892 val /= (127*127*900);
7893 if (val > 0xff)
7894 DRM_ERROR("bad pxval: %ld\n", val);
7895 pxw[i] = val;
7896 }
7897 /* Render standby states get 0 weight */
7898 pxw[14] = 0;
7899 pxw[15] = 0;
7900
7901 for (i = 0; i < 4; i++) {
7902 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
7903 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03007904 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007905 }
7906
7907 /* Adjust magic regs to magic values (more experimental results) */
7908 I915_WRITE(OGW0, 0);
7909 I915_WRITE(OGW1, 0);
7910 I915_WRITE(EG0, 0x00007f00);
7911 I915_WRITE(EG1, 0x0000000e);
7912 I915_WRITE(EG2, 0x000e0000);
7913 I915_WRITE(EG3, 0x68000300);
7914 I915_WRITE(EG4, 0x42000000);
7915 I915_WRITE(EG5, 0x00140031);
7916 I915_WRITE(EG6, 0);
7917 I915_WRITE(EG7, 0);
7918
7919 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007920 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007921
7922 /* Enable PMON + select events */
7923 I915_WRITE(ECR, 0x80000019);
7924
7925 lcfuse = I915_READ(LCFUSE02);
7926
Daniel Vetter20e4d402012-08-08 23:35:39 +02007927 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007928}
7929
Chris Wilsondc979972016-05-10 14:10:04 +01007930void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007931{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007932 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7933
Imre Deakb268c692015-12-15 20:10:31 +02007934 /*
7935 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
7936 * requirement.
7937 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007938 if (!i915_modparams.enable_rc6) {
Imre Deakb268c692015-12-15 20:10:31 +02007939 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
7940 intel_runtime_pm_get(dev_priv);
7941 }
Imre Deake6069ca2014-04-18 16:01:02 +03007942
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007943 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01007944
7945 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01007946 if (IS_CHERRYVIEW(dev_priv))
7947 cherryview_init_gt_powersave(dev_priv);
7948 else if (IS_VALLEYVIEW(dev_priv))
7949 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01007950 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01007951 gen6_init_rps_frequencies(dev_priv);
7952
7953 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007954 rps->idle_freq = rps->min_freq;
7955 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007956
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007957 rps->max_freq_softlimit = rps->max_freq;
7958 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007959
7960 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007961 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01007962 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007963 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01007964 intel_freq_opcode(dev_priv, 450));
7965
Chris Wilson99ac9612016-07-13 09:10:34 +01007966 /* After setting max-softlimit, find the overclock max freq */
7967 if (IS_GEN6(dev_priv) ||
7968 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
7969 u32 params = 0;
7970
7971 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
7972 if (params & BIT(31)) { /* OC supported */
7973 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007974 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01007975 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007976 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01007977 }
7978 }
7979
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007980 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007981 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007982
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007983 mutex_unlock(&dev_priv->pcu_lock);
Imre Deakae484342014-03-31 15:10:44 +03007984}
7985
Chris Wilsondc979972016-05-10 14:10:04 +01007986void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007987{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03007988 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01007989 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02007990
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007991 if (!i915_modparams.enable_rc6)
Imre Deakb268c692015-12-15 20:10:31 +02007992 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007993}
7994
Chris Wilson54b4f682016-07-21 21:16:19 +01007995/**
7996 * intel_suspend_gt_powersave - suspend PM work and helper threads
7997 * @dev_priv: i915 device
7998 *
7999 * We don't want to disable RC6 or other features here, we just want
8000 * to make sure any work we've queued has finished and won't bother
8001 * us while we're suspended.
8002 */
8003void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
8004{
8005 if (INTEL_GEN(dev_priv) < 6)
8006 return;
8007
Chris Wilson54b4f682016-07-21 21:16:19 +01008008 /* gen6_rps_idle() will be called later to disable interrupts */
8009}
8010
Chris Wilsonb7137e02016-07-13 09:10:37 +01008011void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
8012{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008013 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
8014 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01008015 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008016
8017 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07008018}
8019
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008020static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
8021{
8022 lockdep_assert_held(&i915->pcu_lock);
8023
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008024 if (!i915->gt_pm.llc_pstate.enabled)
8025 return;
8026
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008027 /* Currently there is no HW configuration to be done to disable. */
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008028
8029 i915->gt_pm.llc_pstate.enabled = false;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008030}
8031
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008032static void intel_disable_rc6(struct drm_i915_private *dev_priv)
8033{
8034 lockdep_assert_held(&dev_priv->pcu_lock);
8035
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008036 if (!dev_priv->gt_pm.rc6.enabled)
8037 return;
8038
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008039 if (INTEL_GEN(dev_priv) >= 9)
8040 gen9_disable_rc6(dev_priv);
8041 else if (IS_CHERRYVIEW(dev_priv))
8042 cherryview_disable_rc6(dev_priv);
8043 else if (IS_VALLEYVIEW(dev_priv))
8044 valleyview_disable_rc6(dev_priv);
8045 else if (INTEL_GEN(dev_priv) >= 6)
8046 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008047
8048 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008049}
8050
8051static void intel_disable_rps(struct drm_i915_private *dev_priv)
8052{
8053 lockdep_assert_held(&dev_priv->pcu_lock);
8054
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008055 if (!dev_priv->gt_pm.rps.enabled)
8056 return;
8057
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008058 if (INTEL_GEN(dev_priv) >= 9)
8059 gen9_disable_rps(dev_priv);
8060 else if (IS_CHERRYVIEW(dev_priv))
8061 cherryview_disable_rps(dev_priv);
8062 else if (IS_VALLEYVIEW(dev_priv))
8063 valleyview_disable_rps(dev_priv);
8064 else if (INTEL_GEN(dev_priv) >= 6)
8065 gen6_disable_rps(dev_priv);
8066 else if (IS_IRONLAKE_M(dev_priv))
8067 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008068
8069 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008070}
8071
Chris Wilsondc979972016-05-10 14:10:04 +01008072void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008073{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008074 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008075
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008076 intel_disable_rc6(dev_priv);
8077 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008078 if (HAS_LLC(dev_priv))
8079 intel_disable_llc_pstate(dev_priv);
8080
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008081 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008082}
8083
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008084static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8085{
8086 lockdep_assert_held(&i915->pcu_lock);
8087
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008088 if (i915->gt_pm.llc_pstate.enabled)
8089 return;
8090
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008091 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008092
8093 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008094}
8095
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008096static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8097{
8098 lockdep_assert_held(&dev_priv->pcu_lock);
8099
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008100 if (dev_priv->gt_pm.rc6.enabled)
8101 return;
8102
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008103 if (IS_CHERRYVIEW(dev_priv))
8104 cherryview_enable_rc6(dev_priv);
8105 else if (IS_VALLEYVIEW(dev_priv))
8106 valleyview_enable_rc6(dev_priv);
8107 else if (INTEL_GEN(dev_priv) >= 9)
8108 gen9_enable_rc6(dev_priv);
8109 else if (IS_BROADWELL(dev_priv))
8110 gen8_enable_rc6(dev_priv);
8111 else if (INTEL_GEN(dev_priv) >= 6)
8112 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008113
8114 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008115}
8116
8117static void intel_enable_rps(struct drm_i915_private *dev_priv)
8118{
8119 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8120
8121 lockdep_assert_held(&dev_priv->pcu_lock);
8122
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008123 if (rps->enabled)
8124 return;
8125
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008126 if (IS_CHERRYVIEW(dev_priv)) {
8127 cherryview_enable_rps(dev_priv);
8128 } else if (IS_VALLEYVIEW(dev_priv)) {
8129 valleyview_enable_rps(dev_priv);
8130 } else if (INTEL_GEN(dev_priv) >= 9) {
8131 gen9_enable_rps(dev_priv);
8132 } else if (IS_BROADWELL(dev_priv)) {
8133 gen8_enable_rps(dev_priv);
8134 } else if (INTEL_GEN(dev_priv) >= 6) {
8135 gen6_enable_rps(dev_priv);
8136 } else if (IS_IRONLAKE_M(dev_priv)) {
8137 ironlake_enable_drps(dev_priv);
8138 intel_init_emon(dev_priv);
8139 }
8140
8141 WARN_ON(rps->max_freq < rps->min_freq);
8142 WARN_ON(rps->idle_freq > rps->max_freq);
8143
8144 WARN_ON(rps->efficient_freq < rps->min_freq);
8145 WARN_ON(rps->efficient_freq > rps->max_freq);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008146
8147 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008148}
8149
Chris Wilsonb7137e02016-07-13 09:10:37 +01008150void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8151{
Chris Wilsonb7137e02016-07-13 09:10:37 +01008152 /* Powersaving is controlled by the host when inside a VM */
8153 if (intel_vgpu_active(dev_priv))
8154 return;
8155
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008156 mutex_lock(&dev_priv->pcu_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02008157
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008158 intel_enable_rc6(dev_priv);
8159 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008160 if (HAS_LLC(dev_priv))
8161 intel_enable_llc_pstate(dev_priv);
8162
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008163 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008164}
Imre Deakc6df39b2014-04-14 20:24:29 +03008165
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008166static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008167{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008168 /*
8169 * On Ibex Peak and Cougar Point, we need to disable clock
8170 * gating for the panel power sequencer or it will fail to
8171 * start up when no ports are active.
8172 */
8173 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8174}
8175
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008176static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008177{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008178 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008179
Damien Lespiau055e3932014-08-18 13:49:10 +01008180 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008181 I915_WRITE(DSPCNTR(pipe),
8182 I915_READ(DSPCNTR(pipe)) |
8183 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008184
8185 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8186 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008187 }
8188}
8189
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008190static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008191{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008192 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008193
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008194 /*
8195 * Required for FBC
8196 * WaFbcDisableDpfcClockGating:ilk
8197 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008198 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8199 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8200 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008201
8202 I915_WRITE(PCH_3DCGDIS0,
8203 MARIUNIT_CLOCK_GATE_DISABLE |
8204 SVSMUNIT_CLOCK_GATE_DISABLE);
8205 I915_WRITE(PCH_3DCGDIS1,
8206 VFMUNIT_CLOCK_GATE_DISABLE);
8207
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008208 /*
8209 * According to the spec the following bits should be set in
8210 * order to enable memory self-refresh
8211 * The bit 22/21 of 0x42004
8212 * The bit 5 of 0x42020
8213 * The bit 15 of 0x45000
8214 */
8215 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8216 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8217 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008218 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008219 I915_WRITE(DISP_ARB_CTL,
8220 (I915_READ(DISP_ARB_CTL) |
8221 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008222
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008223 /*
8224 * Based on the document from hardware guys the following bits
8225 * should be set unconditionally in order to enable FBC.
8226 * The bit 22 of 0x42000
8227 * The bit 22 of 0x42004
8228 * The bit 7,8,9 of 0x42020.
8229 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008230 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008231 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008232 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8233 I915_READ(ILK_DISPLAY_CHICKEN1) |
8234 ILK_FBCQ_DIS);
8235 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8236 I915_READ(ILK_DISPLAY_CHICKEN2) |
8237 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008238 }
8239
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008240 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8241
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008242 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8243 I915_READ(ILK_DISPLAY_CHICKEN2) |
8244 ILK_ELPIN_409_SELECT);
8245 I915_WRITE(_3D_CHICKEN2,
8246 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8247 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008248
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008249 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008250 I915_WRITE(CACHE_MODE_0,
8251 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008252
Akash Goel4e046322014-04-04 17:14:38 +05308253 /* WaDisable_RenderCache_OperationalFlush:ilk */
8254 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8255
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008256 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008257
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008258 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008259}
8260
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008261static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008262{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008263 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008264 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008265
8266 /*
8267 * On Ibex Peak and Cougar Point, we need to disable clock
8268 * gating for the panel power sequencer or it will fail to
8269 * start up when no ports are active.
8270 */
Jesse Barnescd664072013-10-02 10:34:19 -07008271 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8272 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8273 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008274 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8275 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008276 /* The below fixes the weird display corruption, a few pixels shifted
8277 * downward, on (only) LVDS of some HP laptops with IVY.
8278 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008279 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008280 val = I915_READ(TRANS_CHICKEN2(pipe));
8281 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8282 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008283 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008284 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008285 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8286 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8287 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008288 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8289 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008290 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008291 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008292 I915_WRITE(TRANS_CHICKEN1(pipe),
8293 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8294 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008295}
8296
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008297static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008298{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008299 uint32_t tmp;
8300
8301 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008302 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8303 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8304 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008305}
8306
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008307static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008308{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008309 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008310
Damien Lespiau231e54f2012-10-19 17:55:41 +01008311 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008312
8313 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8314 I915_READ(ILK_DISPLAY_CHICKEN2) |
8315 ILK_ELPIN_409_SELECT);
8316
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008317 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008318 I915_WRITE(_3D_CHICKEN,
8319 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8320
Akash Goel4e046322014-04-04 17:14:38 +05308321 /* WaDisable_RenderCache_OperationalFlush:snb */
8322 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8323
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008324 /*
8325 * BSpec recoomends 8x4 when MSAA is used,
8326 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008327 *
8328 * Note that PS/WM thread counts depend on the WIZ hashing
8329 * disable bit, which we don't touch here, but it's good
8330 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008331 */
8332 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008333 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008334
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008335 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008336 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008337
8338 I915_WRITE(GEN6_UCGCTL1,
8339 I915_READ(GEN6_UCGCTL1) |
8340 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8341 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8342
8343 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8344 * gating disable must be set. Failure to set it results in
8345 * flickering pixels due to Z write ordering failures after
8346 * some amount of runtime in the Mesa "fire" demo, and Unigine
8347 * Sanctuary and Tropics, and apparently anything else with
8348 * alpha test or pixel discard.
8349 *
8350 * According to the spec, bit 11 (RCCUNIT) must also be set,
8351 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008352 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008353 * WaDisableRCCUnitClockGating:snb
8354 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008355 */
8356 I915_WRITE(GEN6_UCGCTL2,
8357 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8358 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8359
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008360 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008361 I915_WRITE(_3D_CHICKEN3,
8362 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008363
8364 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008365 * Bspec says:
8366 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8367 * 3DSTATE_SF number of SF output attributes is more than 16."
8368 */
8369 I915_WRITE(_3D_CHICKEN3,
8370 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8371
8372 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008373 * According to the spec the following bits should be
8374 * set in order to enable memory self-refresh and fbc:
8375 * The bit21 and bit22 of 0x42000
8376 * The bit21 and bit22 of 0x42004
8377 * The bit5 and bit7 of 0x42020
8378 * The bit14 of 0x70180
8379 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008380 *
8381 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008382 */
8383 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8384 I915_READ(ILK_DISPLAY_CHICKEN1) |
8385 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8386 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8387 I915_READ(ILK_DISPLAY_CHICKEN2) |
8388 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008389 I915_WRITE(ILK_DSPCLK_GATE_D,
8390 I915_READ(ILK_DSPCLK_GATE_D) |
8391 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8392 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008393
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008394 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008395
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008396 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008397
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008398 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008399}
8400
8401static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8402{
8403 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8404
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008405 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008406 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008407 *
8408 * This actually overrides the dispatch
8409 * mode for all thread types.
8410 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008411 reg &= ~GEN7_FF_SCHED_MASK;
8412 reg |= GEN7_FF_TS_SCHED_HW;
8413 reg |= GEN7_FF_VS_SCHED_HW;
8414 reg |= GEN7_FF_DS_SCHED_HW;
8415
8416 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8417}
8418
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008419static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008420{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008421 /*
8422 * TODO: this bit should only be enabled when really needed, then
8423 * disabled when not needed anymore in order to save power.
8424 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008425 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008426 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8427 I915_READ(SOUTH_DSPCLK_GATE_D) |
8428 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008429
8430 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008431 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8432 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008433 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008434}
8435
Ville Syrjälä712bf362016-10-31 22:37:23 +02008436static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008437{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008438 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008439 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8440
8441 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8442 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8443 }
8444}
8445
Imre Deak450174f2016-05-03 15:54:21 +03008446static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8447 int general_prio_credits,
8448 int high_prio_credits)
8449{
8450 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07008451 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008452
8453 /* WaTempDisableDOPClkGating:bdw */
8454 misccpctl = I915_READ(GEN7_MISCCPCTL);
8455 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8456
Oscar Mateo930a7842017-10-17 13:25:45 -07008457 val = I915_READ(GEN8_L3SQCREG1);
8458 val &= ~L3_PRIO_CREDITS_MASK;
8459 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8460 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8461 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008462
8463 /*
8464 * Wait at least 100 clocks before re-enabling clock gating.
8465 * See the definition of L3SQCREG1 in BSpec.
8466 */
8467 POSTING_READ(GEN8_L3SQCREG1);
8468 udelay(1);
8469 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8470}
8471
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008472static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8473{
8474 if (!HAS_PCH_CNP(dev_priv))
8475 return;
8476
8477 /* Wa #1181 */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008478 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8479 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008480}
8481
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008482static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008483{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008484 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008485 cnp_init_clock_gating(dev_priv);
8486
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008487 /* This is not an Wa. Enable for better image quality */
8488 I915_WRITE(_3D_CHICKEN3,
8489 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8490
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008491 /* WaEnableChickenDCPR:cnl */
8492 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8493 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8494
8495 /* WaFbcWakeMemOn:cnl */
8496 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8497 DISP_FBC_MEMORY_WAKE);
8498
Chris Wilson34991bd2017-11-11 10:03:36 +00008499 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
8500 /* ReadHitWriteOnlyDisable:cnl */
8501 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008502 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8503 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00008504 val |= SARBUNIT_CLKGATE_DIS;
8505 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008506
8507 /* Display WA #1133: WaFbcSkipSegments:cnl */
8508 val = I915_READ(ILK_DPFC_CHICKEN);
8509 val &= ~GLK_SKIP_SEG_COUNT_MASK;
8510 val |= GLK_SKIP_SEG_EN | GLK_SKIP_SEG_COUNT(1);
8511 I915_WRITE(ILK_DPFC_CHICKEN, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008512}
8513
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008514static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8515{
8516 cnp_init_clock_gating(dev_priv);
8517 gen9_init_clock_gating(dev_priv);
8518
8519 /* WaFbcNukeOnHostModify:cfl */
8520 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8521 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8522}
8523
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008524static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008525{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008526 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008527
8528 /* WaDisableSDEUnitClockGating:kbl */
8529 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8530 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8531 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008532
8533 /* WaDisableGamClockGating:kbl */
8534 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8535 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8536 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008537
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008538 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008539 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8540 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008541}
8542
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008543static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008544{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008545 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008546
8547 /* WAC6entrylatency:skl */
8548 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8549 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008550
8551 /* WaFbcNukeOnHostModify:skl */
8552 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8553 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008554}
8555
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008556static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008557{
Matthew Auld8cb09832017-10-06 23:18:23 +01008558 /* The GTT cache must be disabled if the system is using 2M pages. */
8559 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8560 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008561 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008562
Ben Widawskyab57fff2013-12-12 15:28:04 -08008563 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008564 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008565
Ben Widawskyab57fff2013-12-12 15:28:04 -08008566 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008567 I915_WRITE(CHICKEN_PAR1_1,
8568 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
8569
Ben Widawskyab57fff2013-12-12 15:28:04 -08008570 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01008571 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00008572 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02008573 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02008574 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008575 }
Ben Widawsky63801f22013-12-12 17:26:03 -08008576
Ben Widawskyab57fff2013-12-12 15:28:04 -08008577 /* WaVSRefCountFullforceMissDisable:bdw */
8578 /* WaDSRefCountFullforceMissDisable:bdw */
8579 I915_WRITE(GEN7_FF_THREAD_MODE,
8580 I915_READ(GEN7_FF_THREAD_MODE) &
8581 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02008582
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02008583 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8584 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02008585
8586 /* WaDisableSDEUnitClockGating:bdw */
8587 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8588 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00008589
Imre Deak450174f2016-05-03 15:54:21 +03008590 /* WaProgramL3SqcReg1Default:bdw */
8591 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03008592
Matthew Auld8cb09832017-10-06 23:18:23 +01008593 /* WaGttCachingOffByDefault:bdw */
8594 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008595
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03008596 /* WaKVMNotificationOnConfigChange:bdw */
8597 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
8598 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
8599
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008600 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00008601
8602 /* WaDisableDopClockGating:bdw
8603 *
8604 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
8605 * clock gating.
8606 */
8607 I915_WRITE(GEN6_UCGCTL1,
8608 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008609}
8610
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008611static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008612{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07008613 /* L3 caching of data atomics doesn't work -- disable it. */
8614 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
8615 I915_WRITE(HSW_ROW_CHICKEN3,
8616 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
8617
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008618 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008619 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8620 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8621 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8622
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02008623 /* WaVSRefCountFullforceMissDisable:hsw */
8624 I915_WRITE(GEN7_FF_THREAD_MODE,
8625 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008626
Akash Goel4e046322014-04-04 17:14:38 +05308627 /* WaDisable_RenderCache_OperationalFlush:hsw */
8628 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8629
Chia-I Wufe27c602014-01-28 13:29:33 +08008630 /* enable HiZ Raw Stall Optimization */
8631 I915_WRITE(CACHE_MODE_0_GEN7,
8632 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8633
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008634 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008635 I915_WRITE(CACHE_MODE_1,
8636 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008637
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008638 /*
8639 * BSpec recommends 8x4 when MSAA is used,
8640 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008641 *
8642 * Note that PS/WM thread counts depend on the WIZ hashing
8643 * disable bit, which we don't touch here, but it's good
8644 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008645 */
8646 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008647 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008648
Kenneth Graunke94411592014-12-31 16:23:00 -08008649 /* WaSampleCChickenBitEnable:hsw */
8650 I915_WRITE(HALF_SLICE_CHICKEN3,
8651 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
8652
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008653 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07008654 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
8655
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008656 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008657}
8658
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008659static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008660{
Ben Widawsky20848222012-05-04 18:58:59 -07008661 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008662
Damien Lespiau231e54f2012-10-19 17:55:41 +01008663 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008664
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008665 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05008666 I915_WRITE(_3D_CHICKEN3,
8667 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8668
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008669 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008670 I915_WRITE(IVB_CHICKEN3,
8671 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8672 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8673
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008674 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008675 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07008676 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
8677 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008678
Akash Goel4e046322014-04-04 17:14:38 +05308679 /* WaDisable_RenderCache_OperationalFlush:ivb */
8680 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8681
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008682 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008683 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
8684 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
8685
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008686 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008687 I915_WRITE(GEN7_L3CNTLREG1,
8688 GEN7_WA_FOR_GEN7_L3_CONTROL);
8689 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07008690 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008691 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07008692 I915_WRITE(GEN7_ROW_CHICKEN2,
8693 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008694 else {
8695 /* must write both registers */
8696 I915_WRITE(GEN7_ROW_CHICKEN2,
8697 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07008698 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
8699 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008700 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008701
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008702 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05008703 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8704 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8705
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02008706 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008707 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008708 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008709 */
8710 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02008711 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008712
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008713 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008714 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8715 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8716 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8717
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008718 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008719
8720 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02008721
Chris Wilson22721342014-03-04 09:41:43 +00008722 if (0) { /* causes HiZ corruption on ivb:gt1 */
8723 /* enable HiZ Raw Stall Optimization */
8724 I915_WRITE(CACHE_MODE_0_GEN7,
8725 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8726 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08008727
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008728 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02008729 I915_WRITE(CACHE_MODE_1,
8730 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07008731
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008732 /*
8733 * BSpec recommends 8x4 when MSAA is used,
8734 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008735 *
8736 * Note that PS/WM thread counts depend on the WIZ hashing
8737 * disable bit, which we don't touch here, but it's good
8738 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008739 */
8740 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008741 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008742
Ben Widawsky20848222012-05-04 18:58:59 -07008743 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
8744 snpcr &= ~GEN6_MBC_SNPCR_MASK;
8745 snpcr |= GEN6_MBC_SNPCR_MED;
8746 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008747
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01008748 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008749 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008750
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008751 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008752}
8753
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008754static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008755{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008756 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05008757 I915_WRITE(_3D_CHICKEN3,
8758 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8759
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008760 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008761 I915_WRITE(IVB_CHICKEN3,
8762 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8763 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8764
Ville Syrjäläfad7d362014-01-22 21:32:39 +02008765 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008766 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07008767 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08008768 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
8769 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008770
Akash Goel4e046322014-04-04 17:14:38 +05308771 /* WaDisable_RenderCache_OperationalFlush:vlv */
8772 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8773
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008774 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05008775 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8776 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8777
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008778 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07008779 I915_WRITE(GEN7_ROW_CHICKEN2,
8780 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8781
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008782 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008783 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8784 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8785 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8786
Ville Syrjälä46680e02014-01-22 21:33:01 +02008787 gen7_setup_fixed_func_scheduler(dev_priv);
8788
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008789 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008790 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008791 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008792 */
8793 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008794 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008795
Akash Goelc98f5062014-03-24 23:00:07 +05308796 /* WaDisableL3Bank2xClockGate:vlv
8797 * Disabling L3 clock gating- MMIO 940c[25] = 1
8798 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
8799 I915_WRITE(GEN7_UCGCTL4,
8800 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07008801
Ville Syrjäläafd58e72014-01-22 21:33:03 +02008802 /*
8803 * BSpec says this must be set, even though
8804 * WaDisable4x2SubspanOptimization isn't listed for VLV.
8805 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02008806 I915_WRITE(CACHE_MODE_1,
8807 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07008808
8809 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02008810 * BSpec recommends 8x4 when MSAA is used,
8811 * however in practice 16x4 seems fastest.
8812 *
8813 * Note that PS/WM thread counts depend on the WIZ hashing
8814 * disable bit, which we don't touch here, but it's good
8815 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8816 */
8817 I915_WRITE(GEN7_GT_MODE,
8818 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8819
8820 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02008821 * WaIncreaseL3CreditsForVLVB0:vlv
8822 * This is the hardware default actually.
8823 */
8824 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
8825
8826 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008827 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07008828 * Disable clock gating on th GCFG unit to prevent a delay
8829 * in the reporting of vblank events.
8830 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02008831 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008832}
8833
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008834static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008835{
Ville Syrjälä232ce332014-04-09 13:28:35 +03008836 /* WaVSRefCountFullforceMissDisable:chv */
8837 /* WaDSRefCountFullforceMissDisable:chv */
8838 I915_WRITE(GEN7_FF_THREAD_MODE,
8839 I915_READ(GEN7_FF_THREAD_MODE) &
8840 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03008841
8842 /* WaDisableSemaphoreAndSyncFlipWait:chv */
8843 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8844 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03008845
8846 /* WaDisableCSUnitClockGating:chv */
8847 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8848 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03008849
8850 /* WaDisableSDEUnitClockGating:chv */
8851 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8852 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008853
8854 /*
Imre Deak450174f2016-05-03 15:54:21 +03008855 * WaProgramL3SqcReg1Default:chv
8856 * See gfxspecs/Related Documents/Performance Guide/
8857 * LSQC Setting Recommendations.
8858 */
8859 gen8_set_l3sqc_credits(dev_priv, 38, 2);
8860
8861 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008862 * GTT cache may not work with big pages, so if those
8863 * are ever enabled GTT cache may need to be disabled.
8864 */
8865 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008866}
8867
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008868static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008869{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008870 uint32_t dspclk_gate;
8871
8872 I915_WRITE(RENCLK_GATE_D1, 0);
8873 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
8874 GS_UNIT_CLOCK_GATE_DISABLE |
8875 CL_UNIT_CLOCK_GATE_DISABLE);
8876 I915_WRITE(RAMCLK_GATE_D, 0);
8877 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
8878 OVRUNIT_CLOCK_GATE_DISABLE |
8879 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008880 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008881 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
8882 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02008883
8884 /* WaDisableRenderCachePipelinedFlush */
8885 I915_WRITE(CACHE_MODE_0,
8886 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03008887
Akash Goel4e046322014-04-04 17:14:38 +05308888 /* WaDisable_RenderCache_OperationalFlush:g4x */
8889 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8890
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008891 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008892}
8893
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008894static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008895{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008896 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
8897 I915_WRITE(RENCLK_GATE_D2, 0);
8898 I915_WRITE(DSPCLK_GATE_D, 0);
8899 I915_WRITE(RAMCLK_GATE_D, 0);
8900 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008901 I915_WRITE(MI_ARB_STATE,
8902 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308903
8904 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8905 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008906}
8907
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008908static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008909{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008910 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
8911 I965_RCC_CLOCK_GATE_DISABLE |
8912 I965_RCPB_CLOCK_GATE_DISABLE |
8913 I965_ISC_CLOCK_GATE_DISABLE |
8914 I965_FBC_CLOCK_GATE_DISABLE);
8915 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008916 I915_WRITE(MI_ARB_STATE,
8917 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308918
8919 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8920 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008921}
8922
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008923static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008924{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008925 u32 dstate = I915_READ(D_STATE);
8926
8927 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
8928 DSTATE_DOT_CLOCK_GATING;
8929 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01008930
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02008931 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01008932 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02008933
8934 /* IIR "flip pending" means done if this bit is set */
8935 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02008936
8937 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02008938 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02008939
8940 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
8941 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008942
8943 I915_WRITE(MI_ARB_STATE,
8944 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008945}
8946
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008947static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008948{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008949 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02008950
8951 /* interrupts should cause a wake up from C3 */
8952 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
8953 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008954
8955 I915_WRITE(MEM_MODE,
8956 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008957}
8958
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008959static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008960{
Ville Syrjälä10383922014-08-15 01:21:54 +03008961 I915_WRITE(MEM_MODE,
8962 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
8963 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008964}
8965
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008966void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008967{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008968 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008969}
8970
Ville Syrjälä712bf362016-10-31 22:37:23 +02008971void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008972{
Ville Syrjälä712bf362016-10-31 22:37:23 +02008973 if (HAS_PCH_LPT(dev_priv))
8974 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03008975}
8976
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008977static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02008978{
8979 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
8980}
8981
8982/**
8983 * intel_init_clock_gating_hooks - setup the clock gating hooks
8984 * @dev_priv: device private
8985 *
8986 * Setup the hooks that configure which clocks of a given platform can be
8987 * gated and also apply various GT and display specific workarounds for these
8988 * platforms. Note that some GT specific workarounds are applied separately
8989 * when GPU contexts or batchbuffers start their execution.
8990 */
8991void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
8992{
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008993 if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008994 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008995 else if (IS_COFFEELAKE(dev_priv))
8996 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008997 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008998 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008999 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009000 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009001 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02009002 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009003 else if (IS_GEMINILAKE(dev_priv))
9004 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009005 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009006 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009007 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009008 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009009 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009010 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009011 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009012 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009013 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009014 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009015 else if (IS_GEN6(dev_priv))
9016 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
9017 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009018 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009019 else if (IS_G4X(dev_priv))
9020 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009021 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009022 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009023 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009024 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009025 else if (IS_GEN3(dev_priv))
9026 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
9027 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
9028 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
9029 else if (IS_GEN2(dev_priv))
9030 dev_priv->display.init_clock_gating = i830_init_clock_gating;
9031 else {
9032 MISSING_CASE(INTEL_DEVID(dev_priv));
9033 dev_priv->display.init_clock_gating = nop_init_clock_gating;
9034 }
9035}
9036
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009037/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009038void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009039{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009040 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009041
Daniel Vetterc921aba2012-04-26 23:28:17 +02009042 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009043 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009044 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009045 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009046 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009047
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009048 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009049 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009050 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009051 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009052 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009053 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009054 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009055 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009056
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009057 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009058 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009059 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009060 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009061 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009062 dev_priv->display.compute_intermediate_wm =
9063 ilk_compute_intermediate_wm;
9064 dev_priv->display.initial_watermarks =
9065 ilk_initial_watermarks;
9066 dev_priv->display.optimize_watermarks =
9067 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009068 } else {
9069 DRM_DEBUG_KMS("Failed to read display plane latency. "
9070 "Disable CxSR\n");
9071 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009072 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009073 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009074 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009075 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009076 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009077 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009078 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009079 } else if (IS_G4X(dev_priv)) {
9080 g4x_setup_wm_latency(dev_priv);
9081 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9082 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9083 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9084 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009085 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009086 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009087 dev_priv->is_ddr3,
9088 dev_priv->fsb_freq,
9089 dev_priv->mem_freq)) {
9090 DRM_INFO("failed to find known CxSR latency "
9091 "(found ddr%s fsb freq %d, mem freq %d), "
9092 "disabling CxSR\n",
9093 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9094 dev_priv->fsb_freq, dev_priv->mem_freq);
9095 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009096 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009097 dev_priv->display.update_wm = NULL;
9098 } else
9099 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009100 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009101 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009102 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009103 dev_priv->display.update_wm = i9xx_update_wm;
9104 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009105 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009106 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009107 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009108 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009109 } else {
9110 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009111 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009112 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009113 } else {
9114 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009115 }
9116}
9117
Lyude87660502016-08-17 15:55:53 -04009118static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9119{
9120 uint32_t flags =
9121 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9122
9123 switch (flags) {
9124 case GEN6_PCODE_SUCCESS:
9125 return 0;
9126 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009127 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009128 case GEN6_PCODE_ILLEGAL_CMD:
9129 return -ENXIO;
9130 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009131 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009132 return -EOVERFLOW;
9133 case GEN6_PCODE_TIMEOUT:
9134 return -ETIMEDOUT;
9135 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009136 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009137 return 0;
9138 }
9139}
9140
9141static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9142{
9143 uint32_t flags =
9144 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9145
9146 switch (flags) {
9147 case GEN6_PCODE_SUCCESS:
9148 return 0;
9149 case GEN6_PCODE_ILLEGAL_CMD:
9150 return -ENXIO;
9151 case GEN7_PCODE_TIMEOUT:
9152 return -ETIMEDOUT;
9153 case GEN7_PCODE_ILLEGAL_DATA:
9154 return -EINVAL;
9155 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9156 return -EOVERFLOW;
9157 default:
9158 MISSING_CASE(flags);
9159 return 0;
9160 }
9161}
9162
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009163int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009164{
Lyude87660502016-08-17 15:55:53 -04009165 int status;
9166
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009167 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009168
Chris Wilson3f5582d2016-06-30 15:32:45 +01009169 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9170 * use te fw I915_READ variants to reduce the amount of work
9171 * required when reading/writing.
9172 */
9173
9174 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009175 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9176 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009177 return -EAGAIN;
9178 }
9179
Chris Wilson3f5582d2016-06-30 15:32:45 +01009180 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9181 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9182 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009183
Chris Wilsone09a3032017-04-11 11:13:39 +01009184 if (__intel_wait_for_register_fw(dev_priv,
9185 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9186 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009187 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9188 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009189 return -ETIMEDOUT;
9190 }
9191
Chris Wilson3f5582d2016-06-30 15:32:45 +01009192 *val = I915_READ_FW(GEN6_PCODE_DATA);
9193 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009194
Lyude87660502016-08-17 15:55:53 -04009195 if (INTEL_GEN(dev_priv) > 6)
9196 status = gen7_check_mailbox_status(dev_priv);
9197 else
9198 status = gen6_check_mailbox_status(dev_priv);
9199
9200 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009201 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9202 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009203 return status;
9204 }
9205
Ben Widawsky42c05262012-09-26 10:34:00 -07009206 return 0;
9207}
9208
Chris Wilson3f5582d2016-06-30 15:32:45 +01009209int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04009210 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009211{
Lyude87660502016-08-17 15:55:53 -04009212 int status;
9213
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009214 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009215
Chris Wilson3f5582d2016-06-30 15:32:45 +01009216 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9217 * use te fw I915_READ variants to reduce the amount of work
9218 * required when reading/writing.
9219 */
9220
9221 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009222 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9223 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009224 return -EAGAIN;
9225 }
9226
Chris Wilson3f5582d2016-06-30 15:32:45 +01009227 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009228 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009229 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009230
Chris Wilsone09a3032017-04-11 11:13:39 +01009231 if (__intel_wait_for_register_fw(dev_priv,
9232 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9233 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009234 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9235 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009236 return -ETIMEDOUT;
9237 }
9238
Chris Wilson3f5582d2016-06-30 15:32:45 +01009239 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009240
Lyude87660502016-08-17 15:55:53 -04009241 if (INTEL_GEN(dev_priv) > 6)
9242 status = gen7_check_mailbox_status(dev_priv);
9243 else
9244 status = gen6_check_mailbox_status(dev_priv);
9245
9246 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009247 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9248 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009249 return status;
9250 }
9251
Ben Widawsky42c05262012-09-26 10:34:00 -07009252 return 0;
9253}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009254
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009255static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9256 u32 request, u32 reply_mask, u32 reply,
9257 u32 *status)
9258{
9259 u32 val = request;
9260
9261 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9262
9263 return *status || ((val & reply_mask) == reply);
9264}
9265
9266/**
9267 * skl_pcode_request - send PCODE request until acknowledgment
9268 * @dev_priv: device private
9269 * @mbox: PCODE mailbox ID the request is targeted for
9270 * @request: request ID
9271 * @reply_mask: mask used to check for request acknowledgment
9272 * @reply: value used to check for request acknowledgment
9273 * @timeout_base_ms: timeout for polling with preemption enabled
9274 *
9275 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009276 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009277 * The request is acknowledged once the PCODE reply dword equals @reply after
9278 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009279 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009280 * preemption disabled.
9281 *
9282 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9283 * other error as reported by PCODE.
9284 */
9285int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9286 u32 reply_mask, u32 reply, int timeout_base_ms)
9287{
9288 u32 status;
9289 int ret;
9290
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009291 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009292
9293#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9294 &status)
9295
9296 /*
9297 * Prime the PCODE by doing a request first. Normally it guarantees
9298 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9299 * _wait_for() doesn't guarantee when its passed condition is evaluated
9300 * first, so send the first request explicitly.
9301 */
9302 if (COND) {
9303 ret = 0;
9304 goto out;
9305 }
9306 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
9307 if (!ret)
9308 goto out;
9309
9310 /*
9311 * The above can time out if the number of requests was low (2 in the
9312 * worst case) _and_ PCODE was busy for some reason even after a
9313 * (queued) request and @timeout_base_ms delay. As a workaround retry
9314 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009315 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009316 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009317 * requests, and for any quirks of the PCODE firmware that delays
9318 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009319 */
9320 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9321 WARN_ON_ONCE(timeout_base_ms > 3);
9322 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009323 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009324 preempt_enable();
9325
9326out:
9327 return ret ? ret : status;
9328#undef COND
9329}
9330
Ville Syrjälädd06f882014-11-10 22:55:12 +02009331static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9332{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009333 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9334
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009335 /*
9336 * N = val - 0xb7
9337 * Slow = Fast = GPLL ref * N
9338 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009339 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009340}
9341
Fengguang Wub55dd642014-07-12 11:21:39 +02009342static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009343{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009344 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9345
9346 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009347}
9348
Fengguang Wub55dd642014-07-12 11:21:39 +02009349static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309350{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009351 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9352
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009353 /*
9354 * N = val / 2
9355 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9356 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009357 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309358}
9359
Fengguang Wub55dd642014-07-12 11:21:39 +02009360static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309361{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009362 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9363
Ville Syrjälä1c147622014-08-18 14:42:43 +03009364 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009365 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309366}
9367
Ville Syrjälä616bc822015-01-23 21:04:25 +02009368int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9369{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009370 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009371 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9372 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009373 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009374 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009375 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009376 return byt_gpu_freq(dev_priv, val);
9377 else
9378 return val * GT_FREQUENCY_MULTIPLIER;
9379}
9380
Ville Syrjälä616bc822015-01-23 21:04:25 +02009381int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9382{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009383 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009384 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9385 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009386 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009387 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009388 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009389 return byt_freq_opcode(dev_priv, val);
9390 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009391 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309392}
9393
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009394void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009395{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009396 mutex_init(&dev_priv->pcu_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01009397
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009398 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009399
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009400 dev_priv->runtime_pm.suspended = false;
9401 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009402}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009403
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009404static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9405 const i915_reg_t reg)
9406{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009407 u32 lower, upper, tmp;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009408 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009409
9410 /* The register accessed do not need forcewake. We borrow
9411 * uncore lock to prevent concurrent access to range reg.
9412 */
9413 spin_lock_irq(&dev_priv->uncore.lock);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009414
9415 /* vlv and chv residency counters are 40 bits in width.
9416 * With a control bit, we can choose between upper or lower
9417 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009418 *
9419 * Although we always use the counter in high-range mode elsewhere,
9420 * userspace may attempt to read the value before rc6 is initialised,
9421 * before we have set the default VLV_COUNTER_CONTROL value. So always
9422 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009423 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009424 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9425 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009426 upper = I915_READ_FW(reg);
9427 do {
9428 tmp = upper;
9429
9430 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9431 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9432 lower = I915_READ_FW(reg);
9433
9434 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9435 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9436 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009437 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009438
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009439 /* Everywhere else we always use VLV_COUNTER_CONTROL with the
9440 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9441 * now.
9442 */
9443
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009444 spin_unlock_irq(&dev_priv->uncore.lock);
9445
9446 return lower | (u64)upper << 8;
9447}
9448
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009449u64 intel_rc6_residency_us(struct drm_i915_private *dev_priv,
9450 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009451{
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009452 u64 time_hw, units, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009453
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01009454 if (!intel_rc6_enabled())
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009455 return 0;
9456
9457 intel_runtime_pm_get(dev_priv);
9458
9459 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9460 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009461 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009462 div = dev_priv->czclk_freq;
9463
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009464 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009465 } else if (IS_GEN9_LP(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009466 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009467 div = 1200; /* 833.33ns */
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009468
9469 time_hw = I915_READ(reg);
9470 } else {
9471 units = 128000; /* 1.28us */
9472 div = 100000;
9473
9474 time_hw = I915_READ(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009475 }
9476
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009477 intel_runtime_pm_put(dev_priv);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009478 return DIV_ROUND_UP_ULL(time_hw * units, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009479}