]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_pm.c
drm/i915: Enhancing eDP DRRS debug message
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / intel_pm.c
CommitLineData
85208be0
ED
1/*
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
2b4e57bd 28#include <linux/cpufreq.h>
85208be0
ED
29#include "i915_drv.h"
30#include "intel_drv.h"
eb48eb00
DV
31#include "../../../platform/x86/intel_ips.h"
32#include <linux/module.h>
85208be0 33
dc39fff7
BW
34/**
35 * RC6 is a special power stage which allows the GPU to enter an very
36 * low-voltage mode when idle, using down to 0V while at this stage. This
37 * stage is entered automatically when the GPU is idle when RC6 support is
38 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
39 *
40 * There are different RC6 modes available in Intel GPU, which differentiate
41 * among each other with the latency required to enter and leave RC6 and
42 * voltage consumed by the GPU in different states.
43 *
44 * The combination of the following flags define which states GPU is allowed
45 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
46 * RC6pp is deepest RC6. Their support by hardware varies according to the
47 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
48 * which brings the most power savings; deeper states save more power, but
49 * require higher latency to switch to and wake up.
50 */
51#define INTEL_RC6_ENABLE (1<<0)
52#define INTEL_RC6p_ENABLE (1<<1)
53#define INTEL_RC6pp_ENABLE (1<<2)
54
77719d28
DL
55static void gen9_init_clock_gating(struct drm_device *dev)
56{
57 struct drm_i915_private *dev_priv = dev->dev_private;
58
59 /* WaEnableLbsSlaRetryTimerDecrement:skl */
60 I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) |
61 GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE);
62}
63
45db2194 64static void skl_init_clock_gating(struct drm_device *dev)
da2078cd 65{
acd5c346
DL
66 struct drm_i915_private *dev_priv = dev->dev_private;
67
77719d28
DL
68 gen9_init_clock_gating(dev);
69
3dcd020a
HN
70 if (INTEL_REVID(dev) == SKL_REVID_A0) {
71 /*
72 * WaDisableSDEUnitClockGating:skl
9253c2e5 73 * WaSetGAPSunitClckGateDisable:skl
3dcd020a
HN
74 */
75 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
9253c2e5 76 GEN8_GAPSUNIT_CLOCK_GATE_DISABLE |
3dcd020a
HN
77 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
78 }
8bc0ccf6 79
2caa3b26 80 if (INTEL_REVID(dev) <= SKL_REVID_D0) {
81e231af
DL
81 /* WaDisableHDCInvalidation:skl */
82 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
83 BDW_DISABLE_HDC_INVALIDATION);
84
2caa3b26
DL
85 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
86 I915_WRITE(FF_SLICE_CS_CHICKEN2,
87 I915_READ(FF_SLICE_CS_CHICKEN2) |
88 GEN9_TSG_BARRIER_ACK_DISABLE);
89 }
81e231af 90
8bc0ccf6
DL
91 if (INTEL_REVID(dev) <= SKL_REVID_E0)
92 /* WaDisableLSQCROPERFforOCL:skl */
93 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
94 GEN8_LQSC_RO_PERF_DIS);
da2078cd
DL
95}
96
c921aba8
DV
97static void i915_pineview_get_mem_freq(struct drm_device *dev)
98{
50227e1c 99 struct drm_i915_private *dev_priv = dev->dev_private;
c921aba8
DV
100 u32 tmp;
101
102 tmp = I915_READ(CLKCFG);
103
104 switch (tmp & CLKCFG_FSB_MASK) {
105 case CLKCFG_FSB_533:
106 dev_priv->fsb_freq = 533; /* 133*4 */
107 break;
108 case CLKCFG_FSB_800:
109 dev_priv->fsb_freq = 800; /* 200*4 */
110 break;
111 case CLKCFG_FSB_667:
112 dev_priv->fsb_freq = 667; /* 167*4 */
113 break;
114 case CLKCFG_FSB_400:
115 dev_priv->fsb_freq = 400; /* 100*4 */
116 break;
117 }
118
119 switch (tmp & CLKCFG_MEM_MASK) {
120 case CLKCFG_MEM_533:
121 dev_priv->mem_freq = 533;
122 break;
123 case CLKCFG_MEM_667:
124 dev_priv->mem_freq = 667;
125 break;
126 case CLKCFG_MEM_800:
127 dev_priv->mem_freq = 800;
128 break;
129 }
130
131 /* detect pineview DDR3 setting */
132 tmp = I915_READ(CSHRDDR3CTL);
133 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
134}
135
136static void i915_ironlake_get_mem_freq(struct drm_device *dev)
137{
50227e1c 138 struct drm_i915_private *dev_priv = dev->dev_private;
c921aba8
DV
139 u16 ddrpll, csipll;
140
141 ddrpll = I915_READ16(DDRMPLL1);
142 csipll = I915_READ16(CSIPLL0);
143
144 switch (ddrpll & 0xff) {
145 case 0xc:
146 dev_priv->mem_freq = 800;
147 break;
148 case 0x10:
149 dev_priv->mem_freq = 1066;
150 break;
151 case 0x14:
152 dev_priv->mem_freq = 1333;
153 break;
154 case 0x18:
155 dev_priv->mem_freq = 1600;
156 break;
157 default:
158 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
159 ddrpll & 0xff);
160 dev_priv->mem_freq = 0;
161 break;
162 }
163
20e4d407 164 dev_priv->ips.r_t = dev_priv->mem_freq;
c921aba8
DV
165
166 switch (csipll & 0x3ff) {
167 case 0x00c:
168 dev_priv->fsb_freq = 3200;
169 break;
170 case 0x00e:
171 dev_priv->fsb_freq = 3733;
172 break;
173 case 0x010:
174 dev_priv->fsb_freq = 4266;
175 break;
176 case 0x012:
177 dev_priv->fsb_freq = 4800;
178 break;
179 case 0x014:
180 dev_priv->fsb_freq = 5333;
181 break;
182 case 0x016:
183 dev_priv->fsb_freq = 5866;
184 break;
185 case 0x018:
186 dev_priv->fsb_freq = 6400;
187 break;
188 default:
189 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
190 csipll & 0x3ff);
191 dev_priv->fsb_freq = 0;
192 break;
193 }
194
195 if (dev_priv->fsb_freq == 3200) {
20e4d407 196 dev_priv->ips.c_m = 0;
c921aba8 197 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
20e4d407 198 dev_priv->ips.c_m = 1;
c921aba8 199 } else {
20e4d407 200 dev_priv->ips.c_m = 2;
c921aba8
DV
201 }
202}
203
b445e3b0
ED
204static const struct cxsr_latency cxsr_latency_table[] = {
205 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
206 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
207 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
208 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
209 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
210
211 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
212 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
213 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
214 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
215 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
216
217 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
218 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
219 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
220 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
221 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
222
223 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
224 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
225 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
226 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
227 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
228
229 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
230 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
231 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
232 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
233 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
234
235 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
236 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
237 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
238 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
239 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
240};
241
63c62275 242static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
b445e3b0
ED
243 int is_ddr3,
244 int fsb,
245 int mem)
246{
247 const struct cxsr_latency *latency;
248 int i;
249
250 if (fsb == 0 || mem == 0)
251 return NULL;
252
253 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
254 latency = &cxsr_latency_table[i];
255 if (is_desktop == latency->is_desktop &&
256 is_ddr3 == latency->is_ddr3 &&
257 fsb == latency->fsb_freq && mem == latency->mem_freq)
258 return latency;
259 }
260
261 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
262
263 return NULL;
264}
265
5209b1f4 266void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
b445e3b0 267{
5209b1f4
ID
268 struct drm_device *dev = dev_priv->dev;
269 u32 val;
b445e3b0 270
5209b1f4
ID
271 if (IS_VALLEYVIEW(dev)) {
272 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
273 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
274 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
275 } else if (IS_PINEVIEW(dev)) {
276 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
277 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
278 I915_WRITE(DSPFW3, val);
279 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
280 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
281 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
282 I915_WRITE(FW_BLC_SELF, val);
283 } else if (IS_I915GM(dev)) {
284 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
285 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
286 I915_WRITE(INSTPM, val);
287 } else {
288 return;
289 }
b445e3b0 290
5209b1f4
ID
291 DRM_DEBUG_KMS("memory self-refresh is %s\n",
292 enable ? "enabled" : "disabled");
b445e3b0
ED
293}
294
295/*
296 * Latency for FIFO fetches is dependent on several factors:
297 * - memory configuration (speed, channels)
298 * - chipset
299 * - current MCH state
300 * It can be fairly high in some situations, so here we assume a fairly
301 * pessimal value. It's a tradeoff between extra memory fetches (if we
302 * set this value too high, the FIFO will fetch frequently to stay full)
303 * and power consumption (set it too low to save power and we might see
304 * FIFO underruns and display "flicker").
305 *
306 * A value of 5us seems to be a good balance; safe for very low end
307 * platforms but not overly aggressive on lower latency configs.
308 */
5aef6003 309static const int pessimal_latency_ns = 5000;
b445e3b0 310
1fa61106 311static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
b445e3b0
ED
312{
313 struct drm_i915_private *dev_priv = dev->dev_private;
314 uint32_t dsparb = I915_READ(DSPARB);
315 int size;
316
317 size = dsparb & 0x7f;
318 if (plane)
319 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
320
321 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
322 plane ? "B" : "A", size);
323
324 return size;
325}
326
feb56b93 327static int i830_get_fifo_size(struct drm_device *dev, int plane)
b445e3b0
ED
328{
329 struct drm_i915_private *dev_priv = dev->dev_private;
330 uint32_t dsparb = I915_READ(DSPARB);
331 int size;
332
333 size = dsparb & 0x1ff;
334 if (plane)
335 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
336 size >>= 1; /* Convert to cachelines */
337
338 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
339 plane ? "B" : "A", size);
340
341 return size;
342}
343
1fa61106 344static int i845_get_fifo_size(struct drm_device *dev, int plane)
b445e3b0
ED
345{
346 struct drm_i915_private *dev_priv = dev->dev_private;
347 uint32_t dsparb = I915_READ(DSPARB);
348 int size;
349
350 size = dsparb & 0x7f;
351 size >>= 2; /* Convert to cachelines */
352
353 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
354 plane ? "B" : "A",
355 size);
356
357 return size;
358}
359
b445e3b0
ED
360/* Pineview has different values for various configs */
361static const struct intel_watermark_params pineview_display_wm = {
e0f0273e
VS
362 .fifo_size = PINEVIEW_DISPLAY_FIFO,
363 .max_wm = PINEVIEW_MAX_WM,
364 .default_wm = PINEVIEW_DFT_WM,
365 .guard_size = PINEVIEW_GUARD_WM,
366 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
b445e3b0
ED
367};
368static const struct intel_watermark_params pineview_display_hplloff_wm = {
e0f0273e
VS
369 .fifo_size = PINEVIEW_DISPLAY_FIFO,
370 .max_wm = PINEVIEW_MAX_WM,
371 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
372 .guard_size = PINEVIEW_GUARD_WM,
373 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
b445e3b0
ED
374};
375static const struct intel_watermark_params pineview_cursor_wm = {
e0f0273e
VS
376 .fifo_size = PINEVIEW_CURSOR_FIFO,
377 .max_wm = PINEVIEW_CURSOR_MAX_WM,
378 .default_wm = PINEVIEW_CURSOR_DFT_WM,
379 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
380 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
b445e3b0
ED
381};
382static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
e0f0273e
VS
383 .fifo_size = PINEVIEW_CURSOR_FIFO,
384 .max_wm = PINEVIEW_CURSOR_MAX_WM,
385 .default_wm = PINEVIEW_CURSOR_DFT_WM,
386 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
387 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
b445e3b0
ED
388};
389static const struct intel_watermark_params g4x_wm_info = {
e0f0273e
VS
390 .fifo_size = G4X_FIFO_SIZE,
391 .max_wm = G4X_MAX_WM,
392 .default_wm = G4X_MAX_WM,
393 .guard_size = 2,
394 .cacheline_size = G4X_FIFO_LINE_SIZE,
b445e3b0
ED
395};
396static const struct intel_watermark_params g4x_cursor_wm_info = {
e0f0273e
VS
397 .fifo_size = I965_CURSOR_FIFO,
398 .max_wm = I965_CURSOR_MAX_WM,
399 .default_wm = I965_CURSOR_DFT_WM,
400 .guard_size = 2,
401 .cacheline_size = G4X_FIFO_LINE_SIZE,
b445e3b0
ED
402};
403static const struct intel_watermark_params valleyview_wm_info = {
e0f0273e
VS
404 .fifo_size = VALLEYVIEW_FIFO_SIZE,
405 .max_wm = VALLEYVIEW_MAX_WM,
406 .default_wm = VALLEYVIEW_MAX_WM,
407 .guard_size = 2,
408 .cacheline_size = G4X_FIFO_LINE_SIZE,
b445e3b0
ED
409};
410static const struct intel_watermark_params valleyview_cursor_wm_info = {
e0f0273e
VS
411 .fifo_size = I965_CURSOR_FIFO,
412 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
413 .default_wm = I965_CURSOR_DFT_WM,
414 .guard_size = 2,
415 .cacheline_size = G4X_FIFO_LINE_SIZE,
b445e3b0
ED
416};
417static const struct intel_watermark_params i965_cursor_wm_info = {
e0f0273e
VS
418 .fifo_size = I965_CURSOR_FIFO,
419 .max_wm = I965_CURSOR_MAX_WM,
420 .default_wm = I965_CURSOR_DFT_WM,
421 .guard_size = 2,
422 .cacheline_size = I915_FIFO_LINE_SIZE,
b445e3b0
ED
423};
424static const struct intel_watermark_params i945_wm_info = {
e0f0273e
VS
425 .fifo_size = I945_FIFO_SIZE,
426 .max_wm = I915_MAX_WM,
427 .default_wm = 1,
428 .guard_size = 2,
429 .cacheline_size = I915_FIFO_LINE_SIZE,
b445e3b0
ED
430};
431static const struct intel_watermark_params i915_wm_info = {
e0f0273e
VS
432 .fifo_size = I915_FIFO_SIZE,
433 .max_wm = I915_MAX_WM,
434 .default_wm = 1,
435 .guard_size = 2,
436 .cacheline_size = I915_FIFO_LINE_SIZE,
b445e3b0 437};
9d539105 438static const struct intel_watermark_params i830_a_wm_info = {
e0f0273e
VS
439 .fifo_size = I855GM_FIFO_SIZE,
440 .max_wm = I915_MAX_WM,
441 .default_wm = 1,
442 .guard_size = 2,
443 .cacheline_size = I830_FIFO_LINE_SIZE,
b445e3b0 444};
9d539105
VS
445static const struct intel_watermark_params i830_bc_wm_info = {
446 .fifo_size = I855GM_FIFO_SIZE,
447 .max_wm = I915_MAX_WM/2,
448 .default_wm = 1,
449 .guard_size = 2,
450 .cacheline_size = I830_FIFO_LINE_SIZE,
451};
feb56b93 452static const struct intel_watermark_params i845_wm_info = {
e0f0273e
VS
453 .fifo_size = I830_FIFO_SIZE,
454 .max_wm = I915_MAX_WM,
455 .default_wm = 1,
456 .guard_size = 2,
457 .cacheline_size = I830_FIFO_LINE_SIZE,
b445e3b0
ED
458};
459
b445e3b0
ED
460/**
461 * intel_calculate_wm - calculate watermark level
462 * @clock_in_khz: pixel clock
463 * @wm: chip FIFO params
464 * @pixel_size: display pixel size
465 * @latency_ns: memory latency for the platform
466 *
467 * Calculate the watermark level (the level at which the display plane will
468 * start fetching from memory again). Each chip has a different display
469 * FIFO size and allocation, so the caller needs to figure that out and pass
470 * in the correct intel_watermark_params structure.
471 *
472 * As the pixel clock runs, the FIFO will be drained at a rate that depends
473 * on the pixel size. When it reaches the watermark level, it'll start
474 * fetching FIFO line sized based chunks from memory until the FIFO fills
475 * past the watermark point. If the FIFO drains completely, a FIFO underrun
476 * will occur, and a display engine hang could result.
477 */
478static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
479 const struct intel_watermark_params *wm,
480 int fifo_size,
481 int pixel_size,
482 unsigned long latency_ns)
483{
484 long entries_required, wm_size;
485
486 /*
487 * Note: we need to make sure we don't overflow for various clock &
488 * latency values.
489 * clocks go from a few thousand to several hundred thousand.
490 * latency is usually a few thousand
491 */
492 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
493 1000;
494 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
495
496 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
497
498 wm_size = fifo_size - (entries_required + wm->guard_size);
499
500 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
501
502 /* Don't promote wm_size to unsigned... */
503 if (wm_size > (long)wm->max_wm)
504 wm_size = wm->max_wm;
505 if (wm_size <= 0)
506 wm_size = wm->default_wm;
d6feb196
VS
507
508 /*
509 * Bspec seems to indicate that the value shouldn't be lower than
510 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
511 * Lets go for 8 which is the burst size since certain platforms
512 * already use a hardcoded 8 (which is what the spec says should be
513 * done).
514 */
515 if (wm_size <= 8)
516 wm_size = 8;
517
b445e3b0
ED
518 return wm_size;
519}
520
521static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
522{
523 struct drm_crtc *crtc, *enabled = NULL;
524
70e1e0ec 525 for_each_crtc(dev, crtc) {
3490ea5d 526 if (intel_crtc_active(crtc)) {
b445e3b0
ED
527 if (enabled)
528 return NULL;
529 enabled = crtc;
530 }
531 }
532
533 return enabled;
534}
535
46ba614c 536static void pineview_update_wm(struct drm_crtc *unused_crtc)
b445e3b0 537{
46ba614c 538 struct drm_device *dev = unused_crtc->dev;
b445e3b0
ED
539 struct drm_i915_private *dev_priv = dev->dev_private;
540 struct drm_crtc *crtc;
541 const struct cxsr_latency *latency;
542 u32 reg;
543 unsigned long wm;
544
545 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
546 dev_priv->fsb_freq, dev_priv->mem_freq);
547 if (!latency) {
548 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
5209b1f4 549 intel_set_memory_cxsr(dev_priv, false);
b445e3b0
ED
550 return;
551 }
552
553 crtc = single_enabled_crtc(dev);
554 if (crtc) {
241bfc38 555 const struct drm_display_mode *adjusted_mode;
f4510a27 556 int pixel_size = crtc->primary->fb->bits_per_pixel / 8;
241bfc38
DL
557 int clock;
558
6e3c9717 559 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 560 clock = adjusted_mode->crtc_clock;
b445e3b0
ED
561
562 /* Display SR */
563 wm = intel_calculate_wm(clock, &pineview_display_wm,
564 pineview_display_wm.fifo_size,
565 pixel_size, latency->display_sr);
566 reg = I915_READ(DSPFW1);
567 reg &= ~DSPFW_SR_MASK;
568 reg |= wm << DSPFW_SR_SHIFT;
569 I915_WRITE(DSPFW1, reg);
570 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
571
572 /* cursor SR */
573 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
574 pineview_display_wm.fifo_size,
575 pixel_size, latency->cursor_sr);
576 reg = I915_READ(DSPFW3);
577 reg &= ~DSPFW_CURSOR_SR_MASK;
578 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
579 I915_WRITE(DSPFW3, reg);
580
581 /* Display HPLL off SR */
582 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
583 pineview_display_hplloff_wm.fifo_size,
584 pixel_size, latency->display_hpll_disable);
585 reg = I915_READ(DSPFW3);
586 reg &= ~DSPFW_HPLL_SR_MASK;
587 reg |= wm & DSPFW_HPLL_SR_MASK;
588 I915_WRITE(DSPFW3, reg);
589
590 /* cursor HPLL off SR */
591 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
592 pineview_display_hplloff_wm.fifo_size,
593 pixel_size, latency->cursor_hpll_disable);
594 reg = I915_READ(DSPFW3);
595 reg &= ~DSPFW_HPLL_CURSOR_MASK;
596 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
597 I915_WRITE(DSPFW3, reg);
598 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
599
5209b1f4 600 intel_set_memory_cxsr(dev_priv, true);
b445e3b0 601 } else {
5209b1f4 602 intel_set_memory_cxsr(dev_priv, false);
b445e3b0
ED
603 }
604}
605
606static bool g4x_compute_wm0(struct drm_device *dev,
607 int plane,
608 const struct intel_watermark_params *display,
609 int display_latency_ns,
610 const struct intel_watermark_params *cursor,
611 int cursor_latency_ns,
612 int *plane_wm,
613 int *cursor_wm)
614{
615 struct drm_crtc *crtc;
4fe8590a 616 const struct drm_display_mode *adjusted_mode;
b445e3b0
ED
617 int htotal, hdisplay, clock, pixel_size;
618 int line_time_us, line_count;
619 int entries, tlb_miss;
620
621 crtc = intel_get_crtc_for_plane(dev, plane);
3490ea5d 622 if (!intel_crtc_active(crtc)) {
b445e3b0
ED
623 *cursor_wm = cursor->guard_size;
624 *plane_wm = display->guard_size;
625 return false;
626 }
627
6e3c9717 628 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 629 clock = adjusted_mode->crtc_clock;
fec8cba3 630 htotal = adjusted_mode->crtc_htotal;
6e3c9717 631 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
f4510a27 632 pixel_size = crtc->primary->fb->bits_per_pixel / 8;
b445e3b0
ED
633
634 /* Use the small buffer method to calculate plane watermark */
635 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
636 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
637 if (tlb_miss > 0)
638 entries += tlb_miss;
639 entries = DIV_ROUND_UP(entries, display->cacheline_size);
640 *plane_wm = entries + display->guard_size;
641 if (*plane_wm > (int)display->max_wm)
642 *plane_wm = display->max_wm;
643
644 /* Use the large buffer method to calculate cursor watermark */
922044c9 645 line_time_us = max(htotal * 1000 / clock, 1);
b445e3b0 646 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
7bb836dd 647 entries = line_count * to_intel_crtc(crtc)->cursor_width * pixel_size;
b445e3b0
ED
648 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
649 if (tlb_miss > 0)
650 entries += tlb_miss;
651 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
652 *cursor_wm = entries + cursor->guard_size;
653 if (*cursor_wm > (int)cursor->max_wm)
654 *cursor_wm = (int)cursor->max_wm;
655
656 return true;
657}
658
659/*
660 * Check the wm result.
661 *
662 * If any calculated watermark values is larger than the maximum value that
663 * can be programmed into the associated watermark register, that watermark
664 * must be disabled.
665 */
666static bool g4x_check_srwm(struct drm_device *dev,
667 int display_wm, int cursor_wm,
668 const struct intel_watermark_params *display,
669 const struct intel_watermark_params *cursor)
670{
671 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
672 display_wm, cursor_wm);
673
674 if (display_wm > display->max_wm) {
675 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
676 display_wm, display->max_wm);
677 return false;
678 }
679
680 if (cursor_wm > cursor->max_wm) {
681 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
682 cursor_wm, cursor->max_wm);
683 return false;
684 }
685
686 if (!(display_wm || cursor_wm)) {
687 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
688 return false;
689 }
690
691 return true;
692}
693
694static bool g4x_compute_srwm(struct drm_device *dev,
695 int plane,
696 int latency_ns,
697 const struct intel_watermark_params *display,
698 const struct intel_watermark_params *cursor,
699 int *display_wm, int *cursor_wm)
700{
701 struct drm_crtc *crtc;
4fe8590a 702 const struct drm_display_mode *adjusted_mode;
b445e3b0
ED
703 int hdisplay, htotal, pixel_size, clock;
704 unsigned long line_time_us;
705 int line_count, line_size;
706 int small, large;
707 int entries;
708
709 if (!latency_ns) {
710 *display_wm = *cursor_wm = 0;
711 return false;
712 }
713
714 crtc = intel_get_crtc_for_plane(dev, plane);
6e3c9717 715 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 716 clock = adjusted_mode->crtc_clock;
fec8cba3 717 htotal = adjusted_mode->crtc_htotal;
6e3c9717 718 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
f4510a27 719 pixel_size = crtc->primary->fb->bits_per_pixel / 8;
b445e3b0 720
922044c9 721 line_time_us = max(htotal * 1000 / clock, 1);
b445e3b0
ED
722 line_count = (latency_ns / line_time_us + 1000) / 1000;
723 line_size = hdisplay * pixel_size;
724
725 /* Use the minimum of the small and large buffer method for primary */
726 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
727 large = line_count * line_size;
728
729 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
730 *display_wm = entries + display->guard_size;
731
732 /* calculate the self-refresh watermark for display cursor */
7bb836dd 733 entries = line_count * pixel_size * to_intel_crtc(crtc)->cursor_width;
b445e3b0
ED
734 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
735 *cursor_wm = entries + cursor->guard_size;
736
737 return g4x_check_srwm(dev,
738 *display_wm, *cursor_wm,
739 display, cursor);
740}
741
0948c265
GB
742static bool vlv_compute_drain_latency(struct drm_crtc *crtc,
743 int pixel_size,
744 int *prec_mult,
745 int *drain_latency)
b445e3b0 746{
5e56ba45 747 struct drm_device *dev = crtc->dev;
b445e3b0 748 int entries;
6e3c9717 749 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
b445e3b0 750
0948c265 751 if (WARN(clock == 0, "Pixel clock is zero!\n"))
b445e3b0
ED
752 return false;
753
0948c265
GB
754 if (WARN(pixel_size == 0, "Pixel size is zero!\n"))
755 return false;
b445e3b0 756
a398e9c7 757 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
5e56ba45
RV
758 if (IS_CHERRYVIEW(dev))
759 *prec_mult = (entries > 128) ? DRAIN_LATENCY_PRECISION_32 :
760 DRAIN_LATENCY_PRECISION_16;
761 else
762 *prec_mult = (entries > 128) ? DRAIN_LATENCY_PRECISION_64 :
763 DRAIN_LATENCY_PRECISION_32;
0948c265 764 *drain_latency = (64 * (*prec_mult) * 4) / entries;
b445e3b0 765
a398e9c7
GB
766 if (*drain_latency > DRAIN_LATENCY_MASK)
767 *drain_latency = DRAIN_LATENCY_MASK;
b445e3b0
ED
768
769 return true;
770}
771
772/*
773 * Update drain latency registers of memory arbiter
774 *
775 * Valleyview SoC has a new memory arbiter and needs drain latency registers
776 * to be programmed. Each plane has a drain latency multiplier and a drain
777 * latency value.
778 */
779
41aad816 780static void vlv_update_drain_latency(struct drm_crtc *crtc)
b445e3b0 781{
5e56ba45
RV
782 struct drm_device *dev = crtc->dev;
783 struct drm_i915_private *dev_priv = dev->dev_private;
0948c265
GB
784 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
785 int pixel_size;
786 int drain_latency;
787 enum pipe pipe = intel_crtc->pipe;
788 int plane_prec, prec_mult, plane_dl;
5e56ba45
RV
789 const int high_precision = IS_CHERRYVIEW(dev) ?
790 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_64;
b445e3b0 791
5e56ba45
RV
792 plane_dl = I915_READ(VLV_DDL(pipe)) & ~(DDL_PLANE_PRECISION_HIGH |
793 DRAIN_LATENCY_MASK | DDL_CURSOR_PRECISION_HIGH |
0948c265
GB
794 (DRAIN_LATENCY_MASK << DDL_CURSOR_SHIFT));
795
796 if (!intel_crtc_active(crtc)) {
797 I915_WRITE(VLV_DDL(pipe), plane_dl);
798 return;
799 }
b445e3b0 800
0948c265
GB
801 /* Primary plane Drain Latency */
802 pixel_size = crtc->primary->fb->bits_per_pixel / 8; /* BPP */
803 if (vlv_compute_drain_latency(crtc, pixel_size, &prec_mult, &drain_latency)) {
5e56ba45
RV
804 plane_prec = (prec_mult == high_precision) ?
805 DDL_PLANE_PRECISION_HIGH :
806 DDL_PLANE_PRECISION_LOW;
0948c265 807 plane_dl |= plane_prec | drain_latency;
b445e3b0
ED
808 }
809
0948c265
GB
810 /* Cursor Drain Latency
811 * BPP is always 4 for cursor
812 */
813 pixel_size = 4;
b445e3b0 814
0948c265
GB
815 /* Program cursor DL only if it is enabled */
816 if (intel_crtc->cursor_base &&
817 vlv_compute_drain_latency(crtc, pixel_size, &prec_mult, &drain_latency)) {
5e56ba45
RV
818 plane_prec = (prec_mult == high_precision) ?
819 DDL_CURSOR_PRECISION_HIGH :
820 DDL_CURSOR_PRECISION_LOW;
0948c265 821 plane_dl |= plane_prec | (drain_latency << DDL_CURSOR_SHIFT);
b445e3b0 822 }
0948c265
GB
823
824 I915_WRITE(VLV_DDL(pipe), plane_dl);
b445e3b0
ED
825}
826
827#define single_plane_enabled(mask) is_power_of_2(mask)
828
46ba614c 829static void valleyview_update_wm(struct drm_crtc *crtc)
b445e3b0 830{
46ba614c 831 struct drm_device *dev = crtc->dev;
b445e3b0
ED
832 static const int sr_latency_ns = 12000;
833 struct drm_i915_private *dev_priv = dev->dev_private;
834 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
835 int plane_sr, cursor_sr;
af6c4575 836 int ignore_plane_sr, ignore_cursor_sr;
b445e3b0 837 unsigned int enabled = 0;
9858425c 838 bool cxsr_enabled;
b445e3b0 839
41aad816 840 vlv_update_drain_latency(crtc);
b445e3b0 841
51cea1f4 842 if (g4x_compute_wm0(dev, PIPE_A,
5aef6003
CW
843 &valleyview_wm_info, pessimal_latency_ns,
844 &valleyview_cursor_wm_info, pessimal_latency_ns,
b445e3b0 845 &planea_wm, &cursora_wm))
51cea1f4 846 enabled |= 1 << PIPE_A;
b445e3b0 847
51cea1f4 848 if (g4x_compute_wm0(dev, PIPE_B,
5aef6003
CW
849 &valleyview_wm_info, pessimal_latency_ns,
850 &valleyview_cursor_wm_info, pessimal_latency_ns,
b445e3b0 851 &planeb_wm, &cursorb_wm))
51cea1f4 852 enabled |= 1 << PIPE_B;
b445e3b0 853
b445e3b0
ED
854 if (single_plane_enabled(enabled) &&
855 g4x_compute_srwm(dev, ffs(enabled) - 1,
856 sr_latency_ns,
857 &valleyview_wm_info,
858 &valleyview_cursor_wm_info,
af6c4575
CW
859 &plane_sr, &ignore_cursor_sr) &&
860 g4x_compute_srwm(dev, ffs(enabled) - 1,
861 2*sr_latency_ns,
862 &valleyview_wm_info,
863 &valleyview_cursor_wm_info,
52bd02d8 864 &ignore_plane_sr, &cursor_sr)) {
9858425c 865 cxsr_enabled = true;
52bd02d8 866 } else {
9858425c 867 cxsr_enabled = false;
5209b1f4 868 intel_set_memory_cxsr(dev_priv, false);
52bd02d8
CW
869 plane_sr = cursor_sr = 0;
870 }
b445e3b0 871
a5043453
VS
872 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
873 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
b445e3b0
ED
874 planea_wm, cursora_wm,
875 planeb_wm, cursorb_wm,
876 plane_sr, cursor_sr);
877
878 I915_WRITE(DSPFW1,
879 (plane_sr << DSPFW_SR_SHIFT) |
880 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
881 (planeb_wm << DSPFW_PLANEB_SHIFT) |
0a560674 882 (planea_wm << DSPFW_PLANEA_SHIFT));
b445e3b0 883 I915_WRITE(DSPFW2,
8c919b28 884 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
b445e3b0
ED
885 (cursora_wm << DSPFW_CURSORA_SHIFT));
886 I915_WRITE(DSPFW3,
8c919b28
CW
887 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
888 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
9858425c
ID
889
890 if (cxsr_enabled)
891 intel_set_memory_cxsr(dev_priv, true);
b445e3b0
ED
892}
893
3c2777fd
VS
894static void cherryview_update_wm(struct drm_crtc *crtc)
895{
896 struct drm_device *dev = crtc->dev;
897 static const int sr_latency_ns = 12000;
898 struct drm_i915_private *dev_priv = dev->dev_private;
899 int planea_wm, planeb_wm, planec_wm;
900 int cursora_wm, cursorb_wm, cursorc_wm;
901 int plane_sr, cursor_sr;
902 int ignore_plane_sr, ignore_cursor_sr;
903 unsigned int enabled = 0;
904 bool cxsr_enabled;
905
906 vlv_update_drain_latency(crtc);
907
908 if (g4x_compute_wm0(dev, PIPE_A,
5aef6003
CW
909 &valleyview_wm_info, pessimal_latency_ns,
910 &valleyview_cursor_wm_info, pessimal_latency_ns,
3c2777fd
VS
911 &planea_wm, &cursora_wm))
912 enabled |= 1 << PIPE_A;
913
914 if (g4x_compute_wm0(dev, PIPE_B,
5aef6003
CW
915 &valleyview_wm_info, pessimal_latency_ns,
916 &valleyview_cursor_wm_info, pessimal_latency_ns,
3c2777fd
VS
917 &planeb_wm, &cursorb_wm))
918 enabled |= 1 << PIPE_B;
919
920 if (g4x_compute_wm0(dev, PIPE_C,
5aef6003
CW
921 &valleyview_wm_info, pessimal_latency_ns,
922 &valleyview_cursor_wm_info, pessimal_latency_ns,
3c2777fd
VS
923 &planec_wm, &cursorc_wm))
924 enabled |= 1 << PIPE_C;
925
926 if (single_plane_enabled(enabled) &&
927 g4x_compute_srwm(dev, ffs(enabled) - 1,
928 sr_latency_ns,
929 &valleyview_wm_info,
930 &valleyview_cursor_wm_info,
931 &plane_sr, &ignore_cursor_sr) &&
932 g4x_compute_srwm(dev, ffs(enabled) - 1,
933 2*sr_latency_ns,
934 &valleyview_wm_info,
935 &valleyview_cursor_wm_info,
936 &ignore_plane_sr, &cursor_sr)) {
937 cxsr_enabled = true;
938 } else {
939 cxsr_enabled = false;
940 intel_set_memory_cxsr(dev_priv, false);
941 plane_sr = cursor_sr = 0;
942 }
943
944 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
945 "B: plane=%d, cursor=%d, C: plane=%d, cursor=%d, "
946 "SR: plane=%d, cursor=%d\n",
947 planea_wm, cursora_wm,
948 planeb_wm, cursorb_wm,
949 planec_wm, cursorc_wm,
950 plane_sr, cursor_sr);
951
952 I915_WRITE(DSPFW1,
953 (plane_sr << DSPFW_SR_SHIFT) |
954 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
955 (planeb_wm << DSPFW_PLANEB_SHIFT) |
956 (planea_wm << DSPFW_PLANEA_SHIFT));
957 I915_WRITE(DSPFW2,
958 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
959 (cursora_wm << DSPFW_CURSORA_SHIFT));
960 I915_WRITE(DSPFW3,
961 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
962 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
963 I915_WRITE(DSPFW9_CHV,
964 (I915_READ(DSPFW9_CHV) & ~(DSPFW_PLANEC_MASK |
965 DSPFW_CURSORC_MASK)) |
966 (planec_wm << DSPFW_PLANEC_SHIFT) |
967 (cursorc_wm << DSPFW_CURSORC_SHIFT));
968
969 if (cxsr_enabled)
970 intel_set_memory_cxsr(dev_priv, true);
971}
972
01e184cc
GB
973static void valleyview_update_sprite_wm(struct drm_plane *plane,
974 struct drm_crtc *crtc,
975 uint32_t sprite_width,
976 uint32_t sprite_height,
977 int pixel_size,
978 bool enabled, bool scaled)
979{
980 struct drm_device *dev = crtc->dev;
981 struct drm_i915_private *dev_priv = dev->dev_private;
982 int pipe = to_intel_plane(plane)->pipe;
983 int sprite = to_intel_plane(plane)->plane;
984 int drain_latency;
985 int plane_prec;
986 int sprite_dl;
987 int prec_mult;
5e56ba45
RV
988 const int high_precision = IS_CHERRYVIEW(dev) ?
989 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_64;
01e184cc 990
5e56ba45 991 sprite_dl = I915_READ(VLV_DDL(pipe)) & ~(DDL_SPRITE_PRECISION_HIGH(sprite) |
01e184cc
GB
992 (DRAIN_LATENCY_MASK << DDL_SPRITE_SHIFT(sprite)));
993
994 if (enabled && vlv_compute_drain_latency(crtc, pixel_size, &prec_mult,
995 &drain_latency)) {
5e56ba45
RV
996 plane_prec = (prec_mult == high_precision) ?
997 DDL_SPRITE_PRECISION_HIGH(sprite) :
998 DDL_SPRITE_PRECISION_LOW(sprite);
01e184cc
GB
999 sprite_dl |= plane_prec |
1000 (drain_latency << DDL_SPRITE_SHIFT(sprite));
1001 }
1002
1003 I915_WRITE(VLV_DDL(pipe), sprite_dl);
1004}
1005
46ba614c 1006static void g4x_update_wm(struct drm_crtc *crtc)
b445e3b0 1007{
46ba614c 1008 struct drm_device *dev = crtc->dev;
b445e3b0
ED
1009 static const int sr_latency_ns = 12000;
1010 struct drm_i915_private *dev_priv = dev->dev_private;
1011 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1012 int plane_sr, cursor_sr;
1013 unsigned int enabled = 0;
9858425c 1014 bool cxsr_enabled;
b445e3b0 1015
51cea1f4 1016 if (g4x_compute_wm0(dev, PIPE_A,
5aef6003
CW
1017 &g4x_wm_info, pessimal_latency_ns,
1018 &g4x_cursor_wm_info, pessimal_latency_ns,
b445e3b0 1019 &planea_wm, &cursora_wm))
51cea1f4 1020 enabled |= 1 << PIPE_A;
b445e3b0 1021
51cea1f4 1022 if (g4x_compute_wm0(dev, PIPE_B,
5aef6003
CW
1023 &g4x_wm_info, pessimal_latency_ns,
1024 &g4x_cursor_wm_info, pessimal_latency_ns,
b445e3b0 1025 &planeb_wm, &cursorb_wm))
51cea1f4 1026 enabled |= 1 << PIPE_B;
b445e3b0 1027
b445e3b0
ED
1028 if (single_plane_enabled(enabled) &&
1029 g4x_compute_srwm(dev, ffs(enabled) - 1,
1030 sr_latency_ns,
1031 &g4x_wm_info,
1032 &g4x_cursor_wm_info,
52bd02d8 1033 &plane_sr, &cursor_sr)) {
9858425c 1034 cxsr_enabled = true;
52bd02d8 1035 } else {
9858425c 1036 cxsr_enabled = false;
5209b1f4 1037 intel_set_memory_cxsr(dev_priv, false);
52bd02d8
CW
1038 plane_sr = cursor_sr = 0;
1039 }
b445e3b0 1040
a5043453
VS
1041 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1042 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
b445e3b0
ED
1043 planea_wm, cursora_wm,
1044 planeb_wm, cursorb_wm,
1045 plane_sr, cursor_sr);
1046
1047 I915_WRITE(DSPFW1,
1048 (plane_sr << DSPFW_SR_SHIFT) |
1049 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1050 (planeb_wm << DSPFW_PLANEB_SHIFT) |
0a560674 1051 (planea_wm << DSPFW_PLANEA_SHIFT));
b445e3b0 1052 I915_WRITE(DSPFW2,
8c919b28 1053 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
b445e3b0
ED
1054 (cursora_wm << DSPFW_CURSORA_SHIFT));
1055 /* HPLL off in SR has some issues on G4x... disable it */
1056 I915_WRITE(DSPFW3,
8c919b28 1057 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
b445e3b0 1058 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
9858425c
ID
1059
1060 if (cxsr_enabled)
1061 intel_set_memory_cxsr(dev_priv, true);
b445e3b0
ED
1062}
1063
46ba614c 1064static void i965_update_wm(struct drm_crtc *unused_crtc)
b445e3b0 1065{
46ba614c 1066 struct drm_device *dev = unused_crtc->dev;
b445e3b0
ED
1067 struct drm_i915_private *dev_priv = dev->dev_private;
1068 struct drm_crtc *crtc;
1069 int srwm = 1;
1070 int cursor_sr = 16;
9858425c 1071 bool cxsr_enabled;
b445e3b0
ED
1072
1073 /* Calc sr entries for one plane configs */
1074 crtc = single_enabled_crtc(dev);
1075 if (crtc) {
1076 /* self-refresh has much higher latency */
1077 static const int sr_latency_ns = 12000;
4fe8590a 1078 const struct drm_display_mode *adjusted_mode =
6e3c9717 1079 &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 1080 int clock = adjusted_mode->crtc_clock;
fec8cba3 1081 int htotal = adjusted_mode->crtc_htotal;
6e3c9717 1082 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
f4510a27 1083 int pixel_size = crtc->primary->fb->bits_per_pixel / 8;
b445e3b0
ED
1084 unsigned long line_time_us;
1085 int entries;
1086
922044c9 1087 line_time_us = max(htotal * 1000 / clock, 1);
b445e3b0
ED
1088
1089 /* Use ns/us then divide to preserve precision */
1090 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1091 pixel_size * hdisplay;
1092 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1093 srwm = I965_FIFO_SIZE - entries;
1094 if (srwm < 0)
1095 srwm = 1;
1096 srwm &= 0x1ff;
1097 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1098 entries, srwm);
1099
1100 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
7bb836dd 1101 pixel_size * to_intel_crtc(crtc)->cursor_width;
b445e3b0
ED
1102 entries = DIV_ROUND_UP(entries,
1103 i965_cursor_wm_info.cacheline_size);
1104 cursor_sr = i965_cursor_wm_info.fifo_size -
1105 (entries + i965_cursor_wm_info.guard_size);
1106
1107 if (cursor_sr > i965_cursor_wm_info.max_wm)
1108 cursor_sr = i965_cursor_wm_info.max_wm;
1109
1110 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1111 "cursor %d\n", srwm, cursor_sr);
1112
9858425c 1113 cxsr_enabled = true;
b445e3b0 1114 } else {
9858425c 1115 cxsr_enabled = false;
b445e3b0 1116 /* Turn off self refresh if both pipes are enabled */
5209b1f4 1117 intel_set_memory_cxsr(dev_priv, false);
b445e3b0
ED
1118 }
1119
1120 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1121 srwm);
1122
1123 /* 965 has limitations... */
1124 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
0a560674
VS
1125 (8 << DSPFW_CURSORB_SHIFT) |
1126 (8 << DSPFW_PLANEB_SHIFT) |
1127 (8 << DSPFW_PLANEA_SHIFT));
1128 I915_WRITE(DSPFW2, (8 << DSPFW_CURSORA_SHIFT) |
1129 (8 << DSPFW_PLANEC_SHIFT_OLD));
b445e3b0
ED
1130 /* update cursor SR watermark */
1131 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
9858425c
ID
1132
1133 if (cxsr_enabled)
1134 intel_set_memory_cxsr(dev_priv, true);
b445e3b0
ED
1135}
1136
46ba614c 1137static void i9xx_update_wm(struct drm_crtc *unused_crtc)
b445e3b0 1138{
46ba614c 1139 struct drm_device *dev = unused_crtc->dev;
b445e3b0
ED
1140 struct drm_i915_private *dev_priv = dev->dev_private;
1141 const struct intel_watermark_params *wm_info;
1142 uint32_t fwater_lo;
1143 uint32_t fwater_hi;
1144 int cwm, srwm = 1;
1145 int fifo_size;
1146 int planea_wm, planeb_wm;
1147 struct drm_crtc *crtc, *enabled = NULL;
1148
1149 if (IS_I945GM(dev))
1150 wm_info = &i945_wm_info;
1151 else if (!IS_GEN2(dev))
1152 wm_info = &i915_wm_info;
1153 else
9d539105 1154 wm_info = &i830_a_wm_info;
b445e3b0
ED
1155
1156 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1157 crtc = intel_get_crtc_for_plane(dev, 0);
3490ea5d 1158 if (intel_crtc_active(crtc)) {
241bfc38 1159 const struct drm_display_mode *adjusted_mode;
f4510a27 1160 int cpp = crtc->primary->fb->bits_per_pixel / 8;
b9e0bda3
CW
1161 if (IS_GEN2(dev))
1162 cpp = 4;
1163
6e3c9717 1164 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 1165 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
b9e0bda3 1166 wm_info, fifo_size, cpp,
5aef6003 1167 pessimal_latency_ns);
b445e3b0 1168 enabled = crtc;
9d539105 1169 } else {
b445e3b0 1170 planea_wm = fifo_size - wm_info->guard_size;
9d539105
VS
1171 if (planea_wm > (long)wm_info->max_wm)
1172 planea_wm = wm_info->max_wm;
1173 }
1174
1175 if (IS_GEN2(dev))
1176 wm_info = &i830_bc_wm_info;
b445e3b0
ED
1177
1178 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1179 crtc = intel_get_crtc_for_plane(dev, 1);
3490ea5d 1180 if (intel_crtc_active(crtc)) {
241bfc38 1181 const struct drm_display_mode *adjusted_mode;
f4510a27 1182 int cpp = crtc->primary->fb->bits_per_pixel / 8;
b9e0bda3
CW
1183 if (IS_GEN2(dev))
1184 cpp = 4;
1185
6e3c9717 1186 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 1187 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
b9e0bda3 1188 wm_info, fifo_size, cpp,
5aef6003 1189 pessimal_latency_ns);
b445e3b0
ED
1190 if (enabled == NULL)
1191 enabled = crtc;
1192 else
1193 enabled = NULL;
9d539105 1194 } else {
b445e3b0 1195 planeb_wm = fifo_size - wm_info->guard_size;
9d539105
VS
1196 if (planeb_wm > (long)wm_info->max_wm)
1197 planeb_wm = wm_info->max_wm;
1198 }
b445e3b0
ED
1199
1200 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1201
2ab1bc9d 1202 if (IS_I915GM(dev) && enabled) {
2ff8fde1 1203 struct drm_i915_gem_object *obj;
2ab1bc9d 1204
2ff8fde1 1205 obj = intel_fb_obj(enabled->primary->fb);
2ab1bc9d
DV
1206
1207 /* self-refresh seems busted with untiled */
2ff8fde1 1208 if (obj->tiling_mode == I915_TILING_NONE)
2ab1bc9d
DV
1209 enabled = NULL;
1210 }
1211
b445e3b0
ED
1212 /*
1213 * Overlay gets an aggressive default since video jitter is bad.
1214 */
1215 cwm = 2;
1216
1217 /* Play safe and disable self-refresh before adjusting watermarks. */
5209b1f4 1218 intel_set_memory_cxsr(dev_priv, false);
b445e3b0
ED
1219
1220 /* Calc sr entries for one plane configs */
1221 if (HAS_FW_BLC(dev) && enabled) {
1222 /* self-refresh has much higher latency */
1223 static const int sr_latency_ns = 6000;
4fe8590a 1224 const struct drm_display_mode *adjusted_mode =
6e3c9717 1225 &to_intel_crtc(enabled)->config->base.adjusted_mode;
241bfc38 1226 int clock = adjusted_mode->crtc_clock;
fec8cba3 1227 int htotal = adjusted_mode->crtc_htotal;
6e3c9717 1228 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
f4510a27 1229 int pixel_size = enabled->primary->fb->bits_per_pixel / 8;
b445e3b0
ED
1230 unsigned long line_time_us;
1231 int entries;
1232
922044c9 1233 line_time_us = max(htotal * 1000 / clock, 1);
b445e3b0
ED
1234
1235 /* Use ns/us then divide to preserve precision */
1236 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1237 pixel_size * hdisplay;
1238 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1239 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1240 srwm = wm_info->fifo_size - entries;
1241 if (srwm < 0)
1242 srwm = 1;
1243
1244 if (IS_I945G(dev) || IS_I945GM(dev))
1245 I915_WRITE(FW_BLC_SELF,
1246 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1247 else if (IS_I915GM(dev))
1248 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1249 }
1250
1251 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1252 planea_wm, planeb_wm, cwm, srwm);
1253
1254 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1255 fwater_hi = (cwm & 0x1f);
1256
1257 /* Set request length to 8 cachelines per fetch */
1258 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1259 fwater_hi = fwater_hi | (1 << 8);
1260
1261 I915_WRITE(FW_BLC, fwater_lo);
1262 I915_WRITE(FW_BLC2, fwater_hi);
1263
5209b1f4
ID
1264 if (enabled)
1265 intel_set_memory_cxsr(dev_priv, true);
b445e3b0
ED
1266}
1267
feb56b93 1268static void i845_update_wm(struct drm_crtc *unused_crtc)
b445e3b0 1269{
46ba614c 1270 struct drm_device *dev = unused_crtc->dev;
b445e3b0
ED
1271 struct drm_i915_private *dev_priv = dev->dev_private;
1272 struct drm_crtc *crtc;
241bfc38 1273 const struct drm_display_mode *adjusted_mode;
b445e3b0
ED
1274 uint32_t fwater_lo;
1275 int planea_wm;
1276
1277 crtc = single_enabled_crtc(dev);
1278 if (crtc == NULL)
1279 return;
1280
6e3c9717 1281 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
241bfc38 1282 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
feb56b93 1283 &i845_wm_info,
b445e3b0 1284 dev_priv->display.get_fifo_size(dev, 0),
5aef6003 1285 4, pessimal_latency_ns);
b445e3b0
ED
1286 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1287 fwater_lo |= (3<<8) | planea_wm;
1288
1289 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1290
1291 I915_WRITE(FW_BLC, fwater_lo);
1292}
1293
3658729a
VS
1294static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
1295 struct drm_crtc *crtc)
801bcfff
PZ
1296{
1297 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
fd4daa9c 1298 uint32_t pixel_rate;
801bcfff 1299
6e3c9717 1300 pixel_rate = intel_crtc->config->base.adjusted_mode.crtc_clock;
801bcfff
PZ
1301
1302 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1303 * adjust the pixel_rate here. */
1304
6e3c9717 1305 if (intel_crtc->config->pch_pfit.enabled) {
801bcfff 1306 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
6e3c9717 1307 uint32_t pfit_size = intel_crtc->config->pch_pfit.size;
801bcfff 1308
6e3c9717
ACO
1309 pipe_w = intel_crtc->config->pipe_src_w;
1310 pipe_h = intel_crtc->config->pipe_src_h;
801bcfff
PZ
1311 pfit_w = (pfit_size >> 16) & 0xFFFF;
1312 pfit_h = pfit_size & 0xFFFF;
1313 if (pipe_w < pfit_w)
1314 pipe_w = pfit_w;
1315 if (pipe_h < pfit_h)
1316 pipe_h = pfit_h;
1317
1318 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1319 pfit_w * pfit_h);
1320 }
1321
1322 return pixel_rate;
1323}
1324
37126462 1325/* latency must be in 0.1us units. */
23297044 1326static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
801bcfff
PZ
1327 uint32_t latency)
1328{
1329 uint64_t ret;
1330
3312ba65
VS
1331 if (WARN(latency == 0, "Latency value missing\n"))
1332 return UINT_MAX;
1333
801bcfff
PZ
1334 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1335 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1336
1337 return ret;
1338}
1339
37126462 1340/* latency must be in 0.1us units. */
23297044 1341static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
801bcfff
PZ
1342 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1343 uint32_t latency)
1344{
1345 uint32_t ret;
1346
3312ba65
VS
1347 if (WARN(latency == 0, "Latency value missing\n"))
1348 return UINT_MAX;
1349
801bcfff
PZ
1350 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1351 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1352 ret = DIV_ROUND_UP(ret, 64) + 2;
1353 return ret;
1354}
1355
23297044 1356static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
cca32e9a
PZ
1357 uint8_t bytes_per_pixel)
1358{
1359 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1360}
1361
2ac96d2a
PB
1362struct skl_pipe_wm_parameters {
1363 bool active;
1364 uint32_t pipe_htotal;
1365 uint32_t pixel_rate; /* in KHz */
1366 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1367 struct intel_plane_wm_parameters cursor;
1368};
1369
820c1980 1370struct ilk_pipe_wm_parameters {
801bcfff 1371 bool active;
801bcfff
PZ
1372 uint32_t pipe_htotal;
1373 uint32_t pixel_rate;
c35426d2
VS
1374 struct intel_plane_wm_parameters pri;
1375 struct intel_plane_wm_parameters spr;
1376 struct intel_plane_wm_parameters cur;
801bcfff
PZ
1377};
1378
820c1980 1379struct ilk_wm_maximums {
cca32e9a
PZ
1380 uint16_t pri;
1381 uint16_t spr;
1382 uint16_t cur;
1383 uint16_t fbc;
1384};
1385
240264f4
VS
1386/* used in computing the new watermarks state */
1387struct intel_wm_config {
1388 unsigned int num_pipes_active;
1389 bool sprites_enabled;
1390 bool sprites_scaled;
240264f4
VS
1391};
1392
37126462
VS
1393/*
1394 * For both WM_PIPE and WM_LP.
1395 * mem_value must be in 0.1us units.
1396 */
820c1980 1397static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
cca32e9a
PZ
1398 uint32_t mem_value,
1399 bool is_lp)
801bcfff 1400{
cca32e9a
PZ
1401 uint32_t method1, method2;
1402
c35426d2 1403 if (!params->active || !params->pri.enabled)
801bcfff
PZ
1404 return 0;
1405
23297044 1406 method1 = ilk_wm_method1(params->pixel_rate,
c35426d2 1407 params->pri.bytes_per_pixel,
cca32e9a
PZ
1408 mem_value);
1409
1410 if (!is_lp)
1411 return method1;
1412
23297044 1413 method2 = ilk_wm_method2(params->pixel_rate,
cca32e9a 1414 params->pipe_htotal,
c35426d2
VS
1415 params->pri.horiz_pixels,
1416 params->pri.bytes_per_pixel,
cca32e9a
PZ
1417 mem_value);
1418
1419 return min(method1, method2);
801bcfff
PZ
1420}
1421
37126462
VS
1422/*
1423 * For both WM_PIPE and WM_LP.
1424 * mem_value must be in 0.1us units.
1425 */
820c1980 1426static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
801bcfff
PZ
1427 uint32_t mem_value)
1428{
1429 uint32_t method1, method2;
1430
c35426d2 1431 if (!params->active || !params->spr.enabled)
801bcfff
PZ
1432 return 0;
1433
23297044 1434 method1 = ilk_wm_method1(params->pixel_rate,
c35426d2 1435 params->spr.bytes_per_pixel,
801bcfff 1436 mem_value);
23297044 1437 method2 = ilk_wm_method2(params->pixel_rate,
801bcfff 1438 params->pipe_htotal,
c35426d2
VS
1439 params->spr.horiz_pixels,
1440 params->spr.bytes_per_pixel,
801bcfff
PZ
1441 mem_value);
1442 return min(method1, method2);
1443}
1444
37126462
VS
1445/*
1446 * For both WM_PIPE and WM_LP.
1447 * mem_value must be in 0.1us units.
1448 */
820c1980 1449static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
801bcfff
PZ
1450 uint32_t mem_value)
1451{
c35426d2 1452 if (!params->active || !params->cur.enabled)
801bcfff
PZ
1453 return 0;
1454
23297044 1455 return ilk_wm_method2(params->pixel_rate,
801bcfff 1456 params->pipe_htotal,
c35426d2
VS
1457 params->cur.horiz_pixels,
1458 params->cur.bytes_per_pixel,
801bcfff
PZ
1459 mem_value);
1460}
1461
cca32e9a 1462/* Only for WM_LP. */
820c1980 1463static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
1fda9882 1464 uint32_t pri_val)
cca32e9a 1465{
c35426d2 1466 if (!params->active || !params->pri.enabled)
cca32e9a
PZ
1467 return 0;
1468
23297044 1469 return ilk_wm_fbc(pri_val,
c35426d2
VS
1470 params->pri.horiz_pixels,
1471 params->pri.bytes_per_pixel);
cca32e9a
PZ
1472}
1473
158ae64f
VS
1474static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1475{
416f4727
VS
1476 if (INTEL_INFO(dev)->gen >= 8)
1477 return 3072;
1478 else if (INTEL_INFO(dev)->gen >= 7)
158ae64f
VS
1479 return 768;
1480 else
1481 return 512;
1482}
1483
4e975081
VS
1484static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1485 int level, bool is_sprite)
1486{
1487 if (INTEL_INFO(dev)->gen >= 8)
1488 /* BDW primary/sprite plane watermarks */
1489 return level == 0 ? 255 : 2047;
1490 else if (INTEL_INFO(dev)->gen >= 7)
1491 /* IVB/HSW primary/sprite plane watermarks */
1492 return level == 0 ? 127 : 1023;
1493 else if (!is_sprite)
1494 /* ILK/SNB primary plane watermarks */
1495 return level == 0 ? 127 : 511;
1496 else
1497 /* ILK/SNB sprite plane watermarks */
1498 return level == 0 ? 63 : 255;
1499}
1500
1501static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1502 int level)
1503{
1504 if (INTEL_INFO(dev)->gen >= 7)
1505 return level == 0 ? 63 : 255;
1506 else
1507 return level == 0 ? 31 : 63;
1508}
1509
1510static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1511{
1512 if (INTEL_INFO(dev)->gen >= 8)
1513 return 31;
1514 else
1515 return 15;
1516}
1517
158ae64f
VS
1518/* Calculate the maximum primary/sprite plane watermark */
1519static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1520 int level,
240264f4 1521 const struct intel_wm_config *config,
158ae64f
VS
1522 enum intel_ddb_partitioning ddb_partitioning,
1523 bool is_sprite)
1524{
1525 unsigned int fifo_size = ilk_display_fifo_size(dev);
158ae64f
VS
1526
1527 /* if sprites aren't enabled, sprites get nothing */
240264f4 1528 if (is_sprite && !config->sprites_enabled)
158ae64f
VS
1529 return 0;
1530
1531 /* HSW allows LP1+ watermarks even with multiple pipes */
240264f4 1532 if (level == 0 || config->num_pipes_active > 1) {
158ae64f
VS
1533 fifo_size /= INTEL_INFO(dev)->num_pipes;
1534
1535 /*
1536 * For some reason the non self refresh
1537 * FIFO size is only half of the self
1538 * refresh FIFO size on ILK/SNB.
1539 */
1540 if (INTEL_INFO(dev)->gen <= 6)
1541 fifo_size /= 2;
1542 }
1543
240264f4 1544 if (config->sprites_enabled) {
158ae64f
VS
1545 /* level 0 is always calculated with 1:1 split */
1546 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1547 if (is_sprite)
1548 fifo_size *= 5;
1549 fifo_size /= 6;
1550 } else {
1551 fifo_size /= 2;
1552 }
1553 }
1554
1555 /* clamp to max that the registers can hold */
4e975081 1556 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
158ae64f
VS
1557}
1558
1559/* Calculate the maximum cursor plane watermark */
1560static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
240264f4
VS
1561 int level,
1562 const struct intel_wm_config *config)
158ae64f
VS
1563{
1564 /* HSW LP1+ watermarks w/ multiple pipes */
240264f4 1565 if (level > 0 && config->num_pipes_active > 1)
158ae64f
VS
1566 return 64;
1567
1568 /* otherwise just report max that registers can hold */
4e975081 1569 return ilk_cursor_wm_reg_max(dev, level);
158ae64f
VS
1570}
1571
d34ff9c6 1572static void ilk_compute_wm_maximums(const struct drm_device *dev,
34982fe1
VS
1573 int level,
1574 const struct intel_wm_config *config,
1575 enum intel_ddb_partitioning ddb_partitioning,
820c1980 1576 struct ilk_wm_maximums *max)
158ae64f 1577{
240264f4
VS
1578 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1579 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1580 max->cur = ilk_cursor_wm_max(dev, level, config);
4e975081 1581 max->fbc = ilk_fbc_wm_reg_max(dev);
158ae64f
VS
1582}
1583
a3cb4048
VS
1584static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1585 int level,
1586 struct ilk_wm_maximums *max)
1587{
1588 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1589 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1590 max->cur = ilk_cursor_wm_reg_max(dev, level);
1591 max->fbc = ilk_fbc_wm_reg_max(dev);
1592}
1593
d9395655 1594static bool ilk_validate_wm_level(int level,
820c1980 1595 const struct ilk_wm_maximums *max,
d9395655 1596 struct intel_wm_level *result)
a9786a11
VS
1597{
1598 bool ret;
1599
1600 /* already determined to be invalid? */
1601 if (!result->enable)
1602 return false;
1603
1604 result->enable = result->pri_val <= max->pri &&
1605 result->spr_val <= max->spr &&
1606 result->cur_val <= max->cur;
1607
1608 ret = result->enable;
1609
1610 /*
1611 * HACK until we can pre-compute everything,
1612 * and thus fail gracefully if LP0 watermarks
1613 * are exceeded...
1614 */
1615 if (level == 0 && !result->enable) {
1616 if (result->pri_val > max->pri)
1617 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1618 level, result->pri_val, max->pri);
1619 if (result->spr_val > max->spr)
1620 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1621 level, result->spr_val, max->spr);
1622 if (result->cur_val > max->cur)
1623 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1624 level, result->cur_val, max->cur);
1625
1626 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1627 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1628 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1629 result->enable = true;
1630 }
1631
a9786a11
VS
1632 return ret;
1633}
1634
d34ff9c6 1635static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
6f5ddd17 1636 int level,
820c1980 1637 const struct ilk_pipe_wm_parameters *p,
1fd527cc 1638 struct intel_wm_level *result)
6f5ddd17
VS
1639{
1640 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1641 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1642 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
1643
1644 /* WM1+ latency values stored in 0.5us units */
1645 if (level > 0) {
1646 pri_latency *= 5;
1647 spr_latency *= 5;
1648 cur_latency *= 5;
1649 }
1650
1651 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
1652 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
1653 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
1654 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
1655 result->enable = true;
1656}
1657
801bcfff
PZ
1658static uint32_t
1659hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
1f8eeabf
ED
1660{
1661 struct drm_i915_private *dev_priv = dev->dev_private;
1011d8c4 1662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 1663 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
85a02deb 1664 u32 linetime, ips_linetime;
1f8eeabf 1665
801bcfff
PZ
1666 if (!intel_crtc_active(crtc))
1667 return 0;
1011d8c4 1668
1f8eeabf
ED
1669 /* The WM are computed with base on how long it takes to fill a single
1670 * row at the given clock rate, multiplied by 8.
1671 * */
fec8cba3
JB
1672 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
1673 mode->crtc_clock);
1674 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
85a02deb 1675 intel_ddi_get_cdclk_freq(dev_priv));
1f8eeabf 1676
801bcfff
PZ
1677 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
1678 PIPE_WM_LINETIME_TIME(linetime);
1f8eeabf
ED
1679}
1680
2af30a5c 1681static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
12b134df
VS
1682{
1683 struct drm_i915_private *dev_priv = dev->dev_private;
1684
2af30a5c
PB
1685 if (IS_GEN9(dev)) {
1686 uint32_t val;
4f947386 1687 int ret, i;
367294be 1688 int level, max_level = ilk_wm_max_level(dev);
2af30a5c
PB
1689
1690 /* read the first set of memory latencies[0:3] */
1691 val = 0; /* data0 to be programmed to 0 for first set */
1692 mutex_lock(&dev_priv->rps.hw_lock);
1693 ret = sandybridge_pcode_read(dev_priv,
1694 GEN9_PCODE_READ_MEM_LATENCY,
1695 &val);
1696 mutex_unlock(&dev_priv->rps.hw_lock);
1697
1698 if (ret) {
1699 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1700 return;
1701 }
1702
1703 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1704 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1705 GEN9_MEM_LATENCY_LEVEL_MASK;
1706 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1707 GEN9_MEM_LATENCY_LEVEL_MASK;
1708 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1709 GEN9_MEM_LATENCY_LEVEL_MASK;
1710
1711 /* read the second set of memory latencies[4:7] */
1712 val = 1; /* data0 to be programmed to 1 for second set */
1713 mutex_lock(&dev_priv->rps.hw_lock);
1714 ret = sandybridge_pcode_read(dev_priv,
1715 GEN9_PCODE_READ_MEM_LATENCY,
1716 &val);
1717 mutex_unlock(&dev_priv->rps.hw_lock);
1718 if (ret) {
1719 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1720 return;
1721 }
1722
1723 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1724 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1725 GEN9_MEM_LATENCY_LEVEL_MASK;
1726 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1727 GEN9_MEM_LATENCY_LEVEL_MASK;
1728 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1729 GEN9_MEM_LATENCY_LEVEL_MASK;
1730
367294be 1731 /*
6f97235b
DL
1732 * WaWmMemoryReadLatency:skl
1733 *
367294be
VK
1734 * punit doesn't take into account the read latency so we need
1735 * to add 2us to the various latency levels we retrieve from
1736 * the punit.
1737 * - W0 is a bit special in that it's the only level that
1738 * can't be disabled if we want to have display working, so
1739 * we always add 2us there.
1740 * - For levels >=1, punit returns 0us latency when they are
1741 * disabled, so we respect that and don't add 2us then
4f947386
VK
1742 *
1743 * Additionally, if a level n (n > 1) has a 0us latency, all
1744 * levels m (m >= n) need to be disabled. We make sure to
1745 * sanitize the values out of the punit to satisfy this
1746 * requirement.
367294be
VK
1747 */
1748 wm[0] += 2;
1749 for (level = 1; level <= max_level; level++)
1750 if (wm[level] != 0)
1751 wm[level] += 2;
4f947386
VK
1752 else {
1753 for (i = level + 1; i <= max_level; i++)
1754 wm[i] = 0;
367294be 1755
4f947386
VK
1756 break;
1757 }
2af30a5c 1758 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
12b134df
VS
1759 uint64_t sskpd = I915_READ64(MCH_SSKPD);
1760
1761 wm[0] = (sskpd >> 56) & 0xFF;
1762 if (wm[0] == 0)
1763 wm[0] = sskpd & 0xF;
e5d5019e
VS
1764 wm[1] = (sskpd >> 4) & 0xFF;
1765 wm[2] = (sskpd >> 12) & 0xFF;
1766 wm[3] = (sskpd >> 20) & 0x1FF;
1767 wm[4] = (sskpd >> 32) & 0x1FF;
63cf9a13
VS
1768 } else if (INTEL_INFO(dev)->gen >= 6) {
1769 uint32_t sskpd = I915_READ(MCH_SSKPD);
1770
1771 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
1772 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
1773 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
1774 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
3a88d0ac
VS
1775 } else if (INTEL_INFO(dev)->gen >= 5) {
1776 uint32_t mltr = I915_READ(MLTR_ILK);
1777
1778 /* ILK primary LP0 latency is 700 ns */
1779 wm[0] = 7;
1780 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
1781 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
12b134df
VS
1782 }
1783}
1784
53615a5e
VS
1785static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
1786{
1787 /* ILK sprite LP0 latency is 1300 ns */
1788 if (INTEL_INFO(dev)->gen == 5)
1789 wm[0] = 13;
1790}
1791
1792static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
1793{
1794 /* ILK cursor LP0 latency is 1300 ns */
1795 if (INTEL_INFO(dev)->gen == 5)
1796 wm[0] = 13;
1797
1798 /* WaDoubleCursorLP3Latency:ivb */
1799 if (IS_IVYBRIDGE(dev))
1800 wm[3] *= 2;
1801}
1802
546c81fd 1803int ilk_wm_max_level(const struct drm_device *dev)
26ec971e 1804{
26ec971e 1805 /* how many WM levels are we expecting */
2af30a5c
PB
1806 if (IS_GEN9(dev))
1807 return 7;
1808 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ad0d6dc4 1809 return 4;
26ec971e 1810 else if (INTEL_INFO(dev)->gen >= 6)
ad0d6dc4 1811 return 3;
26ec971e 1812 else
ad0d6dc4
VS
1813 return 2;
1814}
7526ed79 1815
ad0d6dc4
VS
1816static void intel_print_wm_latency(struct drm_device *dev,
1817 const char *name,
2af30a5c 1818 const uint16_t wm[8])
ad0d6dc4
VS
1819{
1820 int level, max_level = ilk_wm_max_level(dev);
26ec971e
VS
1821
1822 for (level = 0; level <= max_level; level++) {
1823 unsigned int latency = wm[level];
1824
1825 if (latency == 0) {
1826 DRM_ERROR("%s WM%d latency not provided\n",
1827 name, level);
1828 continue;
1829 }
1830
2af30a5c
PB
1831 /*
1832 * - latencies are in us on gen9.
1833 * - before then, WM1+ latency values are in 0.5us units
1834 */
1835 if (IS_GEN9(dev))
1836 latency *= 10;
1837 else if (level > 0)
26ec971e
VS
1838 latency *= 5;
1839
1840 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
1841 name, level, wm[level],
1842 latency / 10, latency % 10);
1843 }
1844}
1845
e95a2f75
VS
1846static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
1847 uint16_t wm[5], uint16_t min)
1848{
1849 int level, max_level = ilk_wm_max_level(dev_priv->dev);
1850
1851 if (wm[0] >= min)
1852 return false;
1853
1854 wm[0] = max(wm[0], min);
1855 for (level = 1; level <= max_level; level++)
1856 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
1857
1858 return true;
1859}
1860
1861static void snb_wm_latency_quirk(struct drm_device *dev)
1862{
1863 struct drm_i915_private *dev_priv = dev->dev_private;
1864 bool changed;
1865
1866 /*
1867 * The BIOS provided WM memory latency values are often
1868 * inadequate for high resolution displays. Adjust them.
1869 */
1870 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
1871 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
1872 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
1873
1874 if (!changed)
1875 return;
1876
1877 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
1878 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
1879 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
1880 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
1881}
1882
fa50ad61 1883static void ilk_setup_wm_latency(struct drm_device *dev)
53615a5e
VS
1884{
1885 struct drm_i915_private *dev_priv = dev->dev_private;
1886
1887 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
1888
1889 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
1890 sizeof(dev_priv->wm.pri_latency));
1891 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
1892 sizeof(dev_priv->wm.pri_latency));
1893
1894 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
1895 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
26ec971e
VS
1896
1897 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
1898 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
1899 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
e95a2f75
VS
1900
1901 if (IS_GEN6(dev))
1902 snb_wm_latency_quirk(dev);
53615a5e
VS
1903}
1904
2af30a5c
PB
1905static void skl_setup_wm_latency(struct drm_device *dev)
1906{
1907 struct drm_i915_private *dev_priv = dev->dev_private;
1908
1909 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
1910 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
1911}
1912
820c1980 1913static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
2a44b76b 1914 struct ilk_pipe_wm_parameters *p)
1011d8c4 1915{
7c4a395f
VS
1916 struct drm_device *dev = crtc->dev;
1917 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1918 enum pipe pipe = intel_crtc->pipe;
7c4a395f 1919 struct drm_plane *plane;
1011d8c4 1920
2a44b76b
VS
1921 if (!intel_crtc_active(crtc))
1922 return;
801bcfff 1923
2a44b76b 1924 p->active = true;
6e3c9717 1925 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
2a44b76b
VS
1926 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
1927 p->pri.bytes_per_pixel = crtc->primary->fb->bits_per_pixel / 8;
1928 p->cur.bytes_per_pixel = 4;
6e3c9717 1929 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
2a44b76b
VS
1930 p->cur.horiz_pixels = intel_crtc->cursor_width;
1931 /* TODO: for now, assume primary and cursor planes are always enabled. */
1932 p->pri.enabled = true;
1933 p->cur.enabled = true;
7c4a395f 1934
af2b653b 1935 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
801bcfff 1936 struct intel_plane *intel_plane = to_intel_plane(plane);
801bcfff 1937
2a44b76b 1938 if (intel_plane->pipe == pipe) {
7c4a395f 1939 p->spr = intel_plane->wm;
2a44b76b
VS
1940 break;
1941 }
1942 }
1943}
1944
1945static void ilk_compute_wm_config(struct drm_device *dev,
1946 struct intel_wm_config *config)
1947{
1948 struct intel_crtc *intel_crtc;
1949
1950 /* Compute the currently _active_ config */
d3fcc808 1951 for_each_intel_crtc(dev, intel_crtc) {
2a44b76b 1952 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
cca32e9a 1953
2a44b76b
VS
1954 if (!wm->pipe_enabled)
1955 continue;
cca32e9a 1956
2a44b76b
VS
1957 config->sprites_enabled |= wm->sprites_enabled;
1958 config->sprites_scaled |= wm->sprites_scaled;
1959 config->num_pipes_active++;
cca32e9a 1960 }
801bcfff
PZ
1961}
1962
0b2ae6d7
VS
1963/* Compute new watermarks for the pipe */
1964static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
820c1980 1965 const struct ilk_pipe_wm_parameters *params,
0b2ae6d7
VS
1966 struct intel_pipe_wm *pipe_wm)
1967{
1968 struct drm_device *dev = crtc->dev;
d34ff9c6 1969 const struct drm_i915_private *dev_priv = dev->dev_private;
0b2ae6d7
VS
1970 int level, max_level = ilk_wm_max_level(dev);
1971 /* LP0 watermark maximums depend on this pipe alone */
1972 struct intel_wm_config config = {
1973 .num_pipes_active = 1,
1974 .sprites_enabled = params->spr.enabled,
1975 .sprites_scaled = params->spr.scaled,
1976 };
820c1980 1977 struct ilk_wm_maximums max;
0b2ae6d7 1978
2a44b76b
VS
1979 pipe_wm->pipe_enabled = params->active;
1980 pipe_wm->sprites_enabled = params->spr.enabled;
1981 pipe_wm->sprites_scaled = params->spr.scaled;
1982
7b39a0b7
VS
1983 /* ILK/SNB: LP2+ watermarks only w/o sprites */
1984 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
1985 max_level = 1;
1986
1987 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
1988 if (params->spr.scaled)
1989 max_level = 0;
1990
a3cb4048 1991 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
0b2ae6d7 1992
a42a5719 1993 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ce0e0713 1994 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
0b2ae6d7 1995
a3cb4048
VS
1996 /* LP0 watermarks always use 1/2 DDB partitioning */
1997 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
1998
0b2ae6d7 1999 /* At least LP0 must be valid */
a3cb4048
VS
2000 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2001 return false;
2002
2003 ilk_compute_wm_reg_maximums(dev, 1, &max);
2004
2005 for (level = 1; level <= max_level; level++) {
2006 struct intel_wm_level wm = {};
2007
2008 ilk_compute_wm_level(dev_priv, level, params, &wm);
2009
2010 /*
2011 * Disable any watermark level that exceeds the
2012 * register maximums since such watermarks are
2013 * always invalid.
2014 */
2015 if (!ilk_validate_wm_level(level, &max, &wm))
2016 break;
2017
2018 pipe_wm->wm[level] = wm;
2019 }
2020
2021 return true;
0b2ae6d7
VS
2022}
2023
2024/*
2025 * Merge the watermarks from all active pipes for a specific level.
2026 */
2027static void ilk_merge_wm_level(struct drm_device *dev,
2028 int level,
2029 struct intel_wm_level *ret_wm)
2030{
2031 const struct intel_crtc *intel_crtc;
2032
d52fea5b
VS
2033 ret_wm->enable = true;
2034
d3fcc808 2035 for_each_intel_crtc(dev, intel_crtc) {
fe392efd
VS
2036 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2037 const struct intel_wm_level *wm = &active->wm[level];
2038
2039 if (!active->pipe_enabled)
2040 continue;
0b2ae6d7 2041
d52fea5b
VS
2042 /*
2043 * The watermark values may have been used in the past,
2044 * so we must maintain them in the registers for some
2045 * time even if the level is now disabled.
2046 */
0b2ae6d7 2047 if (!wm->enable)
d52fea5b 2048 ret_wm->enable = false;
0b2ae6d7
VS
2049
2050 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2051 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2052 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2053 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2054 }
0b2ae6d7
VS
2055}
2056
2057/*
2058 * Merge all low power watermarks for all active pipes.
2059 */
2060static void ilk_wm_merge(struct drm_device *dev,
0ba22e26 2061 const struct intel_wm_config *config,
820c1980 2062 const struct ilk_wm_maximums *max,
0b2ae6d7
VS
2063 struct intel_pipe_wm *merged)
2064{
2065 int level, max_level = ilk_wm_max_level(dev);
d52fea5b 2066 int last_enabled_level = max_level;
0b2ae6d7 2067
0ba22e26
VS
2068 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2069 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2070 config->num_pipes_active > 1)
2071 return;
2072
6c8b6c28
VS
2073 /* ILK: FBC WM must be disabled always */
2074 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
0b2ae6d7
VS
2075
2076 /* merge each WM1+ level */
2077 for (level = 1; level <= max_level; level++) {
2078 struct intel_wm_level *wm = &merged->wm[level];
2079
2080 ilk_merge_wm_level(dev, level, wm);
2081
d52fea5b
VS
2082 if (level > last_enabled_level)
2083 wm->enable = false;
2084 else if (!ilk_validate_wm_level(level, max, wm))
2085 /* make sure all following levels get disabled */
2086 last_enabled_level = level - 1;
0b2ae6d7
VS
2087
2088 /*
2089 * The spec says it is preferred to disable
2090 * FBC WMs instead of disabling a WM level.
2091 */
2092 if (wm->fbc_val > max->fbc) {
d52fea5b
VS
2093 if (wm->enable)
2094 merged->fbc_wm_enabled = false;
0b2ae6d7
VS
2095 wm->fbc_val = 0;
2096 }
2097 }
6c8b6c28
VS
2098
2099 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2100 /*
2101 * FIXME this is racy. FBC might get enabled later.
2102 * What we should check here is whether FBC can be
2103 * enabled sometime later.
2104 */
2105 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2106 for (level = 2; level <= max_level; level++) {
2107 struct intel_wm_level *wm = &merged->wm[level];
2108
2109 wm->enable = false;
2110 }
2111 }
0b2ae6d7
VS
2112}
2113
b380ca3c
VS
2114static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2115{
2116 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2117 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2118}
2119
a68d68ee
VS
2120/* The value we need to program into the WM_LPx latency field */
2121static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2122{
2123 struct drm_i915_private *dev_priv = dev->dev_private;
2124
a42a5719 2125 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
a68d68ee
VS
2126 return 2 * level;
2127 else
2128 return dev_priv->wm.pri_latency[level];
2129}
2130
820c1980 2131static void ilk_compute_wm_results(struct drm_device *dev,
0362c781 2132 const struct intel_pipe_wm *merged,
609cedef 2133 enum intel_ddb_partitioning partitioning,
820c1980 2134 struct ilk_wm_values *results)
801bcfff 2135{
0b2ae6d7
VS
2136 struct intel_crtc *intel_crtc;
2137 int level, wm_lp;
cca32e9a 2138
0362c781 2139 results->enable_fbc_wm = merged->fbc_wm_enabled;
609cedef 2140 results->partitioning = partitioning;
cca32e9a 2141
0b2ae6d7 2142 /* LP1+ register values */
cca32e9a 2143 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
1fd527cc 2144 const struct intel_wm_level *r;
801bcfff 2145
b380ca3c 2146 level = ilk_wm_lp_to_level(wm_lp, merged);
0b2ae6d7 2147
0362c781 2148 r = &merged->wm[level];
cca32e9a 2149
d52fea5b
VS
2150 /*
2151 * Maintain the watermark values even if the level is
2152 * disabled. Doing otherwise could cause underruns.
2153 */
2154 results->wm_lp[wm_lp - 1] =
a68d68ee 2155 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
416f4727
VS
2156 (r->pri_val << WM1_LP_SR_SHIFT) |
2157 r->cur_val;
2158
d52fea5b
VS
2159 if (r->enable)
2160 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2161
416f4727
VS
2162 if (INTEL_INFO(dev)->gen >= 8)
2163 results->wm_lp[wm_lp - 1] |=
2164 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2165 else
2166 results->wm_lp[wm_lp - 1] |=
2167 r->fbc_val << WM1_LP_FBC_SHIFT;
2168
d52fea5b
VS
2169 /*
2170 * Always set WM1S_LP_EN when spr_val != 0, even if the
2171 * level is disabled. Doing otherwise could cause underruns.
2172 */
6cef2b8a
VS
2173 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2174 WARN_ON(wm_lp != 1);
2175 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2176 } else
2177 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
cca32e9a 2178 }
801bcfff 2179
0b2ae6d7 2180 /* LP0 register values */
d3fcc808 2181 for_each_intel_crtc(dev, intel_crtc) {
0b2ae6d7
VS
2182 enum pipe pipe = intel_crtc->pipe;
2183 const struct intel_wm_level *r =
2184 &intel_crtc->wm.active.wm[0];
2185
2186 if (WARN_ON(!r->enable))
2187 continue;
2188
2189 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
1011d8c4 2190
0b2ae6d7
VS
2191 results->wm_pipe[pipe] =
2192 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2193 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2194 r->cur_val;
801bcfff
PZ
2195 }
2196}
2197
861f3389
PZ
2198/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2199 * case both are at the same level. Prefer r1 in case they're the same. */
820c1980 2200static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
198a1e9b
VS
2201 struct intel_pipe_wm *r1,
2202 struct intel_pipe_wm *r2)
861f3389 2203{
198a1e9b
VS
2204 int level, max_level = ilk_wm_max_level(dev);
2205 int level1 = 0, level2 = 0;
861f3389 2206
198a1e9b
VS
2207 for (level = 1; level <= max_level; level++) {
2208 if (r1->wm[level].enable)
2209 level1 = level;
2210 if (r2->wm[level].enable)
2211 level2 = level;
861f3389
PZ
2212 }
2213
198a1e9b
VS
2214 if (level1 == level2) {
2215 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
861f3389
PZ
2216 return r2;
2217 else
2218 return r1;
198a1e9b 2219 } else if (level1 > level2) {
861f3389
PZ
2220 return r1;
2221 } else {
2222 return r2;
2223 }
2224}
2225
49a687c4
VS
2226/* dirty bits used to track which watermarks need changes */
2227#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2228#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2229#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2230#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2231#define WM_DIRTY_FBC (1 << 24)
2232#define WM_DIRTY_DDB (1 << 25)
2233
055e393f 2234static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
820c1980
ID
2235 const struct ilk_wm_values *old,
2236 const struct ilk_wm_values *new)
49a687c4
VS
2237{
2238 unsigned int dirty = 0;
2239 enum pipe pipe;
2240 int wm_lp;
2241
055e393f 2242 for_each_pipe(dev_priv, pipe) {
49a687c4
VS
2243 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2244 dirty |= WM_DIRTY_LINETIME(pipe);
2245 /* Must disable LP1+ watermarks too */
2246 dirty |= WM_DIRTY_LP_ALL;
2247 }
2248
2249 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2250 dirty |= WM_DIRTY_PIPE(pipe);
2251 /* Must disable LP1+ watermarks too */
2252 dirty |= WM_DIRTY_LP_ALL;
2253 }
2254 }
2255
2256 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2257 dirty |= WM_DIRTY_FBC;
2258 /* Must disable LP1+ watermarks too */
2259 dirty |= WM_DIRTY_LP_ALL;
2260 }
2261
2262 if (old->partitioning != new->partitioning) {
2263 dirty |= WM_DIRTY_DDB;
2264 /* Must disable LP1+ watermarks too */
2265 dirty |= WM_DIRTY_LP_ALL;
2266 }
2267
2268 /* LP1+ watermarks already deemed dirty, no need to continue */
2269 if (dirty & WM_DIRTY_LP_ALL)
2270 return dirty;
2271
2272 /* Find the lowest numbered LP1+ watermark in need of an update... */
2273 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2274 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2275 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2276 break;
2277 }
2278
2279 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2280 for (; wm_lp <= 3; wm_lp++)
2281 dirty |= WM_DIRTY_LP(wm_lp);
2282
2283 return dirty;
2284}
2285
8553c18e
VS
2286static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2287 unsigned int dirty)
801bcfff 2288{
820c1980 2289 struct ilk_wm_values *previous = &dev_priv->wm.hw;
8553c18e 2290 bool changed = false;
801bcfff 2291
facd619b
VS
2292 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2293 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2294 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
8553c18e 2295 changed = true;
facd619b
VS
2296 }
2297 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2298 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2299 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
8553c18e 2300 changed = true;
facd619b
VS
2301 }
2302 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2303 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2304 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
8553c18e 2305 changed = true;
facd619b 2306 }
801bcfff 2307
facd619b
VS
2308 /*
2309 * Don't touch WM1S_LP_EN here.
2310 * Doing so could cause underruns.
2311 */
6cef2b8a 2312
8553c18e
VS
2313 return changed;
2314}
2315
2316/*
2317 * The spec says we shouldn't write when we don't need, because every write
2318 * causes WMs to be re-evaluated, expending some power.
2319 */
820c1980
ID
2320static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2321 struct ilk_wm_values *results)
8553c18e
VS
2322{
2323 struct drm_device *dev = dev_priv->dev;
820c1980 2324 struct ilk_wm_values *previous = &dev_priv->wm.hw;
8553c18e
VS
2325 unsigned int dirty;
2326 uint32_t val;
2327
055e393f 2328 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
8553c18e
VS
2329 if (!dirty)
2330 return;
2331
2332 _ilk_disable_lp_wm(dev_priv, dirty);
2333
49a687c4 2334 if (dirty & WM_DIRTY_PIPE(PIPE_A))
801bcfff 2335 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
49a687c4 2336 if (dirty & WM_DIRTY_PIPE(PIPE_B))
801bcfff 2337 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
49a687c4 2338 if (dirty & WM_DIRTY_PIPE(PIPE_C))
801bcfff
PZ
2339 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2340
49a687c4 2341 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
801bcfff 2342 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
49a687c4 2343 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
801bcfff 2344 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
49a687c4 2345 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
801bcfff
PZ
2346 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2347
49a687c4 2348 if (dirty & WM_DIRTY_DDB) {
a42a5719 2349 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
ac9545fd
VS
2350 val = I915_READ(WM_MISC);
2351 if (results->partitioning == INTEL_DDB_PART_1_2)
2352 val &= ~WM_MISC_DATA_PARTITION_5_6;
2353 else
2354 val |= WM_MISC_DATA_PARTITION_5_6;
2355 I915_WRITE(WM_MISC, val);
2356 } else {
2357 val = I915_READ(DISP_ARB_CTL2);
2358 if (results->partitioning == INTEL_DDB_PART_1_2)
2359 val &= ~DISP_DATA_PARTITION_5_6;
2360 else
2361 val |= DISP_DATA_PARTITION_5_6;
2362 I915_WRITE(DISP_ARB_CTL2, val);
2363 }
1011d8c4
PZ
2364 }
2365
49a687c4 2366 if (dirty & WM_DIRTY_FBC) {
cca32e9a
PZ
2367 val = I915_READ(DISP_ARB_CTL);
2368 if (results->enable_fbc_wm)
2369 val &= ~DISP_FBC_WM_DIS;
2370 else
2371 val |= DISP_FBC_WM_DIS;
2372 I915_WRITE(DISP_ARB_CTL, val);
2373 }
2374
954911eb
ID
2375 if (dirty & WM_DIRTY_LP(1) &&
2376 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2377 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2378
2379 if (INTEL_INFO(dev)->gen >= 7) {
6cef2b8a
VS
2380 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2381 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2382 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2383 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2384 }
801bcfff 2385
facd619b 2386 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
801bcfff 2387 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
facd619b 2388 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
801bcfff 2389 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
facd619b 2390 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
801bcfff 2391 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
609cedef
VS
2392
2393 dev_priv->wm.hw = *results;
801bcfff
PZ
2394}
2395
8553c18e
VS
2396static bool ilk_disable_lp_wm(struct drm_device *dev)
2397{
2398 struct drm_i915_private *dev_priv = dev->dev_private;
2399
2400 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2401}
2402
b9cec075
DL
2403/*
2404 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2405 * different active planes.
2406 */
2407
2408#define SKL_DDB_SIZE 896 /* in blocks */
2409
2410static void
2411skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2412 struct drm_crtc *for_crtc,
2413 const struct intel_wm_config *config,
2414 const struct skl_pipe_wm_parameters *params,
2415 struct skl_ddb_entry *alloc /* out */)
2416{
2417 struct drm_crtc *crtc;
2418 unsigned int pipe_size, ddb_size;
2419 int nth_active_pipe;
2420
2421 if (!params->active) {
2422 alloc->start = 0;
2423 alloc->end = 0;
2424 return;
2425 }
2426
2427 ddb_size = SKL_DDB_SIZE;
2428
2429 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2430
2431 nth_active_pipe = 0;
2432 for_each_crtc(dev, crtc) {
2433 if (!intel_crtc_active(crtc))
2434 continue;
2435
2436 if (crtc == for_crtc)
2437 break;
2438
2439 nth_active_pipe++;
2440 }
2441
2442 pipe_size = ddb_size / config->num_pipes_active;
2443 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
16160e3d 2444 alloc->end = alloc->start + pipe_size;
b9cec075
DL
2445}
2446
2447static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2448{
2449 if (config->num_pipes_active == 1)
2450 return 32;
2451
2452 return 8;
2453}
2454
a269c583
DL
2455static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2456{
2457 entry->start = reg & 0x3ff;
2458 entry->end = (reg >> 16) & 0x3ff;
16160e3d
DL
2459 if (entry->end)
2460 entry->end += 1;
a269c583
DL
2461}
2462
08db6652
DL
2463void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2464 struct skl_ddb_allocation *ddb /* out */)
a269c583
DL
2465{
2466 struct drm_device *dev = dev_priv->dev;
2467 enum pipe pipe;
2468 int plane;
2469 u32 val;
2470
2471 for_each_pipe(dev_priv, pipe) {
2472 for_each_plane(pipe, plane) {
2473 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2474 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2475 val);
2476 }
2477
2478 val = I915_READ(CUR_BUF_CFG(pipe));
2479 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2480 }
2481}
2482
b9cec075
DL
2483static unsigned int
2484skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p)
2485{
2486 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2487}
2488
2489/*
2490 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2491 * a 8192x4096@32bpp framebuffer:
2492 * 3 * 4096 * 8192 * 4 < 2^32
2493 */
2494static unsigned int
2495skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2496 const struct skl_pipe_wm_parameters *params)
2497{
2498 unsigned int total_data_rate = 0;
2499 int plane;
2500
2501 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2502 const struct intel_plane_wm_parameters *p;
2503
2504 p = &params->plane[plane];
2505 if (!p->enabled)
2506 continue;
2507
2508 total_data_rate += skl_plane_relative_data_rate(p);
2509 }
2510
2511 return total_data_rate;
2512}
2513
2514static void
2515skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2516 const struct intel_wm_config *config,
2517 const struct skl_pipe_wm_parameters *params,
2518 struct skl_ddb_allocation *ddb /* out */)
2519{
2520 struct drm_device *dev = crtc->dev;
2521 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2522 enum pipe pipe = intel_crtc->pipe;
34bb56af 2523 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
b9cec075
DL
2524 uint16_t alloc_size, start, cursor_blocks;
2525 unsigned int total_data_rate;
2526 int plane;
2527
34bb56af
DL
2528 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2529 alloc_size = skl_ddb_entry_size(alloc);
b9cec075
DL
2530 if (alloc_size == 0) {
2531 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2532 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2533 return;
2534 }
2535
2536 cursor_blocks = skl_cursor_allocation(config);
34bb56af
DL
2537 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2538 ddb->cursor[pipe].end = alloc->end;
b9cec075
DL
2539
2540 alloc_size -= cursor_blocks;
34bb56af 2541 alloc->end -= cursor_blocks;
b9cec075
DL
2542
2543 /*
2544 * Each active plane get a portion of the remaining space, in
2545 * proportion to the amount of data they need to fetch from memory.
2546 *
2547 * FIXME: we may not allocate every single block here.
2548 */
2549 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
2550
34bb56af 2551 start = alloc->start;
b9cec075
DL
2552 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2553 const struct intel_plane_wm_parameters *p;
2554 unsigned int data_rate;
2555 uint16_t plane_blocks;
2556
2557 p = &params->plane[plane];
2558 if (!p->enabled)
2559 continue;
2560
2561 data_rate = skl_plane_relative_data_rate(p);
2562
2563 /*
2564 * promote the expression to 64 bits to avoid overflowing, the
2565 * result is < available as data_rate / total_data_rate < 1
2566 */
2567 plane_blocks = div_u64((uint64_t)alloc_size * data_rate,
2568 total_data_rate);
2569
2570 ddb->plane[pipe][plane].start = start;
16160e3d 2571 ddb->plane[pipe][plane].end = start + plane_blocks;
b9cec075
DL
2572
2573 start += plane_blocks;
2574 }
2575
2576}
2577
5cec258b 2578static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
2d41c0b5
PB
2579{
2580 /* TODO: Take into account the scalers once we support them */
2d112de7 2581 return config->base.adjusted_mode.crtc_clock;
2d41c0b5
PB
2582}
2583
2584/*
2585 * The max latency should be 257 (max the punit can code is 255 and we add 2us
2586 * for the read latency) and bytes_per_pixel should always be <= 8, so that
2587 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
2588 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
2589*/
2590static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2591 uint32_t latency)
2592{
2593 uint32_t wm_intermediate_val, ret;
2594
2595 if (latency == 0)
2596 return UINT_MAX;
2597
2598 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel;
2599 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
2600
2601 return ret;
2602}
2603
2604static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
2605 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2606 uint32_t latency)
2607{
2608 uint32_t ret, plane_bytes_per_line, wm_intermediate_val;
2609
2610 if (latency == 0)
2611 return UINT_MAX;
2612
2613 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
2614 wm_intermediate_val = latency * pixel_rate;
2615 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
2616 plane_bytes_per_line;
2617
2618 return ret;
2619}
2620
2d41c0b5
PB
2621static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
2622 const struct intel_crtc *intel_crtc)
2623{
2624 struct drm_device *dev = intel_crtc->base.dev;
2625 struct drm_i915_private *dev_priv = dev->dev_private;
2626 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
2627 enum pipe pipe = intel_crtc->pipe;
2628
2629 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
2630 sizeof(new_ddb->plane[pipe])))
2631 return true;
2632
2633 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
2634 sizeof(new_ddb->cursor[pipe])))
2635 return true;
2636
2637 return false;
2638}
2639
2640static void skl_compute_wm_global_parameters(struct drm_device *dev,
2641 struct intel_wm_config *config)
2642{
2643 struct drm_crtc *crtc;
2644 struct drm_plane *plane;
2645
2646 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
2647 config->num_pipes_active += intel_crtc_active(crtc);
2648
2649 /* FIXME: I don't think we need those two global parameters on SKL */
2650 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2651 struct intel_plane *intel_plane = to_intel_plane(plane);
2652
2653 config->sprites_enabled |= intel_plane->wm.enabled;
2654 config->sprites_scaled |= intel_plane->wm.scaled;
2655 }
2656}
2657
2658static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
2659 struct skl_pipe_wm_parameters *p)
2660{
2661 struct drm_device *dev = crtc->dev;
2662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2663 enum pipe pipe = intel_crtc->pipe;
2664 struct drm_plane *plane;
2665 int i = 1; /* Index for sprite planes start */
2666
2667 p->active = intel_crtc_active(crtc);
2668 if (p->active) {
6e3c9717
ACO
2669 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
2670 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
2d41c0b5
PB
2671
2672 /*
2673 * For now, assume primary and cursor planes are always enabled.
2674 */
2675 p->plane[0].enabled = true;
2676 p->plane[0].bytes_per_pixel =
2677 crtc->primary->fb->bits_per_pixel / 8;
6e3c9717
ACO
2678 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
2679 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
2d41c0b5
PB
2680
2681 p->cursor.enabled = true;
2682 p->cursor.bytes_per_pixel = 4;
2683 p->cursor.horiz_pixels = intel_crtc->cursor_width ?
2684 intel_crtc->cursor_width : 64;
2685 }
2686
2687 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2688 struct intel_plane *intel_plane = to_intel_plane(plane);
2689
a712f8eb
SJ
2690 if (intel_plane->pipe == pipe &&
2691 plane->type == DRM_PLANE_TYPE_OVERLAY)
2d41c0b5
PB
2692 p->plane[i++] = intel_plane->wm;
2693 }
2694}
2695
2696static bool skl_compute_plane_wm(struct skl_pipe_wm_parameters *p,
afb024aa
DL
2697 struct intel_plane_wm_parameters *p_params,
2698 uint16_t ddb_allocation,
2699 uint32_t mem_value,
2700 uint16_t *out_blocks, /* out */
2701 uint8_t *out_lines /* out */)
2d41c0b5 2702{
e6d66171 2703 uint32_t method1, method2, plane_bytes_per_line, res_blocks, res_lines;
2d41c0b5
PB
2704 uint32_t result_bytes;
2705
4f947386 2706 if (mem_value == 0 || !p->active || !p_params->enabled)
2d41c0b5
PB
2707 return false;
2708
2709 method1 = skl_wm_method1(p->pixel_rate,
2710 p_params->bytes_per_pixel,
2711 mem_value);
2712 method2 = skl_wm_method2(p->pixel_rate,
2713 p->pipe_htotal,
2714 p_params->horiz_pixels,
2715 p_params->bytes_per_pixel,
2716 mem_value);
2717
2718 plane_bytes_per_line = p_params->horiz_pixels *
2719 p_params->bytes_per_pixel;
2720
2721 /* For now xtile and linear */
21fca258 2722 if (((ddb_allocation * 512) / plane_bytes_per_line) >= 1)
2d41c0b5
PB
2723 result_bytes = min(method1, method2);
2724 else
2725 result_bytes = method1;
2726
e6d66171
DL
2727 res_blocks = DIV_ROUND_UP(result_bytes, 512) + 1;
2728 res_lines = DIV_ROUND_UP(result_bytes, plane_bytes_per_line);
2729
2730 if (res_blocks > ddb_allocation || res_lines > 31)
2731 return false;
2732
2733 *out_blocks = res_blocks;
2734 *out_lines = res_lines;
2d41c0b5
PB
2735
2736 return true;
2737}
2738
2739static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
2740 struct skl_ddb_allocation *ddb,
2741 struct skl_pipe_wm_parameters *p,
2742 enum pipe pipe,
2743 int level,
2744 int num_planes,
2745 struct skl_wm_level *result)
2746{
2747 uint16_t latency = dev_priv->wm.skl_latency[level];
2748 uint16_t ddb_blocks;
2749 int i;
2750
2751 for (i = 0; i < num_planes; i++) {
2752 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
2753
2754 result->plane_en[i] = skl_compute_plane_wm(p, &p->plane[i],
2755 ddb_blocks,
2756 latency,
2757 &result->plane_res_b[i],
2758 &result->plane_res_l[i]);
2759 }
2760
2761 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
2762 result->cursor_en = skl_compute_plane_wm(p, &p->cursor, ddb_blocks,
2763 latency, &result->cursor_res_b,
2764 &result->cursor_res_l);
2765}
2766
407b50f3
DL
2767static uint32_t
2768skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
2769{
2770 if (!intel_crtc_active(crtc))
2771 return 0;
2772
2773 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
2774
2775}
2776
2777static void skl_compute_transition_wm(struct drm_crtc *crtc,
2778 struct skl_pipe_wm_parameters *params,
9414f563 2779 struct skl_wm_level *trans_wm /* out */)
407b50f3 2780{
9414f563
DL
2781 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2782 int i;
2783
407b50f3
DL
2784 if (!params->active)
2785 return;
9414f563
DL
2786
2787 /* Until we know more, just disable transition WMs */
2788 for (i = 0; i < intel_num_planes(intel_crtc); i++)
2789 trans_wm->plane_en[i] = false;
2790 trans_wm->cursor_en = false;
407b50f3
DL
2791}
2792
2d41c0b5
PB
2793static void skl_compute_pipe_wm(struct drm_crtc *crtc,
2794 struct skl_ddb_allocation *ddb,
2795 struct skl_pipe_wm_parameters *params,
2796 struct skl_pipe_wm *pipe_wm)
2797{
2798 struct drm_device *dev = crtc->dev;
2799 const struct drm_i915_private *dev_priv = dev->dev_private;
2800 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2801 int level, max_level = ilk_wm_max_level(dev);
2802
2803 for (level = 0; level <= max_level; level++) {
2804 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
2805 level, intel_num_planes(intel_crtc),
2806 &pipe_wm->wm[level]);
2807 }
2808 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
2809
9414f563 2810 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
2d41c0b5
PB
2811}
2812
2813static void skl_compute_wm_results(struct drm_device *dev,
2814 struct skl_pipe_wm_parameters *p,
2815 struct skl_pipe_wm *p_wm,
2816 struct skl_wm_values *r,
2817 struct intel_crtc *intel_crtc)
2818{
2819 int level, max_level = ilk_wm_max_level(dev);
2820 enum pipe pipe = intel_crtc->pipe;
9414f563
DL
2821 uint32_t temp;
2822 int i;
2d41c0b5
PB
2823
2824 for (level = 0; level <= max_level; level++) {
2d41c0b5
PB
2825 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
2826 temp = 0;
2d41c0b5
PB
2827
2828 temp |= p_wm->wm[level].plane_res_l[i] <<
2829 PLANE_WM_LINES_SHIFT;
2830 temp |= p_wm->wm[level].plane_res_b[i];
2831 if (p_wm->wm[level].plane_en[i])
2832 temp |= PLANE_WM_EN;
2833
2834 r->plane[pipe][i][level] = temp;
2d41c0b5
PB
2835 }
2836
2837 temp = 0;
2d41c0b5
PB
2838
2839 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
2840 temp |= p_wm->wm[level].cursor_res_b;
2841
2842 if (p_wm->wm[level].cursor_en)
2843 temp |= PLANE_WM_EN;
2844
2845 r->cursor[pipe][level] = temp;
2d41c0b5
PB
2846
2847 }
2848
9414f563
DL
2849 /* transition WMs */
2850 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
2851 temp = 0;
2852 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
2853 temp |= p_wm->trans_wm.plane_res_b[i];
2854 if (p_wm->trans_wm.plane_en[i])
2855 temp |= PLANE_WM_EN;
2856
2857 r->plane_trans[pipe][i] = temp;
2858 }
2859
2860 temp = 0;
2861 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
2862 temp |= p_wm->trans_wm.cursor_res_b;
2863 if (p_wm->trans_wm.cursor_en)
2864 temp |= PLANE_WM_EN;
2865
2866 r->cursor_trans[pipe] = temp;
2867
2d41c0b5
PB
2868 r->wm_linetime[pipe] = p_wm->linetime;
2869}
2870
16160e3d
DL
2871static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
2872 const struct skl_ddb_entry *entry)
2873{
2874 if (entry->end)
2875 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
2876 else
2877 I915_WRITE(reg, 0);
2878}
2879
2d41c0b5
PB
2880static void skl_write_wm_values(struct drm_i915_private *dev_priv,
2881 const struct skl_wm_values *new)
2882{
2883 struct drm_device *dev = dev_priv->dev;
2884 struct intel_crtc *crtc;
2885
2886 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
2887 int i, level, max_level = ilk_wm_max_level(dev);
2888 enum pipe pipe = crtc->pipe;
2889
5d374d96
DL
2890 if (!new->dirty[pipe])
2891 continue;
8211bd5b 2892
5d374d96 2893 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
8211bd5b 2894
5d374d96
DL
2895 for (level = 0; level <= max_level; level++) {
2896 for (i = 0; i < intel_num_planes(crtc); i++)
2897 I915_WRITE(PLANE_WM(pipe, i, level),
2898 new->plane[pipe][i][level]);
2899 I915_WRITE(CUR_WM(pipe, level),
2900 new->cursor[pipe][level]);
2d41c0b5 2901 }
5d374d96
DL
2902 for (i = 0; i < intel_num_planes(crtc); i++)
2903 I915_WRITE(PLANE_WM_TRANS(pipe, i),
2904 new->plane_trans[pipe][i]);
2905 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
2906
2907 for (i = 0; i < intel_num_planes(crtc); i++)
2908 skl_ddb_entry_write(dev_priv,
2909 PLANE_BUF_CFG(pipe, i),
2910 &new->ddb.plane[pipe][i]);
2911
2912 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
2913 &new->ddb.cursor[pipe]);
2d41c0b5 2914 }
2d41c0b5
PB
2915}
2916
0e8fb7ba
DL
2917/*
2918 * When setting up a new DDB allocation arrangement, we need to correctly
2919 * sequence the times at which the new allocations for the pipes are taken into
2920 * account or we'll have pipes fetching from space previously allocated to
2921 * another pipe.
2922 *
2923 * Roughly the sequence looks like:
2924 * 1. re-allocate the pipe(s) with the allocation being reduced and not
2925 * overlapping with a previous light-up pipe (another way to put it is:
2926 * pipes with their new allocation strickly included into their old ones).
2927 * 2. re-allocate the other pipes that get their allocation reduced
2928 * 3. allocate the pipes having their allocation increased
2929 *
2930 * Steps 1. and 2. are here to take care of the following case:
2931 * - Initially DDB looks like this:
2932 * | B | C |
2933 * - enable pipe A.
2934 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
2935 * allocation
2936 * | A | B | C |
2937 *
2938 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
2939 */
2940
d21b795c
DL
2941static void
2942skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
0e8fb7ba
DL
2943{
2944 struct drm_device *dev = dev_priv->dev;
2945 int plane;
2946
d21b795c
DL
2947 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
2948
0e8fb7ba
DL
2949 for_each_plane(pipe, plane) {
2950 I915_WRITE(PLANE_SURF(pipe, plane),
2951 I915_READ(PLANE_SURF(pipe, plane)));
2952 }
2953 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
2954}
2955
2956static bool
2957skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
2958 const struct skl_ddb_allocation *new,
2959 enum pipe pipe)
2960{
2961 uint16_t old_size, new_size;
2962
2963 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
2964 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
2965
2966 return old_size != new_size &&
2967 new->pipe[pipe].start >= old->pipe[pipe].start &&
2968 new->pipe[pipe].end <= old->pipe[pipe].end;
2969}
2970
2971static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
2972 struct skl_wm_values *new_values)
2973{
2974 struct drm_device *dev = dev_priv->dev;
2975 struct skl_ddb_allocation *cur_ddb, *new_ddb;
2976 bool reallocated[I915_MAX_PIPES] = {false, false, false};
2977 struct intel_crtc *crtc;
2978 enum pipe pipe;
2979
2980 new_ddb = &new_values->ddb;
2981 cur_ddb = &dev_priv->wm.skl_hw.ddb;
2982
2983 /*
2984 * First pass: flush the pipes with the new allocation contained into
2985 * the old space.
2986 *
2987 * We'll wait for the vblank on those pipes to ensure we can safely
2988 * re-allocate the freed space without this pipe fetching from it.
2989 */
2990 for_each_intel_crtc(dev, crtc) {
2991 if (!crtc->active)
2992 continue;
2993
2994 pipe = crtc->pipe;
2995
2996 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
2997 continue;
2998
d21b795c 2999 skl_wm_flush_pipe(dev_priv, pipe, 1);
0e8fb7ba
DL
3000 intel_wait_for_vblank(dev, pipe);
3001
3002 reallocated[pipe] = true;
3003 }
3004
3005
3006 /*
3007 * Second pass: flush the pipes that are having their allocation
3008 * reduced, but overlapping with a previous allocation.
3009 *
3010 * Here as well we need to wait for the vblank to make sure the freed
3011 * space is not used anymore.
3012 */
3013 for_each_intel_crtc(dev, crtc) {
3014 if (!crtc->active)
3015 continue;
3016
3017 pipe = crtc->pipe;
3018
3019 if (reallocated[pipe])
3020 continue;
3021
3022 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3023 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
d21b795c 3024 skl_wm_flush_pipe(dev_priv, pipe, 2);
0e8fb7ba 3025 intel_wait_for_vblank(dev, pipe);
d9d8e6b3 3026 reallocated[pipe] = true;
0e8fb7ba 3027 }
0e8fb7ba
DL
3028 }
3029
3030 /*
3031 * Third pass: flush the pipes that got more space allocated.
3032 *
3033 * We don't need to actively wait for the update here, next vblank
3034 * will just get more DDB space with the correct WM values.
3035 */
3036 for_each_intel_crtc(dev, crtc) {
3037 if (!crtc->active)
3038 continue;
3039
3040 pipe = crtc->pipe;
3041
3042 /*
3043 * At this point, only the pipes more space than before are
3044 * left to re-allocate.
3045 */
3046 if (reallocated[pipe])
3047 continue;
3048
d21b795c 3049 skl_wm_flush_pipe(dev_priv, pipe, 3);
0e8fb7ba
DL
3050 }
3051}
3052
2d41c0b5
PB
3053static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3054 struct skl_pipe_wm_parameters *params,
3055 struct intel_wm_config *config,
3056 struct skl_ddb_allocation *ddb, /* out */
3057 struct skl_pipe_wm *pipe_wm /* out */)
3058{
3059 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3060
3061 skl_compute_wm_pipe_parameters(crtc, params);
b9cec075 3062 skl_allocate_pipe_ddb(crtc, config, params, ddb);
2d41c0b5
PB
3063 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3064
3065 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3066 return false;
3067
3068 intel_crtc->wm.skl_active = *pipe_wm;
3069 return true;
3070}
3071
3072static void skl_update_other_pipe_wm(struct drm_device *dev,
3073 struct drm_crtc *crtc,
3074 struct intel_wm_config *config,
3075 struct skl_wm_values *r)
3076{
3077 struct intel_crtc *intel_crtc;
3078 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3079
3080 /*
3081 * If the WM update hasn't changed the allocation for this_crtc (the
3082 * crtc we are currently computing the new WM values for), other
3083 * enabled crtcs will keep the same allocation and we don't need to
3084 * recompute anything for them.
3085 */
3086 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3087 return;
3088
3089 /*
3090 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3091 * other active pipes need new DDB allocation and WM values.
3092 */
3093 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3094 base.head) {
3095 struct skl_pipe_wm_parameters params = {};
3096 struct skl_pipe_wm pipe_wm = {};
3097 bool wm_changed;
3098
3099 if (this_crtc->pipe == intel_crtc->pipe)
3100 continue;
3101
3102 if (!intel_crtc->active)
3103 continue;
3104
3105 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3106 &params, config,
3107 &r->ddb, &pipe_wm);
3108
3109 /*
3110 * If we end up re-computing the other pipe WM values, it's
3111 * because it was really needed, so we expect the WM values to
3112 * be different.
3113 */
3114 WARN_ON(!wm_changed);
3115
3116 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3117 r->dirty[intel_crtc->pipe] = true;
3118 }
3119}
3120
3121static void skl_update_wm(struct drm_crtc *crtc)
3122{
3123 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3124 struct drm_device *dev = crtc->dev;
3125 struct drm_i915_private *dev_priv = dev->dev_private;
3126 struct skl_pipe_wm_parameters params = {};
3127 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3128 struct skl_pipe_wm pipe_wm = {};
3129 struct intel_wm_config config = {};
3130
3131 memset(results, 0, sizeof(*results));
3132
3133 skl_compute_wm_global_parameters(dev, &config);
3134
3135 if (!skl_update_pipe_wm(crtc, &params, &config,
3136 &results->ddb, &pipe_wm))
3137 return;
3138
3139 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3140 results->dirty[intel_crtc->pipe] = true;
3141
3142 skl_update_other_pipe_wm(dev, crtc, &config, results);
3143 skl_write_wm_values(dev_priv, results);
0e8fb7ba 3144 skl_flush_wm_values(dev_priv, results);
53b0deb4
DL
3145
3146 /* store the new configuration */
3147 dev_priv->wm.skl_hw = *results;
2d41c0b5
PB
3148}
3149
3150static void
3151skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3152 uint32_t sprite_width, uint32_t sprite_height,
3153 int pixel_size, bool enabled, bool scaled)
3154{
3155 struct intel_plane *intel_plane = to_intel_plane(plane);
3156
3157 intel_plane->wm.enabled = enabled;
3158 intel_plane->wm.scaled = scaled;
3159 intel_plane->wm.horiz_pixels = sprite_width;
3160 intel_plane->wm.vert_pixels = sprite_height;
3161 intel_plane->wm.bytes_per_pixel = pixel_size;
3162
3163 skl_update_wm(crtc);
3164}
3165
820c1980 3166static void ilk_update_wm(struct drm_crtc *crtc)
801bcfff 3167{
7c4a395f 3168 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
46ba614c 3169 struct drm_device *dev = crtc->dev;
801bcfff 3170 struct drm_i915_private *dev_priv = dev->dev_private;
820c1980
ID
3171 struct ilk_wm_maximums max;
3172 struct ilk_pipe_wm_parameters params = {};
3173 struct ilk_wm_values results = {};
77c122bc 3174 enum intel_ddb_partitioning partitioning;
7c4a395f 3175 struct intel_pipe_wm pipe_wm = {};
198a1e9b 3176 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
a485bfb8 3177 struct intel_wm_config config = {};
7c4a395f 3178
2a44b76b 3179 ilk_compute_wm_parameters(crtc, &params);
7c4a395f
VS
3180
3181 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3182
3183 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3184 return;
861f3389 3185
7c4a395f 3186 intel_crtc->wm.active = pipe_wm;
861f3389 3187
2a44b76b
VS
3188 ilk_compute_wm_config(dev, &config);
3189
34982fe1 3190 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
0ba22e26 3191 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
a485bfb8
VS
3192
3193 /* 5/6 split only in single pipe config on IVB+ */
ec98c8d1
VS
3194 if (INTEL_INFO(dev)->gen >= 7 &&
3195 config.num_pipes_active == 1 && config.sprites_enabled) {
34982fe1 3196 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
0ba22e26 3197 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
0362c781 3198
820c1980 3199 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
861f3389 3200 } else {
198a1e9b 3201 best_lp_wm = &lp_wm_1_2;
861f3389
PZ
3202 }
3203
198a1e9b 3204 partitioning = (best_lp_wm == &lp_wm_1_2) ?
77c122bc 3205 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
801bcfff 3206
820c1980 3207 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
609cedef 3208
820c1980 3209 ilk_write_wm_values(dev_priv, &results);
1011d8c4
PZ
3210}
3211
ed57cb8a
DL
3212static void
3213ilk_update_sprite_wm(struct drm_plane *plane,
3214 struct drm_crtc *crtc,
3215 uint32_t sprite_width, uint32_t sprite_height,
3216 int pixel_size, bool enabled, bool scaled)
526682e9 3217{
8553c18e 3218 struct drm_device *dev = plane->dev;
adf3d35e 3219 struct intel_plane *intel_plane = to_intel_plane(plane);
526682e9 3220
adf3d35e
VS
3221 intel_plane->wm.enabled = enabled;
3222 intel_plane->wm.scaled = scaled;
3223 intel_plane->wm.horiz_pixels = sprite_width;
ed57cb8a 3224 intel_plane->wm.vert_pixels = sprite_width;
adf3d35e 3225 intel_plane->wm.bytes_per_pixel = pixel_size;
526682e9 3226
8553c18e
VS
3227 /*
3228 * IVB workaround: must disable low power watermarks for at least
3229 * one frame before enabling scaling. LP watermarks can be re-enabled
3230 * when scaling is disabled.
3231 *
3232 * WaCxSRDisabledForSpriteScaling:ivb
3233 */
3234 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3235 intel_wait_for_vblank(dev, intel_plane->pipe);
3236
820c1980 3237 ilk_update_wm(crtc);
526682e9
PZ
3238}
3239
3078999f
PB
3240static void skl_pipe_wm_active_state(uint32_t val,
3241 struct skl_pipe_wm *active,
3242 bool is_transwm,
3243 bool is_cursor,
3244 int i,
3245 int level)
3246{
3247 bool is_enabled = (val & PLANE_WM_EN) != 0;
3248
3249 if (!is_transwm) {
3250 if (!is_cursor) {
3251 active->wm[level].plane_en[i] = is_enabled;
3252 active->wm[level].plane_res_b[i] =
3253 val & PLANE_WM_BLOCKS_MASK;
3254 active->wm[level].plane_res_l[i] =
3255 (val >> PLANE_WM_LINES_SHIFT) &
3256 PLANE_WM_LINES_MASK;
3257 } else {
3258 active->wm[level].cursor_en = is_enabled;
3259 active->wm[level].cursor_res_b =
3260 val & PLANE_WM_BLOCKS_MASK;
3261 active->wm[level].cursor_res_l =
3262 (val >> PLANE_WM_LINES_SHIFT) &
3263 PLANE_WM_LINES_MASK;
3264 }
3265 } else {
3266 if (!is_cursor) {
3267 active->trans_wm.plane_en[i] = is_enabled;
3268 active->trans_wm.plane_res_b[i] =
3269 val & PLANE_WM_BLOCKS_MASK;
3270 active->trans_wm.plane_res_l[i] =
3271 (val >> PLANE_WM_LINES_SHIFT) &
3272 PLANE_WM_LINES_MASK;
3273 } else {
3274 active->trans_wm.cursor_en = is_enabled;
3275 active->trans_wm.cursor_res_b =
3276 val & PLANE_WM_BLOCKS_MASK;
3277 active->trans_wm.cursor_res_l =
3278 (val >> PLANE_WM_LINES_SHIFT) &
3279 PLANE_WM_LINES_MASK;
3280 }
3281 }
3282}
3283
3284static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3285{
3286 struct drm_device *dev = crtc->dev;
3287 struct drm_i915_private *dev_priv = dev->dev_private;
3288 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3289 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3290 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3291 enum pipe pipe = intel_crtc->pipe;
3292 int level, i, max_level;
3293 uint32_t temp;
3294
3295 max_level = ilk_wm_max_level(dev);
3296
3297 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3298
3299 for (level = 0; level <= max_level; level++) {
3300 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3301 hw->plane[pipe][i][level] =
3302 I915_READ(PLANE_WM(pipe, i, level));
3303 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3304 }
3305
3306 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3307 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3308 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3309
3310 if (!intel_crtc_active(crtc))
3311 return;
3312
3313 hw->dirty[pipe] = true;
3314
3315 active->linetime = hw->wm_linetime[pipe];
3316
3317 for (level = 0; level <= max_level; level++) {
3318 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3319 temp = hw->plane[pipe][i][level];
3320 skl_pipe_wm_active_state(temp, active, false,
3321 false, i, level);
3322 }
3323 temp = hw->cursor[pipe][level];
3324 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3325 }
3326
3327 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3328 temp = hw->plane_trans[pipe][i];
3329 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3330 }
3331
3332 temp = hw->cursor_trans[pipe];
3333 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3334}
3335
3336void skl_wm_get_hw_state(struct drm_device *dev)
3337{
a269c583
DL
3338 struct drm_i915_private *dev_priv = dev->dev_private;
3339 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
3078999f
PB
3340 struct drm_crtc *crtc;
3341
a269c583 3342 skl_ddb_get_hw_state(dev_priv, ddb);
3078999f
PB
3343 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3344 skl_pipe_wm_get_hw_state(crtc);
3345}
3346
243e6a44
VS
3347static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3348{
3349 struct drm_device *dev = crtc->dev;
3350 struct drm_i915_private *dev_priv = dev->dev_private;
820c1980 3351 struct ilk_wm_values *hw = &dev_priv->wm.hw;
243e6a44
VS
3352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3353 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3354 enum pipe pipe = intel_crtc->pipe;
3355 static const unsigned int wm0_pipe_reg[] = {
3356 [PIPE_A] = WM0_PIPEA_ILK,
3357 [PIPE_B] = WM0_PIPEB_ILK,
3358 [PIPE_C] = WM0_PIPEC_IVB,
3359 };
3360
3361 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
a42a5719 3362 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ce0e0713 3363 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
243e6a44 3364
2a44b76b
VS
3365 active->pipe_enabled = intel_crtc_active(crtc);
3366
3367 if (active->pipe_enabled) {
243e6a44
VS
3368 u32 tmp = hw->wm_pipe[pipe];
3369
3370 /*
3371 * For active pipes LP0 watermark is marked as
3372 * enabled, and LP1+ watermaks as disabled since
3373 * we can't really reverse compute them in case
3374 * multiple pipes are active.
3375 */
3376 active->wm[0].enable = true;
3377 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3378 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3379 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3380 active->linetime = hw->wm_linetime[pipe];
3381 } else {
3382 int level, max_level = ilk_wm_max_level(dev);
3383
3384 /*
3385 * For inactive pipes, all watermark levels
3386 * should be marked as enabled but zeroed,
3387 * which is what we'd compute them to.
3388 */
3389 for (level = 0; level <= max_level; level++)
3390 active->wm[level].enable = true;
3391 }
3392}
3393
3394void ilk_wm_get_hw_state(struct drm_device *dev)
3395{
3396 struct drm_i915_private *dev_priv = dev->dev_private;
820c1980 3397 struct ilk_wm_values *hw = &dev_priv->wm.hw;
243e6a44
VS
3398 struct drm_crtc *crtc;
3399
70e1e0ec 3400 for_each_crtc(dev, crtc)
243e6a44
VS
3401 ilk_pipe_wm_get_hw_state(crtc);
3402
3403 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3404 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3405 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3406
3407 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
cfa7698b
VS
3408 if (INTEL_INFO(dev)->gen >= 7) {
3409 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3410 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3411 }
243e6a44 3412
a42a5719 3413 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ac9545fd
VS
3414 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3415 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3416 else if (IS_IVYBRIDGE(dev))
3417 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
3418 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
243e6a44
VS
3419
3420 hw->enable_fbc_wm =
3421 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3422}
3423
b445e3b0
ED
3424/**
3425 * intel_update_watermarks - update FIFO watermark values based on current modes
3426 *
3427 * Calculate watermark values for the various WM regs based on current mode
3428 * and plane configuration.
3429 *
3430 * There are several cases to deal with here:
3431 * - normal (i.e. non-self-refresh)
3432 * - self-refresh (SR) mode
3433 * - lines are large relative to FIFO size (buffer can hold up to 2)
3434 * - lines are small relative to FIFO size (buffer can hold more than 2
3435 * lines), so need to account for TLB latency
3436 *
3437 * The normal calculation is:
3438 * watermark = dotclock * bytes per pixel * latency
3439 * where latency is platform & configuration dependent (we assume pessimal
3440 * values here).
3441 *
3442 * The SR calculation is:
3443 * watermark = (trunc(latency/line time)+1) * surface width *
3444 * bytes per pixel
3445 * where
3446 * line time = htotal / dotclock
3447 * surface width = hdisplay for normal plane and 64 for cursor
3448 * and latency is assumed to be high, as above.
3449 *
3450 * The final value programmed to the register should always be rounded up,
3451 * and include an extra 2 entries to account for clock crossings.
3452 *
3453 * We don't use the sprite, so we can ignore that. And on Crestline we have
3454 * to set the non-SR watermarks to 8.
3455 */
46ba614c 3456void intel_update_watermarks(struct drm_crtc *crtc)
b445e3b0 3457{
46ba614c 3458 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
b445e3b0
ED
3459
3460 if (dev_priv->display.update_wm)
46ba614c 3461 dev_priv->display.update_wm(crtc);
b445e3b0
ED
3462}
3463
adf3d35e
VS
3464void intel_update_sprite_watermarks(struct drm_plane *plane,
3465 struct drm_crtc *crtc,
ed57cb8a
DL
3466 uint32_t sprite_width,
3467 uint32_t sprite_height,
3468 int pixel_size,
39db4a4d 3469 bool enabled, bool scaled)
b445e3b0 3470{
adf3d35e 3471 struct drm_i915_private *dev_priv = plane->dev->dev_private;
b445e3b0
ED
3472
3473 if (dev_priv->display.update_sprite_wm)
ed57cb8a
DL
3474 dev_priv->display.update_sprite_wm(plane, crtc,
3475 sprite_width, sprite_height,
39db4a4d 3476 pixel_size, enabled, scaled);
b445e3b0
ED
3477}
3478
2b4e57bd
ED
3479static struct drm_i915_gem_object *
3480intel_alloc_context_page(struct drm_device *dev)
3481{
3482 struct drm_i915_gem_object *ctx;
3483 int ret;
3484
3485 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3486
3487 ctx = i915_gem_alloc_object(dev, 4096);
3488 if (!ctx) {
3489 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3490 return NULL;
3491 }
3492
c69766f2 3493 ret = i915_gem_obj_ggtt_pin(ctx, 4096, 0);
2b4e57bd
ED
3494 if (ret) {
3495 DRM_ERROR("failed to pin power context: %d\n", ret);
3496 goto err_unref;
3497 }
3498
3499 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3500 if (ret) {
3501 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3502 goto err_unpin;
3503 }
3504
3505 return ctx;
3506
3507err_unpin:
d7f46fc4 3508 i915_gem_object_ggtt_unpin(ctx);
2b4e57bd
ED
3509err_unref:
3510 drm_gem_object_unreference(&ctx->base);
2b4e57bd
ED
3511 return NULL;
3512}
3513
9270388e
DV
3514/**
3515 * Lock protecting IPS related data structures
9270388e
DV
3516 */
3517DEFINE_SPINLOCK(mchdev_lock);
3518
3519/* Global for IPS driver to get at the current i915 device. Protected by
3520 * mchdev_lock. */
3521static struct drm_i915_private *i915_mch_dev;
3522
2b4e57bd
ED
3523bool ironlake_set_drps(struct drm_device *dev, u8 val)
3524{
3525 struct drm_i915_private *dev_priv = dev->dev_private;
3526 u16 rgvswctl;
3527
9270388e
DV
3528 assert_spin_locked(&mchdev_lock);
3529
2b4e57bd
ED
3530 rgvswctl = I915_READ16(MEMSWCTL);
3531 if (rgvswctl & MEMCTL_CMD_STS) {
3532 DRM_DEBUG("gpu busy, RCS change rejected\n");
3533 return false; /* still busy with another command */
3534 }
3535
3536 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3537 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3538 I915_WRITE16(MEMSWCTL, rgvswctl);
3539 POSTING_READ16(MEMSWCTL);
3540
3541 rgvswctl |= MEMCTL_CMD_STS;
3542 I915_WRITE16(MEMSWCTL, rgvswctl);
3543
3544 return true;
3545}
3546
8090c6b9 3547static void ironlake_enable_drps(struct drm_device *dev)
2b4e57bd
ED
3548{
3549 struct drm_i915_private *dev_priv = dev->dev_private;
3550 u32 rgvmodectl = I915_READ(MEMMODECTL);
3551 u8 fmax, fmin, fstart, vstart;
3552
9270388e
DV
3553 spin_lock_irq(&mchdev_lock);
3554
2b4e57bd
ED
3555 /* Enable temp reporting */
3556 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3557 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3558
3559 /* 100ms RC evaluation intervals */
3560 I915_WRITE(RCUPEI, 100000);
3561 I915_WRITE(RCDNEI, 100000);
3562
3563 /* Set max/min thresholds to 90ms and 80ms respectively */
3564 I915_WRITE(RCBMAXAVG, 90000);
3565 I915_WRITE(RCBMINAVG, 80000);
3566
3567 I915_WRITE(MEMIHYST, 1);
3568
3569 /* Set up min, max, and cur for interrupt handling */
3570 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3571 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3572 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3573 MEMMODE_FSTART_SHIFT;
3574
3575 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3576 PXVFREQ_PX_SHIFT;
3577
20e4d407
DV
3578 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3579 dev_priv->ips.fstart = fstart;
2b4e57bd 3580
20e4d407
DV
3581 dev_priv->ips.max_delay = fstart;
3582 dev_priv->ips.min_delay = fmin;
3583 dev_priv->ips.cur_delay = fstart;
2b4e57bd
ED
3584
3585 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3586 fmax, fmin, fstart);
3587
3588 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3589
3590 /*
3591 * Interrupts will be enabled in ironlake_irq_postinstall
3592 */
3593
3594 I915_WRITE(VIDSTART, vstart);
3595 POSTING_READ(VIDSTART);
3596
3597 rgvmodectl |= MEMMODE_SWMODE_EN;
3598 I915_WRITE(MEMMODECTL, rgvmodectl);
3599
9270388e 3600 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
2b4e57bd 3601 DRM_ERROR("stuck trying to change perf mode\n");
9270388e 3602 mdelay(1);
2b4e57bd
ED
3603
3604 ironlake_set_drps(dev, fstart);
3605
20e4d407 3606 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
2b4e57bd 3607 I915_READ(0x112e0);
20e4d407
DV
3608 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3609 dev_priv->ips.last_count2 = I915_READ(0x112f4);
5ed0bdf2 3610 dev_priv->ips.last_time2 = ktime_get_raw_ns();
9270388e
DV
3611
3612 spin_unlock_irq(&mchdev_lock);
2b4e57bd
ED
3613}
3614
8090c6b9 3615static void ironlake_disable_drps(struct drm_device *dev)
2b4e57bd
ED
3616{
3617 struct drm_i915_private *dev_priv = dev->dev_private;
9270388e
DV
3618 u16 rgvswctl;
3619
3620 spin_lock_irq(&mchdev_lock);
3621
3622 rgvswctl = I915_READ16(MEMSWCTL);
2b4e57bd
ED
3623
3624 /* Ack interrupts, disable EFC interrupt */
3625 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3626 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3627 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3628 I915_WRITE(DEIIR, DE_PCU_EVENT);
3629 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3630
3631 /* Go back to the starting frequency */
20e4d407 3632 ironlake_set_drps(dev, dev_priv->ips.fstart);
9270388e 3633 mdelay(1);
2b4e57bd
ED
3634 rgvswctl |= MEMCTL_CMD_STS;
3635 I915_WRITE(MEMSWCTL, rgvswctl);
9270388e 3636 mdelay(1);
2b4e57bd 3637
9270388e 3638 spin_unlock_irq(&mchdev_lock);
2b4e57bd
ED
3639}
3640
acbe9475
DV
3641/* There's a funny hw issue where the hw returns all 0 when reading from
3642 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3643 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3644 * all limits and the gpu stuck at whatever frequency it is at atm).
3645 */
6917c7b9 3646static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 val)
2b4e57bd 3647{
7b9e0ae6 3648 u32 limits;
2b4e57bd 3649
20b46e59
DV
3650 /* Only set the down limit when we've reached the lowest level to avoid
3651 * getting more interrupts, otherwise leave this clear. This prevents a
3652 * race in the hw when coming out of rc6: There's a tiny window where
3653 * the hw runs at the minimal clock before selecting the desired
3654 * frequency, if the down threshold expires in that window we will not
3655 * receive a down interrupt. */
b39fb297
BW
3656 limits = dev_priv->rps.max_freq_softlimit << 24;
3657 if (val <= dev_priv->rps.min_freq_softlimit)
3658 limits |= dev_priv->rps.min_freq_softlimit << 16;
20b46e59
DV
3659
3660 return limits;
3661}
3662
dd75fdc8
CW
3663static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3664{
3665 int new_power;
3666
3667 new_power = dev_priv->rps.power;
3668 switch (dev_priv->rps.power) {
3669 case LOW_POWER:
b39fb297 3670 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
dd75fdc8
CW
3671 new_power = BETWEEN;
3672 break;
3673
3674 case BETWEEN:
b39fb297 3675 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
dd75fdc8 3676 new_power = LOW_POWER;
b39fb297 3677 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
dd75fdc8
CW
3678 new_power = HIGH_POWER;
3679 break;
3680
3681 case HIGH_POWER:
b39fb297 3682 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 && val < dev_priv->rps.cur_freq)
dd75fdc8
CW
3683 new_power = BETWEEN;
3684 break;
3685 }
3686 /* Max/min bins are special */
b39fb297 3687 if (val == dev_priv->rps.min_freq_softlimit)
dd75fdc8 3688 new_power = LOW_POWER;
b39fb297 3689 if (val == dev_priv->rps.max_freq_softlimit)
dd75fdc8
CW
3690 new_power = HIGH_POWER;
3691 if (new_power == dev_priv->rps.power)
3692 return;
3693
3694 /* Note the units here are not exactly 1us, but 1280ns. */
3695 switch (new_power) {
3696 case LOW_POWER:
3697 /* Upclock if more than 95% busy over 16ms */
3698 I915_WRITE(GEN6_RP_UP_EI, 12500);
3699 I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800);
3700
3701 /* Downclock if less than 85% busy over 32ms */
3702 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3703 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250);
3704
3705 I915_WRITE(GEN6_RP_CONTROL,
3706 GEN6_RP_MEDIA_TURBO |
3707 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3708 GEN6_RP_MEDIA_IS_GFX |
3709 GEN6_RP_ENABLE |
3710 GEN6_RP_UP_BUSY_AVG |
3711 GEN6_RP_DOWN_IDLE_AVG);
3712 break;
3713
3714 case BETWEEN:
3715 /* Upclock if more than 90% busy over 13ms */
3716 I915_WRITE(GEN6_RP_UP_EI, 10250);
3717 I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225);
3718
3719 /* Downclock if less than 75% busy over 32ms */
3720 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3721 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750);
3722
3723 I915_WRITE(GEN6_RP_CONTROL,
3724 GEN6_RP_MEDIA_TURBO |
3725 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3726 GEN6_RP_MEDIA_IS_GFX |
3727 GEN6_RP_ENABLE |
3728 GEN6_RP_UP_BUSY_AVG |
3729 GEN6_RP_DOWN_IDLE_AVG);
3730 break;
3731
3732 case HIGH_POWER:
3733 /* Upclock if more than 85% busy over 10ms */
3734 I915_WRITE(GEN6_RP_UP_EI, 8000);
3735 I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800);
3736
3737 /* Downclock if less than 60% busy over 32ms */
3738 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3739 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000);
3740
3741 I915_WRITE(GEN6_RP_CONTROL,
3742 GEN6_RP_MEDIA_TURBO |
3743 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3744 GEN6_RP_MEDIA_IS_GFX |
3745 GEN6_RP_ENABLE |
3746 GEN6_RP_UP_BUSY_AVG |
3747 GEN6_RP_DOWN_IDLE_AVG);
3748 break;
3749 }
3750
3751 dev_priv->rps.power = new_power;
3752 dev_priv->rps.last_adj = 0;
3753}
3754
2876ce73
CW
3755static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
3756{
3757 u32 mask = 0;
3758
3759 if (val > dev_priv->rps.min_freq_softlimit)
3760 mask |= GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
3761 if (val < dev_priv->rps.max_freq_softlimit)
3762 mask |= GEN6_PM_RP_UP_THRESHOLD;
3763
7b3c29f6
CW
3764 mask |= dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED);
3765 mask &= dev_priv->pm_rps_events;
3766
59d02a1f 3767 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
2876ce73
CW
3768}
3769
b8a5ff8d
JM
3770/* gen6_set_rps is called to update the frequency request, but should also be
3771 * called when the range (min_delay and max_delay) is modified so that we can
3772 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
ffe02b40 3773static void gen6_set_rps(struct drm_device *dev, u8 val)
20b46e59
DV
3774{
3775 struct drm_i915_private *dev_priv = dev->dev_private;
7b9e0ae6 3776
4fc688ce 3777 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
b39fb297
BW
3778 WARN_ON(val > dev_priv->rps.max_freq_softlimit);
3779 WARN_ON(val < dev_priv->rps.min_freq_softlimit);
004777cb 3780
eb64cad1
CW
3781 /* min/max delay may still have been modified so be sure to
3782 * write the limits value.
3783 */
3784 if (val != dev_priv->rps.cur_freq) {
3785 gen6_set_rps_thresholds(dev_priv, val);
b8a5ff8d 3786
50e6a2a7 3787 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
eb64cad1
CW
3788 I915_WRITE(GEN6_RPNSWREQ,
3789 HSW_FREQUENCY(val));
3790 else
3791 I915_WRITE(GEN6_RPNSWREQ,
3792 GEN6_FREQUENCY(val) |
3793 GEN6_OFFSET(0) |
3794 GEN6_AGGRESSIVE_TURBO);
b8a5ff8d 3795 }
7b9e0ae6 3796
7b9e0ae6
CW
3797 /* Make sure we continue to get interrupts
3798 * until we hit the minimum or maximum frequencies.
3799 */
eb64cad1 3800 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, gen6_rps_limits(dev_priv, val));
2876ce73 3801 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
7b9e0ae6 3802
d5570a72
BW
3803 POSTING_READ(GEN6_RPNSWREQ);
3804
b39fb297 3805 dev_priv->rps.cur_freq = val;
be2cde9a 3806 trace_intel_gpu_freq_change(val * 50);
2b4e57bd
ED
3807}
3808
ffe02b40
VS
3809static void valleyview_set_rps(struct drm_device *dev, u8 val)
3810{
3811 struct drm_i915_private *dev_priv = dev->dev_private;
3812
3813 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3814 WARN_ON(val > dev_priv->rps.max_freq_softlimit);
3815 WARN_ON(val < dev_priv->rps.min_freq_softlimit);
3816
3817 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
3818 "Odd GPU freq value\n"))
3819 val &= ~1;
3820
3821 if (val != dev_priv->rps.cur_freq)
3822 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
3823
3824 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
3825
3826 dev_priv->rps.cur_freq = val;
3827 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
3828}
3829
76c3552f
D
3830/* vlv_set_rps_idle: Set the frequency to Rpn if Gfx clocks are down
3831 *
3832 * * If Gfx is Idle, then
3833 * 1. Mask Turbo interrupts
3834 * 2. Bring up Gfx clock
3835 * 3. Change the freq to Rpn and wait till P-Unit updates freq
3836 * 4. Clear the Force GFX CLK ON bit so that Gfx can down
3837 * 5. Unmask Turbo interrupts
3838*/
3839static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
3840{
5549d25f
D
3841 struct drm_device *dev = dev_priv->dev;
3842
21a11fff
VS
3843 /* CHV and latest VLV don't need to force the gfx clock */
3844 if (IS_CHERRYVIEW(dev) || dev->pdev->revision >= 0xd) {
5549d25f
D
3845 valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
3846 return;
3847 }
3848
76c3552f
D
3849 /*
3850 * When we are idle. Drop to min voltage state.
3851 */
3852
b39fb297 3853 if (dev_priv->rps.cur_freq <= dev_priv->rps.min_freq_softlimit)
76c3552f
D
3854 return;
3855
3856 /* Mask turbo interrupt so that they will not come in between */
f24eeb19
ID
3857 I915_WRITE(GEN6_PMINTRMSK,
3858 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
76c3552f 3859
650ad970 3860 vlv_force_gfx_clock(dev_priv, true);
76c3552f 3861
b39fb297 3862 dev_priv->rps.cur_freq = dev_priv->rps.min_freq_softlimit;
76c3552f
D
3863
3864 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ,
b39fb297 3865 dev_priv->rps.min_freq_softlimit);
76c3552f
D
3866
3867 if (wait_for(((vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS))
2837ac40 3868 & GENFREQSTATUS) == 0, 100))
76c3552f
D
3869 DRM_ERROR("timed out waiting for Punit\n");
3870
650ad970 3871 vlv_force_gfx_clock(dev_priv, false);
76c3552f 3872
2876ce73
CW
3873 I915_WRITE(GEN6_PMINTRMSK,
3874 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
76c3552f
D
3875}
3876
b29c19b6
CW
3877void gen6_rps_idle(struct drm_i915_private *dev_priv)
3878{
691bb717
DL
3879 struct drm_device *dev = dev_priv->dev;
3880
b29c19b6 3881 mutex_lock(&dev_priv->rps.hw_lock);
c0951f0c 3882 if (dev_priv->rps.enabled) {
21a11fff 3883 if (IS_VALLEYVIEW(dev))
76c3552f 3884 vlv_set_rps_idle(dev_priv);
7526ed79 3885 else
b39fb297 3886 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
c0951f0c
CW
3887 dev_priv->rps.last_adj = 0;
3888 }
b29c19b6
CW
3889 mutex_unlock(&dev_priv->rps.hw_lock);
3890}
3891
3892void gen6_rps_boost(struct drm_i915_private *dev_priv)
3893{
3894 mutex_lock(&dev_priv->rps.hw_lock);
c0951f0c 3895 if (dev_priv->rps.enabled) {
ffe02b40 3896 intel_set_rps(dev_priv->dev, dev_priv->rps.max_freq_softlimit);
c0951f0c
CW
3897 dev_priv->rps.last_adj = 0;
3898 }
b29c19b6
CW
3899 mutex_unlock(&dev_priv->rps.hw_lock);
3900}
3901
ffe02b40 3902void intel_set_rps(struct drm_device *dev, u8 val)
0a073b84 3903{
ffe02b40
VS
3904 if (IS_VALLEYVIEW(dev))
3905 valleyview_set_rps(dev, val);
3906 else
3907 gen6_set_rps(dev, val);
0a073b84
JB
3908}
3909
20e49366
ZW
3910static void gen9_disable_rps(struct drm_device *dev)
3911{
3912 struct drm_i915_private *dev_priv = dev->dev_private;
3913
3914 I915_WRITE(GEN6_RC_CONTROL, 0);
38c23527 3915 I915_WRITE(GEN9_PG_ENABLE, 0);
20e49366
ZW
3916}
3917
44fc7d5c 3918static void gen6_disable_rps(struct drm_device *dev)
d20d4f0c
JB
3919{
3920 struct drm_i915_private *dev_priv = dev->dev_private;
3921
3922 I915_WRITE(GEN6_RC_CONTROL, 0);
44fc7d5c 3923 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
44fc7d5c
DV
3924}
3925
38807746
D
3926static void cherryview_disable_rps(struct drm_device *dev)
3927{
3928 struct drm_i915_private *dev_priv = dev->dev_private;
3929
3930 I915_WRITE(GEN6_RC_CONTROL, 0);
3931}
3932
44fc7d5c
DV
3933static void valleyview_disable_rps(struct drm_device *dev)
3934{
3935 struct drm_i915_private *dev_priv = dev->dev_private;
3936
98a2e5f9
D
3937 /* we're doing forcewake before Disabling RC6,
3938 * This what the BIOS expects when going into suspend */
59bad947 3939 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
98a2e5f9 3940
44fc7d5c 3941 I915_WRITE(GEN6_RC_CONTROL, 0);
d20d4f0c 3942
59bad947 3943 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
d20d4f0c
JB
3944}
3945
dc39fff7
BW
3946static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
3947{
91ca689a
ID
3948 if (IS_VALLEYVIEW(dev)) {
3949 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
3950 mode = GEN6_RC_CTL_RC6_ENABLE;
3951 else
3952 mode = 0;
3953 }
58abf1da
RV
3954 if (HAS_RC6p(dev))
3955 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
3956 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3957 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3958 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
3959
3960 else
3961 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
3962 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
dc39fff7
BW
3963}
3964
e6069ca8 3965static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
2b4e57bd 3966{
eb4926e4
DL
3967 /* No RC6 before Ironlake */
3968 if (INTEL_INFO(dev)->gen < 5)
3969 return 0;
3970
e6069ca8
ID
3971 /* RC6 is only on Ironlake mobile not on desktop */
3972 if (INTEL_INFO(dev)->gen == 5 && !IS_IRONLAKE_M(dev))
3973 return 0;
3974
456470eb 3975 /* Respect the kernel parameter if it is set */
e6069ca8
ID
3976 if (enable_rc6 >= 0) {
3977 int mask;
3978
58abf1da 3979 if (HAS_RC6p(dev))
e6069ca8
ID
3980 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
3981 INTEL_RC6pp_ENABLE;
3982 else
3983 mask = INTEL_RC6_ENABLE;
3984
3985 if ((enable_rc6 & mask) != enable_rc6)
8dfd1f04
DV
3986 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
3987 enable_rc6 & mask, enable_rc6, mask);
e6069ca8
ID
3988
3989 return enable_rc6 & mask;
3990 }
2b4e57bd 3991
6567d748
CW
3992 /* Disable RC6 on Ironlake */
3993 if (INTEL_INFO(dev)->gen == 5)
3994 return 0;
2b4e57bd 3995
8bade1ad 3996 if (IS_IVYBRIDGE(dev))
cca84a1f 3997 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
8bade1ad
BW
3998
3999 return INTEL_RC6_ENABLE;
2b4e57bd
ED
4000}
4001
e6069ca8
ID
4002int intel_enable_rc6(const struct drm_device *dev)
4003{
4004 return i915.enable_rc6;
4005}
4006
93ee2920 4007static void gen6_init_rps_frequencies(struct drm_device *dev)
3280e8b0 4008{
93ee2920
TR
4009 struct drm_i915_private *dev_priv = dev->dev_private;
4010 uint32_t rp_state_cap;
4011 u32 ddcc_status = 0;
4012 int ret;
4013
4014 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3280e8b0
BW
4015 /* All of these values are in units of 50MHz */
4016 dev_priv->rps.cur_freq = 0;
93ee2920 4017 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
3280e8b0 4018 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
93ee2920 4019 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
3280e8b0 4020 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
3280e8b0
BW
4021 /* hw_max = RP0 until we check for overclocking */
4022 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4023
93ee2920
TR
4024 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4025 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4026 ret = sandybridge_pcode_read(dev_priv,
4027 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4028 &ddcc_status);
4029 if (0 == ret)
4030 dev_priv->rps.efficient_freq =
4031 (ddcc_status >> 8) & 0xff;
4032 }
4033
3280e8b0
BW
4034 /* Preserve min/max settings in case of re-init */
4035 if (dev_priv->rps.max_freq_softlimit == 0)
4036 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4037
93ee2920
TR
4038 if (dev_priv->rps.min_freq_softlimit == 0) {
4039 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4040 dev_priv->rps.min_freq_softlimit =
f4ab408c
TR
4041 /* max(RPe, 450 MHz) */
4042 max(dev_priv->rps.efficient_freq, (u8) 9);
93ee2920
TR
4043 else
4044 dev_priv->rps.min_freq_softlimit =
4045 dev_priv->rps.min_freq;
4046 }
3280e8b0
BW
4047}
4048
b6fef0ef 4049/* See the Gen9_GT_PM_Programming_Guide doc for the below */
20e49366 4050static void gen9_enable_rps(struct drm_device *dev)
b6fef0ef
JB
4051{
4052 struct drm_i915_private *dev_priv = dev->dev_private;
4053
4054 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4055
ba1c554c
DL
4056 gen6_init_rps_frequencies(dev);
4057
b6fef0ef
JB
4058 I915_WRITE(GEN6_RPNSWREQ, 0xc800000);
4059 I915_WRITE(GEN6_RC_VIDEO_FREQ, 0xc800000);
4060
4061 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 0xf4240);
4062 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, 0x12060000);
4063 I915_WRITE(GEN6_RP_UP_THRESHOLD, 0xe808);
4064 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 0x3bd08);
4065 I915_WRITE(GEN6_RP_UP_EI, 0x101d0);
4066 I915_WRITE(GEN6_RP_DOWN_EI, 0x55730);
4067 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
4068 I915_WRITE(GEN6_PMINTRMSK, 0x6);
4069 I915_WRITE(GEN6_RP_CONTROL, GEN6_RP_MEDIA_TURBO |
4070 GEN6_RP_MEDIA_HW_MODE | GEN6_RP_MEDIA_IS_GFX |
4071 GEN6_RP_ENABLE | GEN6_RP_UP_BUSY_AVG |
4072 GEN6_RP_DOWN_IDLE_AVG);
4073
4074 gen6_enable_rps_interrupts(dev);
4075
4076 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4077}
4078
4079static void gen9_enable_rc6(struct drm_device *dev)
20e49366
ZW
4080{
4081 struct drm_i915_private *dev_priv = dev->dev_private;
4082 struct intel_engine_cs *ring;
4083 uint32_t rc6_mask = 0;
4084 int unused;
4085
4086 /* 1a: Software RC state - RC0 */
4087 I915_WRITE(GEN6_RC_STATE, 0);
4088
4089 /* 1b: Get forcewake during program sequence. Although the driver
4090 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
59bad947 4091 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
20e49366
ZW
4092
4093 /* 2a: Disable RC states. */
4094 I915_WRITE(GEN6_RC_CONTROL, 0);
4095
4096 /* 2b: Program RC6 thresholds.*/
4097 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4098 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4099 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4100 for_each_ring(ring, dev_priv, unused)
4101 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4102 I915_WRITE(GEN6_RC_SLEEP, 0);
4103 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4104
38c23527
ZW
4105 /* 2c: Program Coarse Power Gating Policies. */
4106 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4107 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4108
20e49366
ZW
4109 /* 3a: Enable RC6 */
4110 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4111 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4112 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4113 "on" : "off");
4114 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4115 GEN6_RC_CTL_EI_MODE(1) |
4116 rc6_mask);
4117
38c23527
ZW
4118 /* 3b: Enable Coarse Power Gating only when RC6 is enabled */
4119 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? 3 : 0);
4120
59bad947 4121 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
20e49366
ZW
4122
4123}
4124
6edee7f3
BW
4125static void gen8_enable_rps(struct drm_device *dev)
4126{
4127 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 4128 struct intel_engine_cs *ring;
93ee2920 4129 uint32_t rc6_mask = 0;
6edee7f3
BW
4130 int unused;
4131
4132 /* 1a: Software RC state - RC0 */
4133 I915_WRITE(GEN6_RC_STATE, 0);
4134
4135 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4136 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
59bad947 4137 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6edee7f3
BW
4138
4139 /* 2a: Disable RC states. */
4140 I915_WRITE(GEN6_RC_CONTROL, 0);
4141
93ee2920
TR
4142 /* Initialize rps frequencies */
4143 gen6_init_rps_frequencies(dev);
6edee7f3
BW
4144
4145 /* 2b: Program RC6 thresholds.*/
4146 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4147 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4148 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4149 for_each_ring(ring, dev_priv, unused)
4150 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4151 I915_WRITE(GEN6_RC_SLEEP, 0);
0d68b25e
TR
4152 if (IS_BROADWELL(dev))
4153 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4154 else
4155 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
6edee7f3
BW
4156
4157 /* 3: Enable RC6 */
4158 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4159 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
abbf9d2c 4160 intel_print_rc6_info(dev, rc6_mask);
0d68b25e
TR
4161 if (IS_BROADWELL(dev))
4162 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4163 GEN7_RC_CTL_TO_MODE |
4164 rc6_mask);
4165 else
4166 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4167 GEN6_RC_CTL_EI_MODE(1) |
4168 rc6_mask);
6edee7f3
BW
4169
4170 /* 4 Program defaults and thresholds for RPS*/
f9bdc585
BW
4171 I915_WRITE(GEN6_RPNSWREQ,
4172 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4173 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4174 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
7526ed79
DV
4175 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4176 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
4177
4178 /* Docs recommend 900MHz, and 300 MHz respectively */
4179 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4180 dev_priv->rps.max_freq_softlimit << 24 |
4181 dev_priv->rps.min_freq_softlimit << 16);
4182
4183 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4184 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4185 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4186 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
4187
4188 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6edee7f3
BW
4189
4190 /* 5: Enable RPS */
7526ed79
DV
4191 I915_WRITE(GEN6_RP_CONTROL,
4192 GEN6_RP_MEDIA_TURBO |
4193 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4194 GEN6_RP_MEDIA_IS_GFX |
4195 GEN6_RP_ENABLE |
4196 GEN6_RP_UP_BUSY_AVG |
4197 GEN6_RP_DOWN_IDLE_AVG);
4198
4199 /* 6: Ring frequency + overclocking (our driver does this later */
4200
c7f3153a
TR
4201 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4202 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
7526ed79 4203
59bad947 4204 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6edee7f3
BW
4205}
4206
79f5b2c7 4207static void gen6_enable_rps(struct drm_device *dev)
2b4e57bd 4208{
79f5b2c7 4209 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 4210 struct intel_engine_cs *ring;
d060c169 4211 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
2b4e57bd 4212 u32 gtfifodbg;
2b4e57bd 4213 int rc6_mode;
42c0526c 4214 int i, ret;
2b4e57bd 4215
4fc688ce 4216 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
79f5b2c7 4217
2b4e57bd
ED
4218 /* Here begins a magic sequence of register writes to enable
4219 * auto-downclocking.
4220 *
4221 * Perhaps there might be some value in exposing these to
4222 * userspace...
4223 */
4224 I915_WRITE(GEN6_RC_STATE, 0);
2b4e57bd
ED
4225
4226 /* Clear the DBG now so we don't confuse earlier errors */
4227 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4228 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4229 I915_WRITE(GTFIFODBG, gtfifodbg);
4230 }
4231
59bad947 4232 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
2b4e57bd 4233
93ee2920
TR
4234 /* Initialize rps frequencies */
4235 gen6_init_rps_frequencies(dev);
dd0a1aa1 4236
2b4e57bd
ED
4237 /* disable the counters and set deterministic thresholds */
4238 I915_WRITE(GEN6_RC_CONTROL, 0);
4239
4240 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4241 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4242 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4243 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4244 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4245
b4519513
CW
4246 for_each_ring(ring, dev_priv, i)
4247 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
2b4e57bd
ED
4248
4249 I915_WRITE(GEN6_RC_SLEEP, 0);
4250 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
29c78f60 4251 if (IS_IVYBRIDGE(dev))
351aa566
SM
4252 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4253 else
4254 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
0920a487 4255 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
2b4e57bd
ED
4256 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4257
5a7dc92a 4258 /* Check if we are enabling RC6 */
2b4e57bd
ED
4259 rc6_mode = intel_enable_rc6(dev_priv->dev);
4260 if (rc6_mode & INTEL_RC6_ENABLE)
4261 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4262
5a7dc92a
ED
4263 /* We don't use those on Haswell */
4264 if (!IS_HASWELL(dev)) {
4265 if (rc6_mode & INTEL_RC6p_ENABLE)
4266 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
2b4e57bd 4267
5a7dc92a
ED
4268 if (rc6_mode & INTEL_RC6pp_ENABLE)
4269 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4270 }
2b4e57bd 4271
dc39fff7 4272 intel_print_rc6_info(dev, rc6_mask);
2b4e57bd
ED
4273
4274 I915_WRITE(GEN6_RC_CONTROL,
4275 rc6_mask |
4276 GEN6_RC_CTL_EI_MODE(1) |
4277 GEN6_RC_CTL_HW_ENABLE);
4278
dd75fdc8
CW
4279 /* Power down if completely idle for over 50ms */
4280 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
2b4e57bd 4281 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
2b4e57bd 4282
42c0526c 4283 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
d060c169 4284 if (ret)
42c0526c 4285 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
d060c169
BW
4286
4287 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4288 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4289 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
b39fb297 4290 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
d060c169 4291 (pcu_mbox & 0xff) * 50);
b39fb297 4292 dev_priv->rps.max_freq = pcu_mbox & 0xff;
2b4e57bd
ED
4293 }
4294
dd75fdc8 4295 dev_priv->rps.power = HIGH_POWER; /* force a reset */
b39fb297 4296 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
2b4e57bd 4297
31643d54
BW
4298 rc6vids = 0;
4299 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
4300 if (IS_GEN6(dev) && ret) {
4301 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
4302 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
4303 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
4304 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
4305 rc6vids &= 0xffff00;
4306 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4307 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4308 if (ret)
4309 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4310 }
4311
59bad947 4312 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
2b4e57bd
ED
4313}
4314
c2bc2fc5 4315static void __gen6_update_ring_freq(struct drm_device *dev)
2b4e57bd 4316{
79f5b2c7 4317 struct drm_i915_private *dev_priv = dev->dev_private;
2b4e57bd 4318 int min_freq = 15;
3ebecd07
CW
4319 unsigned int gpu_freq;
4320 unsigned int max_ia_freq, min_ring_freq;
2b4e57bd 4321 int scaling_factor = 180;
eda79642 4322 struct cpufreq_policy *policy;
2b4e57bd 4323
4fc688ce 4324 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
79f5b2c7 4325
eda79642
BW
4326 policy = cpufreq_cpu_get(0);
4327 if (policy) {
4328 max_ia_freq = policy->cpuinfo.max_freq;
4329 cpufreq_cpu_put(policy);
4330 } else {
4331 /*
4332 * Default to measured freq if none found, PCU will ensure we
4333 * don't go over
4334 */
2b4e57bd 4335 max_ia_freq = tsc_khz;
eda79642 4336 }
2b4e57bd
ED
4337
4338 /* Convert from kHz to MHz */
4339 max_ia_freq /= 1000;
4340
153b4b95 4341 min_ring_freq = I915_READ(DCLK) & 0xf;
f6aca45c
BW
4342 /* convert DDR frequency from units of 266.6MHz to bandwidth */
4343 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
3ebecd07 4344
2b4e57bd
ED
4345 /*
4346 * For each potential GPU frequency, load a ring frequency we'd like
4347 * to use for memory access. We do this by specifying the IA frequency
4348 * the PCU should use as a reference to determine the ring frequency.
4349 */
6985b352 4350 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
2b4e57bd 4351 gpu_freq--) {
6985b352 4352 int diff = dev_priv->rps.max_freq - gpu_freq;
3ebecd07
CW
4353 unsigned int ia_freq = 0, ring_freq = 0;
4354
46c764d4
BW
4355 if (INTEL_INFO(dev)->gen >= 8) {
4356 /* max(2 * GT, DDR). NB: GT is 50MHz units */
4357 ring_freq = max(min_ring_freq, gpu_freq);
4358 } else if (IS_HASWELL(dev)) {
f6aca45c 4359 ring_freq = mult_frac(gpu_freq, 5, 4);
3ebecd07
CW
4360 ring_freq = max(min_ring_freq, ring_freq);
4361 /* leave ia_freq as the default, chosen by cpufreq */
4362 } else {
4363 /* On older processors, there is no separate ring
4364 * clock domain, so in order to boost the bandwidth
4365 * of the ring, we need to upclock the CPU (ia_freq).
4366 *
4367 * For GPU frequencies less than 750MHz,
4368 * just use the lowest ring freq.
4369 */
4370 if (gpu_freq < min_freq)
4371 ia_freq = 800;
4372 else
4373 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
4374 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
4375 }
2b4e57bd 4376
42c0526c
BW
4377 sandybridge_pcode_write(dev_priv,
4378 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
3ebecd07
CW
4379 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
4380 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
4381 gpu_freq);
2b4e57bd 4382 }
2b4e57bd
ED
4383}
4384
c2bc2fc5
ID
4385void gen6_update_ring_freq(struct drm_device *dev)
4386{
4387 struct drm_i915_private *dev_priv = dev->dev_private;
4388
4389 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
4390 return;
4391
4392 mutex_lock(&dev_priv->rps.hw_lock);
4393 __gen6_update_ring_freq(dev);
4394 mutex_unlock(&dev_priv->rps.hw_lock);
4395}
4396
03af2045 4397static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
2b6b3a09 4398{
095acd5f 4399 struct drm_device *dev = dev_priv->dev;
2b6b3a09
D
4400 u32 val, rp0;
4401
095acd5f
D
4402 if (dev->pdev->revision >= 0x20) {
4403 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
2b6b3a09 4404
095acd5f
D
4405 switch (INTEL_INFO(dev)->eu_total) {
4406 case 8:
4407 /* (2 * 4) config */
4408 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
4409 break;
4410 case 12:
4411 /* (2 * 6) config */
4412 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
4413 break;
4414 case 16:
4415 /* (2 * 8) config */
4416 default:
4417 /* Setting (2 * 8) Min RP0 for any other combination */
4418 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
4419 break;
4420 }
4421 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
4422 } else {
4423 /* For pre-production hardware */
4424 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4425 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4426 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
4427 }
2b6b3a09
D
4428 return rp0;
4429}
4430
4431static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4432{
4433 u32 val, rpe;
4434
4435 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
4436 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
4437
4438 return rpe;
4439}
4440
7707df4a
D
4441static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
4442{
095acd5f 4443 struct drm_device *dev = dev_priv->dev;
7707df4a
D
4444 u32 val, rp1;
4445
095acd5f
D
4446 if (dev->pdev->revision >= 0x20) {
4447 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
4448 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
4449 } else {
4450 /* For pre-production hardware */
4451 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4452 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4453 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
4454 }
7707df4a
D
4455 return rp1;
4456}
4457
03af2045 4458static int cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
2b6b3a09 4459{
095acd5f 4460 struct drm_device *dev = dev_priv->dev;
2b6b3a09
D
4461 u32 val, rpn;
4462
095acd5f
D
4463 if (dev->pdev->revision >= 0x20) {
4464 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
4465 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
4466 FB_GFX_FREQ_FUSE_MASK);
4467 } else { /* For pre-production hardware */
4468 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4469 rpn = ((val >> PUNIT_GPU_STATIS_GFX_MIN_FREQ_SHIFT) &
4470 PUNIT_GPU_STATUS_GFX_MIN_FREQ_MASK);
4471 }
4472
2b6b3a09
D
4473 return rpn;
4474}
4475
f8f2b001
D
4476static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
4477{
4478 u32 val, rp1;
4479
4480 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
4481
4482 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
4483
4484 return rp1;
4485}
4486
03af2045 4487static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
0a073b84
JB
4488{
4489 u32 val, rp0;
4490
64936258 4491 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
0a073b84
JB
4492
4493 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
4494 /* Clamp to max */
4495 rp0 = min_t(u32, rp0, 0xea);
4496
4497 return rp0;
4498}
4499
4500static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4501{
4502 u32 val, rpe;
4503
64936258 4504 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
0a073b84 4505 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
64936258 4506 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
0a073b84
JB
4507 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
4508
4509 return rpe;
4510}
4511
03af2045 4512static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
0a073b84 4513{
64936258 4514 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
0a073b84
JB
4515}
4516
ae48434c
ID
4517/* Check that the pctx buffer wasn't move under us. */
4518static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
4519{
4520 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4521
4522 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
4523 dev_priv->vlv_pctx->stolen->start);
4524}
4525
38807746
D
4526
4527/* Check that the pcbr address is not empty. */
4528static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
4529{
4530 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4531
4532 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
4533}
4534
4535static void cherryview_setup_pctx(struct drm_device *dev)
4536{
4537 struct drm_i915_private *dev_priv = dev->dev_private;
4538 unsigned long pctx_paddr, paddr;
4539 struct i915_gtt *gtt = &dev_priv->gtt;
4540 u32 pcbr;
4541 int pctx_size = 32*1024;
4542
4543 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4544
4545 pcbr = I915_READ(VLV_PCBR);
4546 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
ce611ef8 4547 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
38807746
D
4548 paddr = (dev_priv->mm.stolen_base +
4549 (gtt->stolen_size - pctx_size));
4550
4551 pctx_paddr = (paddr & (~4095));
4552 I915_WRITE(VLV_PCBR, pctx_paddr);
4553 }
ce611ef8
VS
4554
4555 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
38807746
D
4556}
4557
c9cddffc
JB
4558static void valleyview_setup_pctx(struct drm_device *dev)
4559{
4560 struct drm_i915_private *dev_priv = dev->dev_private;
4561 struct drm_i915_gem_object *pctx;
4562 unsigned long pctx_paddr;
4563 u32 pcbr;
4564 int pctx_size = 24*1024;
4565
17b0c1f7
ID
4566 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4567
c9cddffc
JB
4568 pcbr = I915_READ(VLV_PCBR);
4569 if (pcbr) {
4570 /* BIOS set it up already, grab the pre-alloc'd space */
4571 int pcbr_offset;
4572
4573 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
4574 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
4575 pcbr_offset,
190d6cd5 4576 I915_GTT_OFFSET_NONE,
c9cddffc
JB
4577 pctx_size);
4578 goto out;
4579 }
4580
ce611ef8
VS
4581 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
4582
c9cddffc
JB
4583 /*
4584 * From the Gunit register HAS:
4585 * The Gfx driver is expected to program this register and ensure
4586 * proper allocation within Gfx stolen memory. For example, this
4587 * register should be programmed such than the PCBR range does not
4588 * overlap with other ranges, such as the frame buffer, protected
4589 * memory, or any other relevant ranges.
4590 */
4591 pctx = i915_gem_object_create_stolen(dev, pctx_size);
4592 if (!pctx) {
4593 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
4594 return;
4595 }
4596
4597 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
4598 I915_WRITE(VLV_PCBR, pctx_paddr);
4599
4600out:
ce611ef8 4601 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
c9cddffc
JB
4602 dev_priv->vlv_pctx = pctx;
4603}
4604
ae48434c
ID
4605static void valleyview_cleanup_pctx(struct drm_device *dev)
4606{
4607 struct drm_i915_private *dev_priv = dev->dev_private;
4608
4609 if (WARN_ON(!dev_priv->vlv_pctx))
4610 return;
4611
4612 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
4613 dev_priv->vlv_pctx = NULL;
4614}
4615
4e80519e
ID
4616static void valleyview_init_gt_powersave(struct drm_device *dev)
4617{
4618 struct drm_i915_private *dev_priv = dev->dev_private;
2bb25c17 4619 u32 val;
4e80519e
ID
4620
4621 valleyview_setup_pctx(dev);
4622
4623 mutex_lock(&dev_priv->rps.hw_lock);
4624
2bb25c17
VS
4625 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4626 switch ((val >> 6) & 3) {
4627 case 0:
4628 case 1:
4629 dev_priv->mem_freq = 800;
4630 break;
4631 case 2:
4632 dev_priv->mem_freq = 1066;
4633 break;
4634 case 3:
4635 dev_priv->mem_freq = 1333;
4636 break;
4637 }
80b83b62 4638 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
2bb25c17 4639
4e80519e
ID
4640 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
4641 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4642 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
7c59a9c1 4643 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
4e80519e
ID
4644 dev_priv->rps.max_freq);
4645
4646 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
4647 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
7c59a9c1 4648 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
4e80519e
ID
4649 dev_priv->rps.efficient_freq);
4650
f8f2b001
D
4651 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
4652 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
7c59a9c1 4653 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
f8f2b001
D
4654 dev_priv->rps.rp1_freq);
4655
4e80519e
ID
4656 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
4657 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
7c59a9c1 4658 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
4e80519e
ID
4659 dev_priv->rps.min_freq);
4660
4661 /* Preserve min/max settings in case of re-init */
4662 if (dev_priv->rps.max_freq_softlimit == 0)
4663 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4664
4665 if (dev_priv->rps.min_freq_softlimit == 0)
4666 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
4667
4668 mutex_unlock(&dev_priv->rps.hw_lock);
4669}
4670
38807746
D
4671static void cherryview_init_gt_powersave(struct drm_device *dev)
4672{
2b6b3a09 4673 struct drm_i915_private *dev_priv = dev->dev_private;
2bb25c17 4674 u32 val;
2b6b3a09 4675
38807746 4676 cherryview_setup_pctx(dev);
2b6b3a09
D
4677
4678 mutex_lock(&dev_priv->rps.hw_lock);
4679
c6e8f39d
VS
4680 mutex_lock(&dev_priv->dpio_lock);
4681 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
4682 mutex_unlock(&dev_priv->dpio_lock);
4683
2bb25c17
VS
4684 switch ((val >> 2) & 0x7) {
4685 case 0:
4686 case 1:
4687 dev_priv->rps.cz_freq = 200;
4688 dev_priv->mem_freq = 1600;
4689 break;
4690 case 2:
4691 dev_priv->rps.cz_freq = 267;
4692 dev_priv->mem_freq = 1600;
4693 break;
4694 case 3:
4695 dev_priv->rps.cz_freq = 333;
4696 dev_priv->mem_freq = 2000;
4697 break;
4698 case 4:
4699 dev_priv->rps.cz_freq = 320;
4700 dev_priv->mem_freq = 1600;
4701 break;
4702 case 5:
4703 dev_priv->rps.cz_freq = 400;
4704 dev_priv->mem_freq = 1600;
4705 break;
4706 }
80b83b62 4707 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
2bb25c17 4708
2b6b3a09
D
4709 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
4710 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4711 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
7c59a9c1 4712 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
2b6b3a09
D
4713 dev_priv->rps.max_freq);
4714
4715 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
4716 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
7c59a9c1 4717 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
2b6b3a09
D
4718 dev_priv->rps.efficient_freq);
4719
7707df4a
D
4720 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
4721 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
7c59a9c1 4722 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
7707df4a
D
4723 dev_priv->rps.rp1_freq);
4724
2b6b3a09
D
4725 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
4726 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
7c59a9c1 4727 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
2b6b3a09
D
4728 dev_priv->rps.min_freq);
4729
1c14762d
VS
4730 WARN_ONCE((dev_priv->rps.max_freq |
4731 dev_priv->rps.efficient_freq |
4732 dev_priv->rps.rp1_freq |
4733 dev_priv->rps.min_freq) & 1,
4734 "Odd GPU freq values\n");
4735
2b6b3a09
D
4736 /* Preserve min/max settings in case of re-init */
4737 if (dev_priv->rps.max_freq_softlimit == 0)
4738 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4739
4740 if (dev_priv->rps.min_freq_softlimit == 0)
4741 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
4742
4743 mutex_unlock(&dev_priv->rps.hw_lock);
38807746
D
4744}
4745
4e80519e
ID
4746static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
4747{
4748 valleyview_cleanup_pctx(dev);
4749}
4750
38807746
D
4751static void cherryview_enable_rps(struct drm_device *dev)
4752{
4753 struct drm_i915_private *dev_priv = dev->dev_private;
4754 struct intel_engine_cs *ring;
2b6b3a09 4755 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
38807746
D
4756 int i;
4757
4758 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4759
4760 gtfifodbg = I915_READ(GTFIFODBG);
4761 if (gtfifodbg) {
4762 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4763 gtfifodbg);
4764 I915_WRITE(GTFIFODBG, gtfifodbg);
4765 }
4766
4767 cherryview_check_pctx(dev_priv);
4768
4769 /* 1a & 1b: Get forcewake during program sequence. Although the driver
4770 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
59bad947 4771 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
38807746 4772
160614a2
VS
4773 /* Disable RC states. */
4774 I915_WRITE(GEN6_RC_CONTROL, 0);
4775
38807746
D
4776 /* 2a: Program RC6 thresholds.*/
4777 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4778 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4779 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4780
4781 for_each_ring(ring, dev_priv, i)
4782 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4783 I915_WRITE(GEN6_RC_SLEEP, 0);
4784
af5a75a3
VS
4785 /* TO threshold set to 1750 us ( 0x557 * 1.28 us) */
4786 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
38807746
D
4787
4788 /* allows RC6 residency counter to work */
4789 I915_WRITE(VLV_COUNTER_CONTROL,
4790 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
4791 VLV_MEDIA_RC6_COUNT_EN |
4792 VLV_RENDER_RC6_COUNT_EN));
4793
4794 /* For now we assume BIOS is allocating and populating the PCBR */
4795 pcbr = I915_READ(VLV_PCBR);
4796
38807746
D
4797 /* 3: Enable RC6 */
4798 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
4799 (pcbr >> VLV_PCBR_ADDR_SHIFT))
af5a75a3 4800 rc6_mode = GEN7_RC_CTL_TO_MODE;
38807746
D
4801
4802 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
4803
2b6b3a09 4804 /* 4 Program defaults and thresholds for RPS*/
3cbdb48f 4805 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
2b6b3a09
D
4806 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
4807 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
4808 I915_WRITE(GEN6_RP_UP_EI, 66000);
4809 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
4810
4811 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
4812
4813 /* 5: Enable RPS */
4814 I915_WRITE(GEN6_RP_CONTROL,
4815 GEN6_RP_MEDIA_HW_NORMAL_MODE |
eb973a5e 4816 GEN6_RP_MEDIA_IS_GFX |
2b6b3a09
D
4817 GEN6_RP_ENABLE |
4818 GEN6_RP_UP_BUSY_AVG |
4819 GEN6_RP_DOWN_IDLE_AVG);
4820
4821 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4822
8d40c3ae
VS
4823 /* RPS code assumes GPLL is used */
4824 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
4825
c8e9627d 4826 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
2b6b3a09
D
4827 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
4828
4829 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
4830 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
7c59a9c1 4831 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
2b6b3a09
D
4832 dev_priv->rps.cur_freq);
4833
4834 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
7c59a9c1 4835 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
2b6b3a09
D
4836 dev_priv->rps.efficient_freq);
4837
4838 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
4839
59bad947 4840 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
38807746
D
4841}
4842
0a073b84
JB
4843static void valleyview_enable_rps(struct drm_device *dev)
4844{
4845 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 4846 struct intel_engine_cs *ring;
2a5913a8 4847 u32 gtfifodbg, val, rc6_mode = 0;
0a073b84
JB
4848 int i;
4849
4850 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4851
ae48434c
ID
4852 valleyview_check_pctx(dev_priv);
4853
0a073b84 4854 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
f7d85c1e
JB
4855 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4856 gtfifodbg);
0a073b84
JB
4857 I915_WRITE(GTFIFODBG, gtfifodbg);
4858 }
4859
c8d9a590 4860 /* If VLV, Forcewake all wells, else re-direct to regular path */
59bad947 4861 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
0a073b84 4862
160614a2
VS
4863 /* Disable RC states. */
4864 I915_WRITE(GEN6_RC_CONTROL, 0);
4865
cad725fe 4866 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
0a073b84
JB
4867 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
4868 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
4869 I915_WRITE(GEN6_RP_UP_EI, 66000);
4870 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
4871
4872 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
4873
4874 I915_WRITE(GEN6_RP_CONTROL,
4875 GEN6_RP_MEDIA_TURBO |
4876 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4877 GEN6_RP_MEDIA_IS_GFX |
4878 GEN6_RP_ENABLE |
4879 GEN6_RP_UP_BUSY_AVG |
4880 GEN6_RP_DOWN_IDLE_CONT);
4881
4882 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
4883 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4884 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4885
4886 for_each_ring(ring, dev_priv, i)
4887 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4888
2f0aa304 4889 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
0a073b84
JB
4890
4891 /* allows RC6 residency counter to work */
49798eb2 4892 I915_WRITE(VLV_COUNTER_CONTROL,
31685c25
D
4893 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
4894 VLV_RENDER_RC0_COUNT_EN |
49798eb2
JB
4895 VLV_MEDIA_RC6_COUNT_EN |
4896 VLV_RENDER_RC6_COUNT_EN));
31685c25 4897
a2b23fe0 4898 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
6b88f295 4899 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
dc39fff7
BW
4900
4901 intel_print_rc6_info(dev, rc6_mode);
4902
a2b23fe0 4903 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
0a073b84 4904
64936258 4905 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
0a073b84 4906
8d40c3ae
VS
4907 /* RPS code assumes GPLL is used */
4908 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
4909
c8e9627d 4910 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
0a073b84
JB
4911 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
4912
b39fb297 4913 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
73008b98 4914 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
7c59a9c1 4915 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
b39fb297 4916 dev_priv->rps.cur_freq);
0a073b84 4917
73008b98 4918 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
7c59a9c1 4919 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
b39fb297 4920 dev_priv->rps.efficient_freq);
0a073b84 4921
b39fb297 4922 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
0a073b84 4923
59bad947 4924 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
0a073b84
JB
4925}
4926
930ebb46 4927void ironlake_teardown_rc6(struct drm_device *dev)
2b4e57bd
ED
4928{
4929 struct drm_i915_private *dev_priv = dev->dev_private;
4930
3e373948 4931 if (dev_priv->ips.renderctx) {
d7f46fc4 4932 i915_gem_object_ggtt_unpin(dev_priv->ips.renderctx);
3e373948
DV
4933 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
4934 dev_priv->ips.renderctx = NULL;
2b4e57bd
ED
4935 }
4936
3e373948 4937 if (dev_priv->ips.pwrctx) {
d7f46fc4 4938 i915_gem_object_ggtt_unpin(dev_priv->ips.pwrctx);
3e373948
DV
4939 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
4940 dev_priv->ips.pwrctx = NULL;
2b4e57bd
ED
4941 }
4942}
4943
930ebb46 4944static void ironlake_disable_rc6(struct drm_device *dev)
2b4e57bd
ED
4945{
4946 struct drm_i915_private *dev_priv = dev->dev_private;
4947
4948 if (I915_READ(PWRCTXA)) {
4949 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
4950 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
4951 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
4952 50);
4953
4954 I915_WRITE(PWRCTXA, 0);
4955 POSTING_READ(PWRCTXA);
4956
4957 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
4958 POSTING_READ(RSTDBYCTL);
4959 }
2b4e57bd
ED
4960}
4961
4962static int ironlake_setup_rc6(struct drm_device *dev)
4963{
4964 struct drm_i915_private *dev_priv = dev->dev_private;
4965
3e373948
DV
4966 if (dev_priv->ips.renderctx == NULL)
4967 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
4968 if (!dev_priv->ips.renderctx)
2b4e57bd
ED
4969 return -ENOMEM;
4970
3e373948
DV
4971 if (dev_priv->ips.pwrctx == NULL)
4972 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
4973 if (!dev_priv->ips.pwrctx) {
2b4e57bd
ED
4974 ironlake_teardown_rc6(dev);
4975 return -ENOMEM;
4976 }
4977
4978 return 0;
4979}
4980
930ebb46 4981static void ironlake_enable_rc6(struct drm_device *dev)
2b4e57bd
ED
4982{
4983 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 4984 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
3e960501 4985 bool was_interruptible;
2b4e57bd
ED
4986 int ret;
4987
4988 /* rc6 disabled by default due to repeated reports of hanging during
4989 * boot and resume.
4990 */
4991 if (!intel_enable_rc6(dev))
4992 return;
4993
79f5b2c7
DV
4994 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4995
2b4e57bd 4996 ret = ironlake_setup_rc6(dev);
79f5b2c7 4997 if (ret)
2b4e57bd 4998 return;
2b4e57bd 4999
3e960501
CW
5000 was_interruptible = dev_priv->mm.interruptible;
5001 dev_priv->mm.interruptible = false;
5002
2b4e57bd
ED
5003 /*
5004 * GPU can automatically power down the render unit if given a page
5005 * to save state.
5006 */
6d90c952 5007 ret = intel_ring_begin(ring, 6);
2b4e57bd
ED
5008 if (ret) {
5009 ironlake_teardown_rc6(dev);
3e960501 5010 dev_priv->mm.interruptible = was_interruptible;
2b4e57bd
ED
5011 return;
5012 }
5013
6d90c952
DV
5014 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
5015 intel_ring_emit(ring, MI_SET_CONTEXT);
f343c5f6 5016 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
6d90c952
DV
5017 MI_MM_SPACE_GTT |
5018 MI_SAVE_EXT_STATE_EN |
5019 MI_RESTORE_EXT_STATE_EN |
5020 MI_RESTORE_INHIBIT);
5021 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
5022 intel_ring_emit(ring, MI_NOOP);
5023 intel_ring_emit(ring, MI_FLUSH);
5024 intel_ring_advance(ring);
2b4e57bd
ED
5025
5026 /*
5027 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
5028 * does an implicit flush, combined with MI_FLUSH above, it should be
5029 * safe to assume that renderctx is valid
5030 */
3e960501
CW
5031 ret = intel_ring_idle(ring);
5032 dev_priv->mm.interruptible = was_interruptible;
2b4e57bd 5033 if (ret) {
def27a58 5034 DRM_ERROR("failed to enable ironlake power savings\n");
2b4e57bd 5035 ironlake_teardown_rc6(dev);
2b4e57bd
ED
5036 return;
5037 }
5038
f343c5f6 5039 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
2b4e57bd 5040 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
dc39fff7 5041
91ca689a 5042 intel_print_rc6_info(dev, GEN6_RC_CTL_RC6_ENABLE);
2b4e57bd
ED
5043}
5044
dde18883
ED
5045static unsigned long intel_pxfreq(u32 vidfreq)
5046{
5047 unsigned long freq;
5048 int div = (vidfreq & 0x3f0000) >> 16;
5049 int post = (vidfreq & 0x3000) >> 12;
5050 int pre = (vidfreq & 0x7);
5051
5052 if (!pre)
5053 return 0;
5054
5055 freq = ((div * 133333) / ((1<<post) * pre));
5056
5057 return freq;
5058}
5059
eb48eb00
DV
5060static const struct cparams {
5061 u16 i;
5062 u16 t;
5063 u16 m;
5064 u16 c;
5065} cparams[] = {
5066 { 1, 1333, 301, 28664 },
5067 { 1, 1066, 294, 24460 },
5068 { 1, 800, 294, 25192 },
5069 { 0, 1333, 276, 27605 },
5070 { 0, 1066, 276, 27605 },
5071 { 0, 800, 231, 23784 },
5072};
5073
f531dcb2 5074static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
eb48eb00
DV
5075{
5076 u64 total_count, diff, ret;
5077 u32 count1, count2, count3, m = 0, c = 0;
5078 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5079 int i;
5080
02d71956
DV
5081 assert_spin_locked(&mchdev_lock);
5082
20e4d407 5083 diff1 = now - dev_priv->ips.last_time1;
eb48eb00
DV
5084
5085 /* Prevent division-by-zero if we are asking too fast.
5086 * Also, we don't get interesting results if we are polling
5087 * faster than once in 10ms, so just return the saved value
5088 * in such cases.
5089 */
5090 if (diff1 <= 10)
20e4d407 5091 return dev_priv->ips.chipset_power;
eb48eb00
DV
5092
5093 count1 = I915_READ(DMIEC);
5094 count2 = I915_READ(DDREC);
5095 count3 = I915_READ(CSIEC);
5096
5097 total_count = count1 + count2 + count3;
5098
5099 /* FIXME: handle per-counter overflow */
20e4d407
DV
5100 if (total_count < dev_priv->ips.last_count1) {
5101 diff = ~0UL - dev_priv->ips.last_count1;
eb48eb00
DV
5102 diff += total_count;
5103 } else {
20e4d407 5104 diff = total_count - dev_priv->ips.last_count1;
eb48eb00
DV
5105 }
5106
5107 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
20e4d407
DV
5108 if (cparams[i].i == dev_priv->ips.c_m &&
5109 cparams[i].t == dev_priv->ips.r_t) {
eb48eb00
DV
5110 m = cparams[i].m;
5111 c = cparams[i].c;
5112 break;
5113 }
5114 }
5115
5116 diff = div_u64(diff, diff1);
5117 ret = ((m * diff) + c);
5118 ret = div_u64(ret, 10);
5119
20e4d407
DV
5120 dev_priv->ips.last_count1 = total_count;
5121 dev_priv->ips.last_time1 = now;
eb48eb00 5122
20e4d407 5123 dev_priv->ips.chipset_power = ret;
eb48eb00
DV
5124
5125 return ret;
5126}
5127
f531dcb2
CW
5128unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5129{
3d13ef2e 5130 struct drm_device *dev = dev_priv->dev;
f531dcb2
CW
5131 unsigned long val;
5132
3d13ef2e 5133 if (INTEL_INFO(dev)->gen != 5)
f531dcb2
CW
5134 return 0;
5135
5136 spin_lock_irq(&mchdev_lock);
5137
5138 val = __i915_chipset_val(dev_priv);
5139
5140 spin_unlock_irq(&mchdev_lock);
5141
5142 return val;
5143}
5144
eb48eb00
DV
5145unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5146{
5147 unsigned long m, x, b;
5148 u32 tsfs;
5149
5150 tsfs = I915_READ(TSFS);
5151
5152 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5153 x = I915_READ8(TR1);
5154
5155 b = tsfs & TSFS_INTR_MASK;
5156
5157 return ((m * x) / 127) - b;
5158}
5159
d972d6ee
MK
5160static int _pxvid_to_vd(u8 pxvid)
5161{
5162 if (pxvid == 0)
5163 return 0;
5164
5165 if (pxvid >= 8 && pxvid < 31)
5166 pxvid = 31;
5167
5168 return (pxvid + 2) * 125;
5169}
5170
5171static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
eb48eb00 5172{
3d13ef2e 5173 struct drm_device *dev = dev_priv->dev;
d972d6ee
MK
5174 const int vd = _pxvid_to_vd(pxvid);
5175 const int vm = vd - 1125;
5176
3d13ef2e 5177 if (INTEL_INFO(dev)->is_mobile)
d972d6ee
MK
5178 return vm > 0 ? vm : 0;
5179
5180 return vd;
eb48eb00
DV
5181}
5182
02d71956 5183static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
eb48eb00 5184{
5ed0bdf2 5185 u64 now, diff, diffms;
eb48eb00
DV
5186 u32 count;
5187
02d71956 5188 assert_spin_locked(&mchdev_lock);
eb48eb00 5189
5ed0bdf2
TG
5190 now = ktime_get_raw_ns();
5191 diffms = now - dev_priv->ips.last_time2;
5192 do_div(diffms, NSEC_PER_MSEC);
eb48eb00
DV
5193
5194 /* Don't divide by 0 */
eb48eb00
DV
5195 if (!diffms)
5196 return;
5197
5198 count = I915_READ(GFXEC);
5199
20e4d407
DV
5200 if (count < dev_priv->ips.last_count2) {
5201 diff = ~0UL - dev_priv->ips.last_count2;
eb48eb00
DV
5202 diff += count;
5203 } else {
20e4d407 5204 diff = count - dev_priv->ips.last_count2;
eb48eb00
DV
5205 }
5206
20e4d407
DV
5207 dev_priv->ips.last_count2 = count;
5208 dev_priv->ips.last_time2 = now;
eb48eb00
DV
5209
5210 /* More magic constants... */
5211 diff = diff * 1181;
5212 diff = div_u64(diff, diffms * 10);
20e4d407 5213 dev_priv->ips.gfx_power = diff;
eb48eb00
DV
5214}
5215
02d71956
DV
5216void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5217{
3d13ef2e
DL
5218 struct drm_device *dev = dev_priv->dev;
5219
5220 if (INTEL_INFO(dev)->gen != 5)
02d71956
DV
5221 return;
5222
9270388e 5223 spin_lock_irq(&mchdev_lock);
02d71956
DV
5224
5225 __i915_update_gfx_val(dev_priv);
5226
9270388e 5227 spin_unlock_irq(&mchdev_lock);
02d71956
DV
5228}
5229
f531dcb2 5230static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
eb48eb00
DV
5231{
5232 unsigned long t, corr, state1, corr2, state2;
5233 u32 pxvid, ext_v;
5234
02d71956
DV
5235 assert_spin_locked(&mchdev_lock);
5236
b39fb297 5237 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
eb48eb00
DV
5238 pxvid = (pxvid >> 24) & 0x7f;
5239 ext_v = pvid_to_extvid(dev_priv, pxvid);
5240
5241 state1 = ext_v;
5242
5243 t = i915_mch_val(dev_priv);
5244
5245 /* Revel in the empirically derived constants */
5246
5247 /* Correction factor in 1/100000 units */
5248 if (t > 80)
5249 corr = ((t * 2349) + 135940);
5250 else if (t >= 50)
5251 corr = ((t * 964) + 29317);
5252 else /* < 50 */
5253 corr = ((t * 301) + 1004);
5254
5255 corr = corr * ((150142 * state1) / 10000 - 78642);
5256 corr /= 100000;
20e4d407 5257 corr2 = (corr * dev_priv->ips.corr);
eb48eb00
DV
5258
5259 state2 = (corr2 * state1) / 10000;
5260 state2 /= 100; /* convert to mW */
5261
02d71956 5262 __i915_update_gfx_val(dev_priv);
eb48eb00 5263
20e4d407 5264 return dev_priv->ips.gfx_power + state2;
eb48eb00
DV
5265}
5266
f531dcb2
CW
5267unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5268{
3d13ef2e 5269 struct drm_device *dev = dev_priv->dev;
f531dcb2
CW
5270 unsigned long val;
5271
3d13ef2e 5272 if (INTEL_INFO(dev)->gen != 5)
f531dcb2
CW
5273 return 0;
5274
5275 spin_lock_irq(&mchdev_lock);
5276
5277 val = __i915_gfx_val(dev_priv);
5278
5279 spin_unlock_irq(&mchdev_lock);
5280
5281 return val;
5282}
5283
eb48eb00
DV
5284/**
5285 * i915_read_mch_val - return value for IPS use
5286 *
5287 * Calculate and return a value for the IPS driver to use when deciding whether
5288 * we have thermal and power headroom to increase CPU or GPU power budget.
5289 */
5290unsigned long i915_read_mch_val(void)
5291{
5292 struct drm_i915_private *dev_priv;
5293 unsigned long chipset_val, graphics_val, ret = 0;
5294
9270388e 5295 spin_lock_irq(&mchdev_lock);
eb48eb00
DV
5296 if (!i915_mch_dev)
5297 goto out_unlock;
5298 dev_priv = i915_mch_dev;
5299
f531dcb2
CW
5300 chipset_val = __i915_chipset_val(dev_priv);
5301 graphics_val = __i915_gfx_val(dev_priv);
eb48eb00
DV
5302
5303 ret = chipset_val + graphics_val;
5304
5305out_unlock:
9270388e 5306 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5307
5308 return ret;
5309}
5310EXPORT_SYMBOL_GPL(i915_read_mch_val);
5311
5312/**
5313 * i915_gpu_raise - raise GPU frequency limit
5314 *
5315 * Raise the limit; IPS indicates we have thermal headroom.
5316 */
5317bool i915_gpu_raise(void)
5318{
5319 struct drm_i915_private *dev_priv;
5320 bool ret = true;
5321
9270388e 5322 spin_lock_irq(&mchdev_lock);
eb48eb00
DV
5323 if (!i915_mch_dev) {
5324 ret = false;
5325 goto out_unlock;
5326 }
5327 dev_priv = i915_mch_dev;
5328
20e4d407
DV
5329 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5330 dev_priv->ips.max_delay--;
eb48eb00
DV
5331
5332out_unlock:
9270388e 5333 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5334
5335 return ret;
5336}
5337EXPORT_SYMBOL_GPL(i915_gpu_raise);
5338
5339/**
5340 * i915_gpu_lower - lower GPU frequency limit
5341 *
5342 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5343 * frequency maximum.
5344 */
5345bool i915_gpu_lower(void)
5346{
5347 struct drm_i915_private *dev_priv;
5348 bool ret = true;
5349
9270388e 5350 spin_lock_irq(&mchdev_lock);
eb48eb00
DV
5351 if (!i915_mch_dev) {
5352 ret = false;
5353 goto out_unlock;
5354 }
5355 dev_priv = i915_mch_dev;
5356
20e4d407
DV
5357 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5358 dev_priv->ips.max_delay++;
eb48eb00
DV
5359
5360out_unlock:
9270388e 5361 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5362
5363 return ret;
5364}
5365EXPORT_SYMBOL_GPL(i915_gpu_lower);
5366
5367/**
5368 * i915_gpu_busy - indicate GPU business to IPS
5369 *
5370 * Tell the IPS driver whether or not the GPU is busy.
5371 */
5372bool i915_gpu_busy(void)
5373{
5374 struct drm_i915_private *dev_priv;
a4872ba6 5375 struct intel_engine_cs *ring;
eb48eb00 5376 bool ret = false;
f047e395 5377 int i;
eb48eb00 5378
9270388e 5379 spin_lock_irq(&mchdev_lock);
eb48eb00
DV
5380 if (!i915_mch_dev)
5381 goto out_unlock;
5382 dev_priv = i915_mch_dev;
5383
f047e395
CW
5384 for_each_ring(ring, dev_priv, i)
5385 ret |= !list_empty(&ring->request_list);
eb48eb00
DV
5386
5387out_unlock:
9270388e 5388 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5389
5390 return ret;
5391}
5392EXPORT_SYMBOL_GPL(i915_gpu_busy);
5393
5394/**
5395 * i915_gpu_turbo_disable - disable graphics turbo
5396 *
5397 * Disable graphics turbo by resetting the max frequency and setting the
5398 * current frequency to the default.
5399 */
5400bool i915_gpu_turbo_disable(void)
5401{
5402 struct drm_i915_private *dev_priv;
5403 bool ret = true;
5404
9270388e 5405 spin_lock_irq(&mchdev_lock);
eb48eb00
DV
5406 if (!i915_mch_dev) {
5407 ret = false;
5408 goto out_unlock;
5409 }
5410 dev_priv = i915_mch_dev;
5411
20e4d407 5412 dev_priv->ips.max_delay = dev_priv->ips.fstart;
eb48eb00 5413
20e4d407 5414 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
eb48eb00
DV
5415 ret = false;
5416
5417out_unlock:
9270388e 5418 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5419
5420 return ret;
5421}
5422EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
5423
5424/**
5425 * Tells the intel_ips driver that the i915 driver is now loaded, if
5426 * IPS got loaded first.
5427 *
5428 * This awkward dance is so that neither module has to depend on the
5429 * other in order for IPS to do the appropriate communication of
5430 * GPU turbo limits to i915.
5431 */
5432static void
5433ips_ping_for_i915_load(void)
5434{
5435 void (*link)(void);
5436
5437 link = symbol_get(ips_link_to_i915_driver);
5438 if (link) {
5439 link();
5440 symbol_put(ips_link_to_i915_driver);
5441 }
5442}
5443
5444void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
5445{
02d71956
DV
5446 /* We only register the i915 ips part with intel-ips once everything is
5447 * set up, to avoid intel-ips sneaking in and reading bogus values. */
9270388e 5448 spin_lock_irq(&mchdev_lock);
eb48eb00 5449 i915_mch_dev = dev_priv;
9270388e 5450 spin_unlock_irq(&mchdev_lock);
eb48eb00
DV
5451
5452 ips_ping_for_i915_load();
5453}
5454
5455void intel_gpu_ips_teardown(void)
5456{
9270388e 5457 spin_lock_irq(&mchdev_lock);
eb48eb00 5458 i915_mch_dev = NULL;
9270388e 5459 spin_unlock_irq(&mchdev_lock);
eb48eb00 5460}
76c3552f 5461
8090c6b9 5462static void intel_init_emon(struct drm_device *dev)
dde18883
ED
5463{
5464 struct drm_i915_private *dev_priv = dev->dev_private;
5465 u32 lcfuse;
5466 u8 pxw[16];
5467 int i;
5468
5469 /* Disable to program */
5470 I915_WRITE(ECR, 0);
5471 POSTING_READ(ECR);
5472
5473 /* Program energy weights for various events */
5474 I915_WRITE(SDEW, 0x15040d00);
5475 I915_WRITE(CSIEW0, 0x007f0000);
5476 I915_WRITE(CSIEW1, 0x1e220004);
5477 I915_WRITE(CSIEW2, 0x04000004);
5478
5479 for (i = 0; i < 5; i++)
5480 I915_WRITE(PEW + (i * 4), 0);
5481 for (i = 0; i < 3; i++)
5482 I915_WRITE(DEW + (i * 4), 0);
5483
5484 /* Program P-state weights to account for frequency power adjustment */
5485 for (i = 0; i < 16; i++) {
5486 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5487 unsigned long freq = intel_pxfreq(pxvidfreq);
5488 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5489 PXVFREQ_PX_SHIFT;
5490 unsigned long val;
5491
5492 val = vid * vid;
5493 val *= (freq / 1000);
5494 val *= 255;
5495 val /= (127*127*900);
5496 if (val > 0xff)
5497 DRM_ERROR("bad pxval: %ld\n", val);
5498 pxw[i] = val;
5499 }
5500 /* Render standby states get 0 weight */
5501 pxw[14] = 0;
5502 pxw[15] = 0;
5503
5504 for (i = 0; i < 4; i++) {
5505 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5506 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5507 I915_WRITE(PXW + (i * 4), val);
5508 }
5509
5510 /* Adjust magic regs to magic values (more experimental results) */
5511 I915_WRITE(OGW0, 0);
5512 I915_WRITE(OGW1, 0);
5513 I915_WRITE(EG0, 0x00007f00);
5514 I915_WRITE(EG1, 0x0000000e);
5515 I915_WRITE(EG2, 0x000e0000);
5516 I915_WRITE(EG3, 0x68000300);
5517 I915_WRITE(EG4, 0x42000000);
5518 I915_WRITE(EG5, 0x00140031);
5519 I915_WRITE(EG6, 0);
5520 I915_WRITE(EG7, 0);
5521
5522 for (i = 0; i < 8; i++)
5523 I915_WRITE(PXWL + (i * 4), 0);
5524
5525 /* Enable PMON + select events */
5526 I915_WRITE(ECR, 0x80000019);
5527
5528 lcfuse = I915_READ(LCFUSE02);
5529
20e4d407 5530 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
dde18883
ED
5531}
5532
ae48434c
ID
5533void intel_init_gt_powersave(struct drm_device *dev)
5534{
e6069ca8
ID
5535 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
5536
38807746
D
5537 if (IS_CHERRYVIEW(dev))
5538 cherryview_init_gt_powersave(dev);
5539 else if (IS_VALLEYVIEW(dev))
4e80519e 5540 valleyview_init_gt_powersave(dev);
ae48434c
ID
5541}
5542
5543void intel_cleanup_gt_powersave(struct drm_device *dev)
5544{
38807746
D
5545 if (IS_CHERRYVIEW(dev))
5546 return;
5547 else if (IS_VALLEYVIEW(dev))
4e80519e 5548 valleyview_cleanup_gt_powersave(dev);
ae48434c
ID
5549}
5550
dbea3cea
ID
5551static void gen6_suspend_rps(struct drm_device *dev)
5552{
5553 struct drm_i915_private *dev_priv = dev->dev_private;
5554
5555 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
5556
5557 /*
5558 * TODO: disable RPS interrupts on GEN9+ too once RPS support
5559 * is added for it.
5560 */
5561 if (INTEL_INFO(dev)->gen < 9)
5562 gen6_disable_rps_interrupts(dev);
5563}
5564
156c7ca0
JB
5565/**
5566 * intel_suspend_gt_powersave - suspend PM work and helper threads
5567 * @dev: drm device
5568 *
5569 * We don't want to disable RC6 or other features here, we just want
5570 * to make sure any work we've queued has finished and won't bother
5571 * us while we're suspended.
5572 */
5573void intel_suspend_gt_powersave(struct drm_device *dev)
5574{
5575 struct drm_i915_private *dev_priv = dev->dev_private;
5576
d4d70aa5
ID
5577 if (INTEL_INFO(dev)->gen < 6)
5578 return;
5579
dbea3cea 5580 gen6_suspend_rps(dev);
b47adc17
D
5581
5582 /* Force GPU to min freq during suspend */
5583 gen6_rps_idle(dev_priv);
156c7ca0
JB
5584}
5585
8090c6b9
DV
5586void intel_disable_gt_powersave(struct drm_device *dev)
5587{
1a01ab3b
JB
5588 struct drm_i915_private *dev_priv = dev->dev_private;
5589
930ebb46 5590 if (IS_IRONLAKE_M(dev)) {
8090c6b9 5591 ironlake_disable_drps(dev);
930ebb46 5592 ironlake_disable_rc6(dev);
38807746 5593 } else if (INTEL_INFO(dev)->gen >= 6) {
10d8d366 5594 intel_suspend_gt_powersave(dev);
e494837a 5595
4fc688ce 5596 mutex_lock(&dev_priv->rps.hw_lock);
20e49366
ZW
5597 if (INTEL_INFO(dev)->gen >= 9)
5598 gen9_disable_rps(dev);
5599 else if (IS_CHERRYVIEW(dev))
38807746
D
5600 cherryview_disable_rps(dev);
5601 else if (IS_VALLEYVIEW(dev))
d20d4f0c
JB
5602 valleyview_disable_rps(dev);
5603 else
5604 gen6_disable_rps(dev);
e534770a 5605
c0951f0c 5606 dev_priv->rps.enabled = false;
4fc688ce 5607 mutex_unlock(&dev_priv->rps.hw_lock);
930ebb46 5608 }
8090c6b9
DV
5609}
5610
1a01ab3b
JB
5611static void intel_gen6_powersave_work(struct work_struct *work)
5612{
5613 struct drm_i915_private *dev_priv =
5614 container_of(work, struct drm_i915_private,
5615 rps.delayed_resume_work.work);
5616 struct drm_device *dev = dev_priv->dev;
5617
4fc688ce 5618 mutex_lock(&dev_priv->rps.hw_lock);
0a073b84 5619
3cc134e3
ID
5620 /*
5621 * TODO: reset/enable RPS interrupts on GEN9+ too, once RPS support is
5622 * added for it.
5623 */
5624 if (INTEL_INFO(dev)->gen < 9)
5625 gen6_reset_rps_interrupts(dev);
5626
38807746
D
5627 if (IS_CHERRYVIEW(dev)) {
5628 cherryview_enable_rps(dev);
5629 } else if (IS_VALLEYVIEW(dev)) {
0a073b84 5630 valleyview_enable_rps(dev);
20e49366 5631 } else if (INTEL_INFO(dev)->gen >= 9) {
b6fef0ef 5632 gen9_enable_rc6(dev);
20e49366 5633 gen9_enable_rps(dev);
b6fef0ef 5634 __gen6_update_ring_freq(dev);
6edee7f3
BW
5635 } else if (IS_BROADWELL(dev)) {
5636 gen8_enable_rps(dev);
c2bc2fc5 5637 __gen6_update_ring_freq(dev);
0a073b84
JB
5638 } else {
5639 gen6_enable_rps(dev);
c2bc2fc5 5640 __gen6_update_ring_freq(dev);
0a073b84 5641 }
c0951f0c 5642 dev_priv->rps.enabled = true;
3cc134e3
ID
5643
5644 if (INTEL_INFO(dev)->gen < 9)
5645 gen6_enable_rps_interrupts(dev);
5646
4fc688ce 5647 mutex_unlock(&dev_priv->rps.hw_lock);
c6df39b5
ID
5648
5649 intel_runtime_pm_put(dev_priv);
1a01ab3b
JB
5650}
5651
8090c6b9
DV
5652void intel_enable_gt_powersave(struct drm_device *dev)
5653{
1a01ab3b
JB
5654 struct drm_i915_private *dev_priv = dev->dev_private;
5655
f61018b1
YZ
5656 /* Powersaving is controlled by the host when inside a VM */
5657 if (intel_vgpu_active(dev))
5658 return;
5659
8090c6b9 5660 if (IS_IRONLAKE_M(dev)) {
dc1d0136 5661 mutex_lock(&dev->struct_mutex);
8090c6b9
DV
5662 ironlake_enable_drps(dev);
5663 ironlake_enable_rc6(dev);
5664 intel_init_emon(dev);
dc1d0136 5665 mutex_unlock(&dev->struct_mutex);
38807746 5666 } else if (INTEL_INFO(dev)->gen >= 6) {
1a01ab3b
JB
5667 /*
5668 * PCU communication is slow and this doesn't need to be
5669 * done at any specific time, so do this out of our fast path
5670 * to make resume and init faster.
c6df39b5
ID
5671 *
5672 * We depend on the HW RC6 power context save/restore
5673 * mechanism when entering D3 through runtime PM suspend. So
5674 * disable RPM until RPS/RC6 is properly setup. We can only
5675 * get here via the driver load/system resume/runtime resume
5676 * paths, so the _noresume version is enough (and in case of
5677 * runtime resume it's necessary).
1a01ab3b 5678 */
c6df39b5
ID
5679 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
5680 round_jiffies_up_relative(HZ)))
5681 intel_runtime_pm_get_noresume(dev_priv);
8090c6b9
DV
5682 }
5683}
5684
c6df39b5
ID
5685void intel_reset_gt_powersave(struct drm_device *dev)
5686{
5687 struct drm_i915_private *dev_priv = dev->dev_private;
5688
dbea3cea
ID
5689 if (INTEL_INFO(dev)->gen < 6)
5690 return;
5691
5692 gen6_suspend_rps(dev);
c6df39b5 5693 dev_priv->rps.enabled = false;
c6df39b5
ID
5694}
5695
3107bd48
DV
5696static void ibx_init_clock_gating(struct drm_device *dev)
5697{
5698 struct drm_i915_private *dev_priv = dev->dev_private;
5699
5700 /*
5701 * On Ibex Peak and Cougar Point, we need to disable clock
5702 * gating for the panel power sequencer or it will fail to
5703 * start up when no ports are active.
5704 */
5705 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
5706}
5707
0e088b8f
VS
5708static void g4x_disable_trickle_feed(struct drm_device *dev)
5709{
5710 struct drm_i915_private *dev_priv = dev->dev_private;
5711 int pipe;
5712
055e393f 5713 for_each_pipe(dev_priv, pipe) {
0e088b8f
VS
5714 I915_WRITE(DSPCNTR(pipe),
5715 I915_READ(DSPCNTR(pipe)) |
5716 DISPPLANE_TRICKLE_FEED_DISABLE);
1dba99f4 5717 intel_flush_primary_plane(dev_priv, pipe);
0e088b8f
VS
5718 }
5719}
5720
017636cc
VS
5721static void ilk_init_lp_watermarks(struct drm_device *dev)
5722{
5723 struct drm_i915_private *dev_priv = dev->dev_private;
5724
5725 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5726 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5727 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5728
5729 /*
5730 * Don't touch WM1S_LP_EN here.
5731 * Doing so could cause underruns.
5732 */
5733}
5734
1fa61106 5735static void ironlake_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
5736{
5737 struct drm_i915_private *dev_priv = dev->dev_private;
231e54f6 5738 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
6f1d69b0 5739
f1e8fa56
DL
5740 /*
5741 * Required for FBC
5742 * WaFbcDisableDpfcClockGating:ilk
5743 */
4d47e4f5
DL
5744 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
5745 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
5746 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
6f1d69b0
ED
5747
5748 I915_WRITE(PCH_3DCGDIS0,
5749 MARIUNIT_CLOCK_GATE_DISABLE |
5750 SVSMUNIT_CLOCK_GATE_DISABLE);
5751 I915_WRITE(PCH_3DCGDIS1,
5752 VFMUNIT_CLOCK_GATE_DISABLE);
5753
6f1d69b0
ED
5754 /*
5755 * According to the spec the following bits should be set in
5756 * order to enable memory self-refresh
5757 * The bit 22/21 of 0x42004
5758 * The bit 5 of 0x42020
5759 * The bit 15 of 0x45000
5760 */
5761 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5762 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5763 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
4d47e4f5 5764 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
6f1d69b0
ED
5765 I915_WRITE(DISP_ARB_CTL,
5766 (I915_READ(DISP_ARB_CTL) |
5767 DISP_FBC_WM_DIS));
017636cc
VS
5768
5769 ilk_init_lp_watermarks(dev);
6f1d69b0
ED
5770
5771 /*
5772 * Based on the document from hardware guys the following bits
5773 * should be set unconditionally in order to enable FBC.
5774 * The bit 22 of 0x42000
5775 * The bit 22 of 0x42004
5776 * The bit 7,8,9 of 0x42020.
5777 */
5778 if (IS_IRONLAKE_M(dev)) {
4bb35334 5779 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
6f1d69b0
ED
5780 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5781 I915_READ(ILK_DISPLAY_CHICKEN1) |
5782 ILK_FBCQ_DIS);
5783 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5784 I915_READ(ILK_DISPLAY_CHICKEN2) |
5785 ILK_DPARB_GATE);
6f1d69b0
ED
5786 }
5787
4d47e4f5
DL
5788 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
5789
6f1d69b0
ED
5790 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5791 I915_READ(ILK_DISPLAY_CHICKEN2) |
5792 ILK_ELPIN_409_SELECT);
5793 I915_WRITE(_3D_CHICKEN2,
5794 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
5795 _3D_CHICKEN2_WM_READ_PIPELINED);
4358a374 5796
ecdb4eb7 5797 /* WaDisableRenderCachePipelinedFlush:ilk */
4358a374
DV
5798 I915_WRITE(CACHE_MODE_0,
5799 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
3107bd48 5800
4e04632e
AG
5801 /* WaDisable_RenderCache_OperationalFlush:ilk */
5802 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
5803
0e088b8f 5804 g4x_disable_trickle_feed(dev);
bdad2b2f 5805
3107bd48
DV
5806 ibx_init_clock_gating(dev);
5807}
5808
5809static void cpt_init_clock_gating(struct drm_device *dev)
5810{
5811 struct drm_i915_private *dev_priv = dev->dev_private;
5812 int pipe;
3f704fa2 5813 uint32_t val;
3107bd48
DV
5814
5815 /*
5816 * On Ibex Peak and Cougar Point, we need to disable clock
5817 * gating for the panel power sequencer or it will fail to
5818 * start up when no ports are active.
5819 */
cd664078
JB
5820 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
5821 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
5822 PCH_CPUNIT_CLOCK_GATE_DISABLE);
3107bd48
DV
5823 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
5824 DPLS_EDP_PPS_FIX_DIS);
335c07b7
TI
5825 /* The below fixes the weird display corruption, a few pixels shifted
5826 * downward, on (only) LVDS of some HP laptops with IVY.
5827 */
055e393f 5828 for_each_pipe(dev_priv, pipe) {
dc4bd2d1
PZ
5829 val = I915_READ(TRANS_CHICKEN2(pipe));
5830 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
5831 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
41aa3448 5832 if (dev_priv->vbt.fdi_rx_polarity_inverted)
3f704fa2 5833 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
dc4bd2d1
PZ
5834 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
5835 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
5836 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
3f704fa2
PZ
5837 I915_WRITE(TRANS_CHICKEN2(pipe), val);
5838 }
3107bd48 5839 /* WADP0ClockGatingDisable */
055e393f 5840 for_each_pipe(dev_priv, pipe) {
3107bd48
DV
5841 I915_WRITE(TRANS_CHICKEN1(pipe),
5842 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
5843 }
6f1d69b0
ED
5844}
5845
1d7aaa0c
DV
5846static void gen6_check_mch_setup(struct drm_device *dev)
5847{
5848 struct drm_i915_private *dev_priv = dev->dev_private;
5849 uint32_t tmp;
5850
5851 tmp = I915_READ(MCH_SSKPD);
df662a28
DV
5852 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
5853 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
5854 tmp);
1d7aaa0c
DV
5855}
5856
1fa61106 5857static void gen6_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
5858{
5859 struct drm_i915_private *dev_priv = dev->dev_private;
231e54f6 5860 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
6f1d69b0 5861
231e54f6 5862 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6f1d69b0
ED
5863
5864 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5865 I915_READ(ILK_DISPLAY_CHICKEN2) |
5866 ILK_ELPIN_409_SELECT);
5867
ecdb4eb7 5868 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
4283908e
DV
5869 I915_WRITE(_3D_CHICKEN,
5870 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
5871
4e04632e
AG
5872 /* WaDisable_RenderCache_OperationalFlush:snb */
5873 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
5874
8d85d272
VS
5875 /*
5876 * BSpec recoomends 8x4 when MSAA is used,
5877 * however in practice 16x4 seems fastest.
c5c98a58
VS
5878 *
5879 * Note that PS/WM thread counts depend on the WIZ hashing
5880 * disable bit, which we don't touch here, but it's good
5881 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8d85d272
VS
5882 */
5883 I915_WRITE(GEN6_GT_MODE,
98533251 5884 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8d85d272 5885
017636cc 5886 ilk_init_lp_watermarks(dev);
6f1d69b0 5887
6f1d69b0 5888 I915_WRITE(CACHE_MODE_0,
50743298 5889 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
6f1d69b0
ED
5890
5891 I915_WRITE(GEN6_UCGCTL1,
5892 I915_READ(GEN6_UCGCTL1) |
5893 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
5894 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
5895
5896 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5897 * gating disable must be set. Failure to set it results in
5898 * flickering pixels due to Z write ordering failures after
5899 * some amount of runtime in the Mesa "fire" demo, and Unigine
5900 * Sanctuary and Tropics, and apparently anything else with
5901 * alpha test or pixel discard.
5902 *
5903 * According to the spec, bit 11 (RCCUNIT) must also be set,
5904 * but we didn't debug actual testcases to find it out.
0f846f81 5905 *
ef59318c
VS
5906 * WaDisableRCCUnitClockGating:snb
5907 * WaDisableRCPBUnitClockGating:snb
6f1d69b0
ED
5908 */
5909 I915_WRITE(GEN6_UCGCTL2,
5910 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5911 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5912
5eb146dd 5913 /* WaStripsFansDisableFastClipPerformanceFix:snb */
743b57d8
VS
5914 I915_WRITE(_3D_CHICKEN3,
5915 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
6f1d69b0 5916
e927ecde
VS
5917 /*
5918 * Bspec says:
5919 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
5920 * 3DSTATE_SF number of SF output attributes is more than 16."
5921 */
5922 I915_WRITE(_3D_CHICKEN3,
5923 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
5924
6f1d69b0
ED
5925 /*
5926 * According to the spec the following bits should be
5927 * set in order to enable memory self-refresh and fbc:
5928 * The bit21 and bit22 of 0x42000
5929 * The bit21 and bit22 of 0x42004
5930 * The bit5 and bit7 of 0x42020
5931 * The bit14 of 0x70180
5932 * The bit14 of 0x71180
4bb35334
DL
5933 *
5934 * WaFbcAsynchFlipDisableFbcQueue:snb
6f1d69b0
ED
5935 */
5936 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5937 I915_READ(ILK_DISPLAY_CHICKEN1) |
5938 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
5939 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5940 I915_READ(ILK_DISPLAY_CHICKEN2) |
5941 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
231e54f6
DL
5942 I915_WRITE(ILK_DSPCLK_GATE_D,
5943 I915_READ(ILK_DSPCLK_GATE_D) |
5944 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
5945 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
6f1d69b0 5946
0e088b8f 5947 g4x_disable_trickle_feed(dev);
f8f2ac9a 5948
3107bd48 5949 cpt_init_clock_gating(dev);
1d7aaa0c
DV
5950
5951 gen6_check_mch_setup(dev);
6f1d69b0
ED
5952}
5953
5954static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
5955{
5956 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
5957
3aad9059 5958 /*
46680e0a 5959 * WaVSThreadDispatchOverride:ivb,vlv
3aad9059
VS
5960 *
5961 * This actually overrides the dispatch
5962 * mode for all thread types.
5963 */
6f1d69b0
ED
5964 reg &= ~GEN7_FF_SCHED_MASK;
5965 reg |= GEN7_FF_TS_SCHED_HW;
5966 reg |= GEN7_FF_VS_SCHED_HW;
5967 reg |= GEN7_FF_DS_SCHED_HW;
5968
5969 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
5970}
5971
17a303ec
PZ
5972static void lpt_init_clock_gating(struct drm_device *dev)
5973{
5974 struct drm_i915_private *dev_priv = dev->dev_private;
5975
5976 /*
5977 * TODO: this bit should only be enabled when really needed, then
5978 * disabled when not needed anymore in order to save power.
5979 */
5980 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
5981 I915_WRITE(SOUTH_DSPCLK_GATE_D,
5982 I915_READ(SOUTH_DSPCLK_GATE_D) |
5983 PCH_LP_PARTITION_LEVEL_DISABLE);
0a790cdb
PZ
5984
5985 /* WADPOClockGatingDisable:hsw */
5986 I915_WRITE(_TRANSA_CHICKEN1,
5987 I915_READ(_TRANSA_CHICKEN1) |
5988 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
17a303ec
PZ
5989}
5990
7d708ee4
ID
5991static void lpt_suspend_hw(struct drm_device *dev)
5992{
5993 struct drm_i915_private *dev_priv = dev->dev_private;
5994
5995 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
5996 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
5997
5998 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
5999 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6000 }
6001}
6002
47c2bd97 6003static void broadwell_init_clock_gating(struct drm_device *dev)
1020a5c2
BW
6004{
6005 struct drm_i915_private *dev_priv = dev->dev_private;
07d27e20 6006 enum pipe pipe;
1020a5c2
BW
6007
6008 I915_WRITE(WM3_LP_ILK, 0);
6009 I915_WRITE(WM2_LP_ILK, 0);
6010 I915_WRITE(WM1_LP_ILK, 0);
50ed5fbd 6011
ab57fff1 6012 /* WaSwitchSolVfFArbitrationPriority:bdw */
50ed5fbd 6013 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
fe4ab3ce 6014
ab57fff1 6015 /* WaPsrDPAMaskVBlankInSRD:bdw */
fe4ab3ce
BW
6016 I915_WRITE(CHICKEN_PAR1_1,
6017 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6018
ab57fff1 6019 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
055e393f 6020 for_each_pipe(dev_priv, pipe) {
07d27e20 6021 I915_WRITE(CHICKEN_PIPESL_1(pipe),
c7c65622 6022 I915_READ(CHICKEN_PIPESL_1(pipe)) |
8f670bb1 6023 BDW_DPRS_MASK_VBLANK_SRD);
fe4ab3ce 6024 }
63801f21 6025
ab57fff1
BW
6026 /* WaVSRefCountFullforceMissDisable:bdw */
6027 /* WaDSRefCountFullforceMissDisable:bdw */
6028 I915_WRITE(GEN7_FF_THREAD_MODE,
6029 I915_READ(GEN7_FF_THREAD_MODE) &
6030 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
36075a4c 6031
295e8bb7
VS
6032 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6033 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
4f1ca9e9
VS
6034
6035 /* WaDisableSDEUnitClockGating:bdw */
6036 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6037 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
5d708680 6038
89d6b2b8 6039 lpt_init_clock_gating(dev);
1020a5c2
BW
6040}
6041
cad2a2d7
ED
6042static void haswell_init_clock_gating(struct drm_device *dev)
6043{
6044 struct drm_i915_private *dev_priv = dev->dev_private;
cad2a2d7 6045
017636cc 6046 ilk_init_lp_watermarks(dev);
cad2a2d7 6047
f3fc4884
FJ
6048 /* L3 caching of data atomics doesn't work -- disable it. */
6049 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6050 I915_WRITE(HSW_ROW_CHICKEN3,
6051 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6052
ecdb4eb7 6053 /* This is required by WaCatErrorRejectionIssue:hsw */
cad2a2d7
ED
6054 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6055 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6056 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6057
e36ea7ff
VS
6058 /* WaVSRefCountFullforceMissDisable:hsw */
6059 I915_WRITE(GEN7_FF_THREAD_MODE,
6060 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
cad2a2d7 6061
4e04632e
AG
6062 /* WaDisable_RenderCache_OperationalFlush:hsw */
6063 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6064
fe27c606
CW
6065 /* enable HiZ Raw Stall Optimization */
6066 I915_WRITE(CACHE_MODE_0_GEN7,
6067 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6068
ecdb4eb7 6069 /* WaDisable4x2SubspanOptimization:hsw */
cad2a2d7
ED
6070 I915_WRITE(CACHE_MODE_1,
6071 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
1544d9d5 6072
a12c4967
VS
6073 /*
6074 * BSpec recommends 8x4 when MSAA is used,
6075 * however in practice 16x4 seems fastest.
c5c98a58
VS
6076 *
6077 * Note that PS/WM thread counts depend on the WIZ hashing
6078 * disable bit, which we don't touch here, but it's good
6079 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
a12c4967
VS
6080 */
6081 I915_WRITE(GEN7_GT_MODE,
98533251 6082 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
a12c4967 6083
94411593
KG
6084 /* WaSampleCChickenBitEnable:hsw */
6085 I915_WRITE(HALF_SLICE_CHICKEN3,
6086 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6087
ecdb4eb7 6088 /* WaSwitchSolVfFArbitrationPriority:hsw */
e3dff585
BW
6089 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6090
90a88643
PZ
6091 /* WaRsPkgCStateDisplayPMReq:hsw */
6092 I915_WRITE(CHICKEN_PAR1_1,
6093 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
1544d9d5 6094
17a303ec 6095 lpt_init_clock_gating(dev);
cad2a2d7
ED
6096}
6097
1fa61106 6098static void ivybridge_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6099{
6100 struct drm_i915_private *dev_priv = dev->dev_private;
20848223 6101 uint32_t snpcr;
6f1d69b0 6102
017636cc 6103 ilk_init_lp_watermarks(dev);
6f1d69b0 6104
231e54f6 6105 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
6f1d69b0 6106
ecdb4eb7 6107 /* WaDisableEarlyCull:ivb */
87f8020e
JB
6108 I915_WRITE(_3D_CHICKEN3,
6109 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6110
ecdb4eb7 6111 /* WaDisableBackToBackFlipFix:ivb */
6f1d69b0
ED
6112 I915_WRITE(IVB_CHICKEN3,
6113 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6114 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6115
ecdb4eb7 6116 /* WaDisablePSDDualDispatchEnable:ivb */
12f3382b
JB
6117 if (IS_IVB_GT1(dev))
6118 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6119 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
12f3382b 6120
4e04632e
AG
6121 /* WaDisable_RenderCache_OperationalFlush:ivb */
6122 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6123
ecdb4eb7 6124 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
6f1d69b0
ED
6125 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6126 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6127
ecdb4eb7 6128 /* WaApplyL3ControlAndL3ChickenMode:ivb */
6f1d69b0
ED
6129 I915_WRITE(GEN7_L3CNTLREG1,
6130 GEN7_WA_FOR_GEN7_L3_CONTROL);
6131 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
8ab43976
JB
6132 GEN7_WA_L3_CHICKEN_MODE);
6133 if (IS_IVB_GT1(dev))
6134 I915_WRITE(GEN7_ROW_CHICKEN2,
6135 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
412236c2
VS
6136 else {
6137 /* must write both registers */
6138 I915_WRITE(GEN7_ROW_CHICKEN2,
6139 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8ab43976
JB
6140 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6141 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
412236c2 6142 }
6f1d69b0 6143
ecdb4eb7 6144 /* WaForceL3Serialization:ivb */
61939d97
JB
6145 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6146 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6147
1b80a19a 6148 /*
0f846f81 6149 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
ecdb4eb7 6150 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
0f846f81
JB
6151 */
6152 I915_WRITE(GEN6_UCGCTL2,
28acf3b2 6153 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
0f846f81 6154
ecdb4eb7 6155 /* This is required by WaCatErrorRejectionIssue:ivb */
6f1d69b0
ED
6156 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6157 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6158 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6159
0e088b8f 6160 g4x_disable_trickle_feed(dev);
6f1d69b0
ED
6161
6162 gen7_setup_fixed_func_scheduler(dev_priv);
97e1930f 6163
22721343
CW
6164 if (0) { /* causes HiZ corruption on ivb:gt1 */
6165 /* enable HiZ Raw Stall Optimization */
6166 I915_WRITE(CACHE_MODE_0_GEN7,
6167 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6168 }
116f2b6d 6169
ecdb4eb7 6170 /* WaDisable4x2SubspanOptimization:ivb */
97e1930f
DV
6171 I915_WRITE(CACHE_MODE_1,
6172 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
20848223 6173
a607c1a4
VS
6174 /*
6175 * BSpec recommends 8x4 when MSAA is used,
6176 * however in practice 16x4 seems fastest.
c5c98a58
VS
6177 *
6178 * Note that PS/WM thread counts depend on the WIZ hashing
6179 * disable bit, which we don't touch here, but it's good
6180 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
a607c1a4
VS
6181 */
6182 I915_WRITE(GEN7_GT_MODE,
98533251 6183 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
a607c1a4 6184
20848223
BW
6185 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6186 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6187 snpcr |= GEN6_MBC_SNPCR_MED;
6188 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
3107bd48 6189
ab5c608b
BW
6190 if (!HAS_PCH_NOP(dev))
6191 cpt_init_clock_gating(dev);
1d7aaa0c
DV
6192
6193 gen6_check_mch_setup(dev);
6f1d69b0
ED
6194}
6195
1fa61106 6196static void valleyview_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6197{
6198 struct drm_i915_private *dev_priv = dev->dev_private;
6f1d69b0 6199
d7fe0cc0 6200 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6f1d69b0 6201
ecdb4eb7 6202 /* WaDisableEarlyCull:vlv */
87f8020e
JB
6203 I915_WRITE(_3D_CHICKEN3,
6204 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6205
ecdb4eb7 6206 /* WaDisableBackToBackFlipFix:vlv */
6f1d69b0
ED
6207 I915_WRITE(IVB_CHICKEN3,
6208 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6209 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6210
fad7d36e 6211 /* WaPsdDispatchEnable:vlv */
ecdb4eb7 6212 /* WaDisablePSDDualDispatchEnable:vlv */
12f3382b 6213 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
d3bc0303
JB
6214 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6215 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
12f3382b 6216
4e04632e
AG
6217 /* WaDisable_RenderCache_OperationalFlush:vlv */
6218 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6219
ecdb4eb7 6220 /* WaForceL3Serialization:vlv */
61939d97
JB
6221 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6222 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6223
ecdb4eb7 6224 /* WaDisableDopClockGating:vlv */
8ab43976
JB
6225 I915_WRITE(GEN7_ROW_CHICKEN2,
6226 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6227
ecdb4eb7 6228 /* This is required by WaCatErrorRejectionIssue:vlv */
6f1d69b0
ED
6229 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6230 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6231 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6232
46680e0a
VS
6233 gen7_setup_fixed_func_scheduler(dev_priv);
6234
3c0edaeb 6235 /*
0f846f81 6236 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
ecdb4eb7 6237 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
0f846f81
JB
6238 */
6239 I915_WRITE(GEN6_UCGCTL2,
3c0edaeb 6240 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
0f846f81 6241
c98f5062
AG
6242 /* WaDisableL3Bank2xClockGate:vlv
6243 * Disabling L3 clock gating- MMIO 940c[25] = 1
6244 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6245 I915_WRITE(GEN7_UCGCTL4,
6246 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
e3f33d46 6247
e0d8d59b 6248 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6f1d69b0 6249
afd58e79
VS
6250 /*
6251 * BSpec says this must be set, even though
6252 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6253 */
6b26c86d
DV
6254 I915_WRITE(CACHE_MODE_1,
6255 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
7983117f 6256
da2518f9
VS
6257 /*
6258 * BSpec recommends 8x4 when MSAA is used,
6259 * however in practice 16x4 seems fastest.
6260 *
6261 * Note that PS/WM thread counts depend on the WIZ hashing
6262 * disable bit, which we don't touch here, but it's good
6263 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6264 */
6265 I915_WRITE(GEN7_GT_MODE,
6266 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6267
031994ee
VS
6268 /*
6269 * WaIncreaseL3CreditsForVLVB0:vlv
6270 * This is the hardware default actually.
6271 */
6272 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6273
2d809570 6274 /*
ecdb4eb7 6275 * WaDisableVLVClockGating_VBIIssue:vlv
2d809570
JB
6276 * Disable clock gating on th GCFG unit to prevent a delay
6277 * in the reporting of vblank events.
6278 */
7a0d1eed 6279 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
6f1d69b0
ED
6280}
6281
a4565da8
VS
6282static void cherryview_init_clock_gating(struct drm_device *dev)
6283{
6284 struct drm_i915_private *dev_priv = dev->dev_private;
6285
6286 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6287
6288 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
dd811e70 6289
232ce337
VS
6290 /* WaVSRefCountFullforceMissDisable:chv */
6291 /* WaDSRefCountFullforceMissDisable:chv */
6292 I915_WRITE(GEN7_FF_THREAD_MODE,
6293 I915_READ(GEN7_FF_THREAD_MODE) &
6294 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
acea6f95
VS
6295
6296 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6297 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6298 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
0846697c
VS
6299
6300 /* WaDisableCSUnitClockGating:chv */
6301 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6302 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
c631780f
VS
6303
6304 /* WaDisableSDEUnitClockGating:chv */
6305 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6306 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
a4565da8
VS
6307}
6308
1fa61106 6309static void g4x_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6310{
6311 struct drm_i915_private *dev_priv = dev->dev_private;
6312 uint32_t dspclk_gate;
6313
6314 I915_WRITE(RENCLK_GATE_D1, 0);
6315 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6316 GS_UNIT_CLOCK_GATE_DISABLE |
6317 CL_UNIT_CLOCK_GATE_DISABLE);
6318 I915_WRITE(RAMCLK_GATE_D, 0);
6319 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6320 OVRUNIT_CLOCK_GATE_DISABLE |
6321 OVCUNIT_CLOCK_GATE_DISABLE;
6322 if (IS_GM45(dev))
6323 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6324 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
4358a374
DV
6325
6326 /* WaDisableRenderCachePipelinedFlush */
6327 I915_WRITE(CACHE_MODE_0,
6328 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
de1aa629 6329
4e04632e
AG
6330 /* WaDisable_RenderCache_OperationalFlush:g4x */
6331 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6332
0e088b8f 6333 g4x_disable_trickle_feed(dev);
6f1d69b0
ED
6334}
6335
1fa61106 6336static void crestline_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6337{
6338 struct drm_i915_private *dev_priv = dev->dev_private;
6339
6340 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6341 I915_WRITE(RENCLK_GATE_D2, 0);
6342 I915_WRITE(DSPCLK_GATE_D, 0);
6343 I915_WRITE(RAMCLK_GATE_D, 0);
6344 I915_WRITE16(DEUC, 0);
20f94967
VS
6345 I915_WRITE(MI_ARB_STATE,
6346 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
4e04632e
AG
6347
6348 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6349 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6f1d69b0
ED
6350}
6351
1fa61106 6352static void broadwater_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6353{
6354 struct drm_i915_private *dev_priv = dev->dev_private;
6355
6356 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6357 I965_RCC_CLOCK_GATE_DISABLE |
6358 I965_RCPB_CLOCK_GATE_DISABLE |
6359 I965_ISC_CLOCK_GATE_DISABLE |
6360 I965_FBC_CLOCK_GATE_DISABLE);
6361 I915_WRITE(RENCLK_GATE_D2, 0);
20f94967
VS
6362 I915_WRITE(MI_ARB_STATE,
6363 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
4e04632e
AG
6364
6365 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6366 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6f1d69b0
ED
6367}
6368
1fa61106 6369static void gen3_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6370{
6371 struct drm_i915_private *dev_priv = dev->dev_private;
6372 u32 dstate = I915_READ(D_STATE);
6373
6374 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6375 DSTATE_DOT_CLOCK_GATING;
6376 I915_WRITE(D_STATE, dstate);
13a86b85
CW
6377
6378 if (IS_PINEVIEW(dev))
6379 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
974a3b0f
DV
6380
6381 /* IIR "flip pending" means done if this bit is set */
6382 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
12fabbcb
VS
6383
6384 /* interrupts should cause a wake up from C3 */
3299254f 6385 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
dbb42748
VS
6386
6387 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6388 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
1038392b
VS
6389
6390 I915_WRITE(MI_ARB_STATE,
6391 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
6f1d69b0
ED
6392}
6393
1fa61106 6394static void i85x_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6395{
6396 struct drm_i915_private *dev_priv = dev->dev_private;
6397
6398 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
54e472ae
VS
6399
6400 /* interrupts should cause a wake up from C3 */
6401 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
6402 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
1038392b
VS
6403
6404 I915_WRITE(MEM_MODE,
6405 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
6f1d69b0
ED
6406}
6407
1fa61106 6408static void i830_init_clock_gating(struct drm_device *dev)
6f1d69b0
ED
6409{
6410 struct drm_i915_private *dev_priv = dev->dev_private;
6411
6412 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
1038392b
VS
6413
6414 I915_WRITE(MEM_MODE,
6415 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
6416 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
6f1d69b0
ED
6417}
6418
6f1d69b0
ED
6419void intel_init_clock_gating(struct drm_device *dev)
6420{
6421 struct drm_i915_private *dev_priv = dev->dev_private;
6422
c57e3551
DL
6423 if (dev_priv->display.init_clock_gating)
6424 dev_priv->display.init_clock_gating(dev);
6f1d69b0
ED
6425}
6426
7d708ee4
ID
6427void intel_suspend_hw(struct drm_device *dev)
6428{
6429 if (HAS_PCH_LPT(dev))
6430 lpt_suspend_hw(dev);
6431}
6432
1fa61106
ED
6433/* Set up chip specific power management-related functions */
6434void intel_init_pm(struct drm_device *dev)
6435{
6436 struct drm_i915_private *dev_priv = dev->dev_private;
6437
7ff0ebcc 6438 intel_fbc_init(dev_priv);
1fa61106 6439
c921aba8
DV
6440 /* For cxsr */
6441 if (IS_PINEVIEW(dev))
6442 i915_pineview_get_mem_freq(dev);
6443 else if (IS_GEN5(dev))
6444 i915_ironlake_get_mem_freq(dev);
6445
1fa61106 6446 /* For FIFO watermark updates */
f5ed50cb 6447 if (INTEL_INFO(dev)->gen >= 9) {
2af30a5c
PB
6448 skl_setup_wm_latency(dev);
6449
45db2194 6450 dev_priv->display.init_clock_gating = skl_init_clock_gating;
2d41c0b5
PB
6451 dev_priv->display.update_wm = skl_update_wm;
6452 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
c83155a6 6453 } else if (HAS_PCH_SPLIT(dev)) {
fa50ad61 6454 ilk_setup_wm_latency(dev);
53615a5e 6455
bd602544
VS
6456 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
6457 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
6458 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
6459 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
6460 dev_priv->display.update_wm = ilk_update_wm;
6461 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
6462 } else {
6463 DRM_DEBUG_KMS("Failed to read display plane latency. "
6464 "Disable CxSR\n");
6465 }
6466
6467 if (IS_GEN5(dev))
1fa61106 6468 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
bd602544 6469 else if (IS_GEN6(dev))
1fa61106 6470 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
bd602544 6471 else if (IS_IVYBRIDGE(dev))
1fa61106 6472 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
bd602544 6473 else if (IS_HASWELL(dev))
cad2a2d7 6474 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
bd602544 6475 else if (INTEL_INFO(dev)->gen == 8)
47c2bd97 6476 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
a4565da8 6477 } else if (IS_CHERRYVIEW(dev)) {
3c2777fd 6478 dev_priv->display.update_wm = cherryview_update_wm;
01e184cc 6479 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
a4565da8
VS
6480 dev_priv->display.init_clock_gating =
6481 cherryview_init_clock_gating;
1fa61106
ED
6482 } else if (IS_VALLEYVIEW(dev)) {
6483 dev_priv->display.update_wm = valleyview_update_wm;
01e184cc 6484 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
1fa61106
ED
6485 dev_priv->display.init_clock_gating =
6486 valleyview_init_clock_gating;
1fa61106
ED
6487 } else if (IS_PINEVIEW(dev)) {
6488 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
6489 dev_priv->is_ddr3,
6490 dev_priv->fsb_freq,
6491 dev_priv->mem_freq)) {
6492 DRM_INFO("failed to find known CxSR latency "
6493 "(found ddr%s fsb freq %d, mem freq %d), "
6494 "disabling CxSR\n",
6495 (dev_priv->is_ddr3 == 1) ? "3" : "2",
6496 dev_priv->fsb_freq, dev_priv->mem_freq);
6497 /* Disable CxSR and never update its watermark again */
5209b1f4 6498 intel_set_memory_cxsr(dev_priv, false);
1fa61106
ED
6499 dev_priv->display.update_wm = NULL;
6500 } else
6501 dev_priv->display.update_wm = pineview_update_wm;
6502 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6503 } else if (IS_G4X(dev)) {
6504 dev_priv->display.update_wm = g4x_update_wm;
6505 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
6506 } else if (IS_GEN4(dev)) {
6507 dev_priv->display.update_wm = i965_update_wm;
6508 if (IS_CRESTLINE(dev))
6509 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
6510 else if (IS_BROADWATER(dev))
6511 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
6512 } else if (IS_GEN3(dev)) {
6513 dev_priv->display.update_wm = i9xx_update_wm;
6514 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
6515 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
feb56b93
DV
6516 } else if (IS_GEN2(dev)) {
6517 if (INTEL_INFO(dev)->num_pipes == 1) {
6518 dev_priv->display.update_wm = i845_update_wm;
1fa61106 6519 dev_priv->display.get_fifo_size = i845_get_fifo_size;
feb56b93
DV
6520 } else {
6521 dev_priv->display.update_wm = i9xx_update_wm;
1fa61106 6522 dev_priv->display.get_fifo_size = i830_get_fifo_size;
feb56b93
DV
6523 }
6524
6525 if (IS_I85X(dev) || IS_I865G(dev))
6526 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6527 else
6528 dev_priv->display.init_clock_gating = i830_init_clock_gating;
6529 } else {
6530 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
1fa61106
ED
6531 }
6532}
6533
151a49d0 6534int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
42c0526c 6535{
4fc688ce 6536 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
42c0526c
BW
6537
6538 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6539 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
6540 return -EAGAIN;
6541 }
6542
6543 I915_WRITE(GEN6_PCODE_DATA, *val);
dddab346 6544 I915_WRITE(GEN6_PCODE_DATA1, 0);
42c0526c
BW
6545 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6546
6547 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6548 500)) {
6549 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
6550 return -ETIMEDOUT;
6551 }
6552
6553 *val = I915_READ(GEN6_PCODE_DATA);
6554 I915_WRITE(GEN6_PCODE_DATA, 0);
6555
6556 return 0;
6557}
6558
151a49d0 6559int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
42c0526c 6560{
4fc688ce 6561 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
42c0526c
BW
6562
6563 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6564 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
6565 return -EAGAIN;
6566 }
6567
6568 I915_WRITE(GEN6_PCODE_DATA, val);
6569 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6570
6571 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6572 500)) {
6573 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
6574 return -ETIMEDOUT;
6575 }
6576
6577 I915_WRITE(GEN6_PCODE_DATA, 0);
6578
6579 return 0;
6580}
a0e4e199 6581
dd06f88c 6582static int vlv_gpu_freq_div(unsigned int czclk_freq)
855ba3be 6583{
dd06f88c
VS
6584 switch (czclk_freq) {
6585 case 200:
6586 return 10;
6587 case 267:
6588 return 12;
6589 case 320:
6590 case 333:
dd06f88c 6591 return 16;
ab3fb157
VS
6592 case 400:
6593 return 20;
855ba3be
JB
6594 default:
6595 return -1;
6596 }
dd06f88c 6597}
855ba3be 6598
dd06f88c
VS
6599static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
6600{
6601 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
6602
6603 div = vlv_gpu_freq_div(czclk_freq);
6604 if (div < 0)
6605 return div;
6606
6607 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
855ba3be
JB
6608}
6609
b55dd647 6610static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
855ba3be 6611{
dd06f88c 6612 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
855ba3be 6613
dd06f88c
VS
6614 mul = vlv_gpu_freq_div(czclk_freq);
6615 if (mul < 0)
6616 return mul;
855ba3be 6617
dd06f88c 6618 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
855ba3be
JB
6619}
6620
b55dd647 6621static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
22b1b2f8 6622{
dd06f88c 6623 int div, czclk_freq = dev_priv->rps.cz_freq;
22b1b2f8 6624
dd06f88c
VS
6625 div = vlv_gpu_freq_div(czclk_freq) / 2;
6626 if (div < 0)
6627 return div;
22b1b2f8 6628
dd06f88c 6629 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
22b1b2f8
D
6630}
6631
b55dd647 6632static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
22b1b2f8 6633{
dd06f88c 6634 int mul, czclk_freq = dev_priv->rps.cz_freq;
22b1b2f8 6635
dd06f88c
VS
6636 mul = vlv_gpu_freq_div(czclk_freq) / 2;
6637 if (mul < 0)
6638 return mul;
22b1b2f8 6639
1c14762d 6640 /* CHV needs even values */
dd06f88c 6641 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
22b1b2f8
D
6642}
6643
616bc820 6644int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
22b1b2f8 6645{
22b1b2f8 6646 if (IS_CHERRYVIEW(dev_priv->dev))
616bc820 6647 return chv_gpu_freq(dev_priv, val);
22b1b2f8 6648 else if (IS_VALLEYVIEW(dev_priv->dev))
616bc820
VS
6649 return byt_gpu_freq(dev_priv, val);
6650 else
6651 return val * GT_FREQUENCY_MULTIPLIER;
22b1b2f8
D
6652}
6653
616bc820
VS
6654int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
6655{
22b1b2f8 6656 if (IS_CHERRYVIEW(dev_priv->dev))
616bc820 6657 return chv_freq_opcode(dev_priv, val);
22b1b2f8 6658 else if (IS_VALLEYVIEW(dev_priv->dev))
616bc820
VS
6659 return byt_freq_opcode(dev_priv, val);
6660 else
6661 return val / GT_FREQUENCY_MULTIPLIER;
6662}
22b1b2f8 6663
f742a552 6664void intel_pm_setup(struct drm_device *dev)
907b28c5
CW
6665{
6666 struct drm_i915_private *dev_priv = dev->dev_private;
6667
f742a552
DV
6668 mutex_init(&dev_priv->rps.hw_lock);
6669
907b28c5
CW
6670 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6671 intel_gen6_powersave_work);
5d584b2e 6672
33688d95 6673 dev_priv->pm.suspended = false;
907b28c5 6674}