1 // SPDX-License-Identifier: MIT
3 * Copyright © 2019 Intel Corporation
6 #include <linux/string_helpers.h>
8 #include <drm/intel/i915_drm.h>
10 #include "display/intel_display.h"
11 #include "display/intel_display_irq.h"
15 #include "intel_breadcrumbs.h"
17 #include "intel_gt_clock_utils.h"
18 #include "intel_gt_irq.h"
19 #include "intel_gt_pm.h"
20 #include "intel_gt_pm_irq.h"
21 #include "intel_gt_print.h"
22 #include "intel_gt_regs.h"
23 #include "intel_mchbar_regs.h"
24 #include "intel_pcode.h"
25 #include "intel_rps.h"
26 #include "vlv_sideband.h"
27 #include "../../../platform/x86/intel_ips.h"
29 #define BUSY_MAX_EI 20u /* ms */
32 * Lock protecting IPS related data structures
34 static DEFINE_SPINLOCK(mchdev_lock);
36 static struct intel_gt *rps_to_gt(struct intel_rps *rps)
38 return container_of(rps, struct intel_gt, rps);
41 static struct drm_i915_private *rps_to_i915(struct intel_rps *rps)
43 return rps_to_gt(rps)->i915;
46 static struct intel_uncore *rps_to_uncore(struct intel_rps *rps)
48 return rps_to_gt(rps)->uncore;
51 static struct intel_guc_slpc *rps_to_slpc(struct intel_rps *rps)
53 struct intel_gt *gt = rps_to_gt(rps);
55 return >_to_guc(gt)->slpc;
58 static bool rps_uses_slpc(struct intel_rps *rps)
60 struct intel_gt *gt = rps_to_gt(rps);
62 return intel_uc_uses_guc_slpc(>->uc);
65 static u32 rps_pm_sanitize_mask(struct intel_rps *rps, u32 mask)
67 return mask & ~rps->pm_intrmsk_mbz;
70 static void set(struct intel_uncore *uncore, i915_reg_t reg, u32 val)
72 intel_uncore_write_fw(uncore, reg, val);
75 static void rps_timer(struct timer_list *t)
77 struct intel_rps *rps = from_timer(rps, t, timer);
78 struct intel_gt *gt = rps_to_gt(rps);
79 struct intel_engine_cs *engine;
80 ktime_t dt, last, timestamp;
81 enum intel_engine_id id;
85 for_each_engine(engine, gt, id) {
89 dt = intel_engine_get_busy_time(engine, ×tamp);
90 last = engine->stats.rps;
91 engine->stats.rps = dt;
93 busy = ktime_to_ns(ktime_sub(dt, last));
94 for (i = 0; i < ARRAY_SIZE(max_busy); i++) {
95 if (busy > max_busy[i])
96 swap(busy, max_busy[i]);
99 last = rps->pm_timestamp;
100 rps->pm_timestamp = timestamp;
102 if (intel_rps_is_active(rps)) {
106 dt = ktime_sub(timestamp, last);
109 * Our goal is to evaluate each engine independently, so we run
110 * at the lowest clocks required to sustain the heaviest
111 * workload. However, a task may be split into sequential
112 * dependent operations across a set of engines, such that
113 * the independent contributions do not account for high load,
114 * but overall the task is GPU bound. For example, consider
115 * video decode on vcs followed by colour post-processing
116 * on vecs, followed by general post-processing on rcs.
117 * Since multi-engines being active does imply a single
118 * continuous workload across all engines, we hedge our
119 * bets by only contributing a factor of the distributed
120 * load into our busyness calculation.
123 for (i = 1; i < ARRAY_SIZE(max_busy); i++) {
127 busy += div_u64(max_busy[i], 1 << i);
130 "busy:%lld [%d%%], max:[%lld, %lld, %lld], interval:%d\n",
131 busy, (int)div64_u64(100 * busy, dt),
132 max_busy[0], max_busy[1], max_busy[2],
135 if (100 * busy > rps->power.up_threshold * dt &&
136 rps->cur_freq < rps->max_freq_softlimit) {
137 rps->pm_iir |= GEN6_PM_RP_UP_THRESHOLD;
138 rps->pm_interval = 1;
139 queue_work(gt->i915->unordered_wq, &rps->work);
140 } else if (100 * busy < rps->power.down_threshold * dt &&
141 rps->cur_freq > rps->min_freq_softlimit) {
142 rps->pm_iir |= GEN6_PM_RP_DOWN_THRESHOLD;
143 rps->pm_interval = 1;
144 queue_work(gt->i915->unordered_wq, &rps->work);
149 mod_timer(&rps->timer,
150 jiffies + msecs_to_jiffies(rps->pm_interval));
151 rps->pm_interval = min(rps->pm_interval * 2, BUSY_MAX_EI);
155 static void rps_start_timer(struct intel_rps *rps)
157 rps->pm_timestamp = ktime_sub(ktime_get(), rps->pm_timestamp);
158 rps->pm_interval = 1;
159 mod_timer(&rps->timer, jiffies + 1);
162 static void rps_stop_timer(struct intel_rps *rps)
164 del_timer_sync(&rps->timer);
165 rps->pm_timestamp = ktime_sub(ktime_get(), rps->pm_timestamp);
166 cancel_work_sync(&rps->work);
169 static u32 rps_pm_mask(struct intel_rps *rps, u8 val)
173 /* We use UP_EI_EXPIRED interrupts for both up/down in manual mode */
174 if (val > rps->min_freq_softlimit)
175 mask |= (GEN6_PM_RP_UP_EI_EXPIRED |
176 GEN6_PM_RP_DOWN_THRESHOLD |
177 GEN6_PM_RP_DOWN_TIMEOUT);
179 if (val < rps->max_freq_softlimit)
180 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
182 mask &= rps->pm_events;
184 return rps_pm_sanitize_mask(rps, ~mask);
187 static void rps_reset_ei(struct intel_rps *rps)
189 memset(&rps->ei, 0, sizeof(rps->ei));
192 static void rps_enable_interrupts(struct intel_rps *rps)
194 struct intel_gt *gt = rps_to_gt(rps);
196 GEM_BUG_ON(rps_uses_slpc(rps));
198 GT_TRACE(gt, "interrupts:on rps->pm_events: %x, rps_pm_mask:%x\n",
199 rps->pm_events, rps_pm_mask(rps, rps->last_freq));
203 spin_lock_irq(gt->irq_lock);
204 gen6_gt_pm_enable_irq(gt, rps->pm_events);
205 spin_unlock_irq(gt->irq_lock);
207 intel_uncore_write(gt->uncore,
208 GEN6_PMINTRMSK, rps_pm_mask(rps, rps->last_freq));
211 static void gen6_rps_reset_interrupts(struct intel_rps *rps)
213 gen6_gt_pm_reset_iir(rps_to_gt(rps), GEN6_PM_RPS_EVENTS);
216 static void gen11_rps_reset_interrupts(struct intel_rps *rps)
218 while (gen11_gt_reset_one_iir(rps_to_gt(rps), 0, GEN11_GTPM))
222 static void rps_reset_interrupts(struct intel_rps *rps)
224 struct intel_gt *gt = rps_to_gt(rps);
226 spin_lock_irq(gt->irq_lock);
227 if (GRAPHICS_VER(gt->i915) >= 11)
228 gen11_rps_reset_interrupts(rps);
230 gen6_rps_reset_interrupts(rps);
233 spin_unlock_irq(gt->irq_lock);
236 static void rps_disable_interrupts(struct intel_rps *rps)
238 struct intel_gt *gt = rps_to_gt(rps);
240 intel_uncore_write(gt->uncore,
241 GEN6_PMINTRMSK, rps_pm_sanitize_mask(rps, ~0u));
243 spin_lock_irq(gt->irq_lock);
244 gen6_gt_pm_disable_irq(gt, GEN6_PM_RPS_EVENTS);
245 spin_unlock_irq(gt->irq_lock);
247 intel_synchronize_irq(gt->i915);
250 * Now that we will not be generating any more work, flush any
251 * outstanding tasks. As we are called on the RPS idle path,
252 * we will reset the GPU to minimum frequencies, so the current
253 * state of the worker can be discarded.
255 cancel_work_sync(&rps->work);
257 rps_reset_interrupts(rps);
258 GT_TRACE(gt, "interrupts:off\n");
261 static const struct cparams {
267 { 1, 1333, 301, 28664 },
268 { 1, 1067, 294, 24460 },
269 { 1, 800, 294, 25192 },
270 { 0, 1333, 276, 27605 },
271 { 0, 1067, 276, 27605 },
272 { 0, 800, 231, 23784 },
275 static void gen5_rps_init(struct intel_rps *rps)
277 struct drm_i915_private *i915 = rps_to_i915(rps);
278 struct intel_uncore *uncore = rps_to_uncore(rps);
279 u8 fmax, fmin, fstart;
283 if (i915->fsb_freq <= 3200000)
285 else if (i915->fsb_freq <= 4800000)
290 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
291 if (cparams[i].i == c_m &&
292 cparams[i].t == DIV_ROUND_CLOSEST(i915->mem_freq, 1000)) {
293 rps->ips.m = cparams[i].m;
294 rps->ips.c = cparams[i].c;
299 rgvmodectl = intel_uncore_read(uncore, MEMMODECTL);
301 /* Set up min, max, and cur for interrupt handling */
302 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
303 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
304 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
305 MEMMODE_FSTART_SHIFT;
306 drm_dbg(&i915->drm, "fmax: %d, fmin: %d, fstart: %d\n",
309 rps->min_freq = fmax;
310 rps->efficient_freq = fstart;
311 rps->max_freq = fmin;
315 __ips_chipset_val(struct intel_ips *ips)
317 struct intel_uncore *uncore =
318 rps_to_uncore(container_of(ips, struct intel_rps, ips));
319 unsigned long now = jiffies_to_msecs(jiffies), dt;
320 unsigned long result;
323 lockdep_assert_held(&mchdev_lock);
326 * Prevent division-by-zero if we are asking too fast.
327 * Also, we don't get interesting results if we are polling
328 * faster than once in 10ms, so just return the saved value
331 dt = now - ips->last_time1;
333 return ips->chipset_power;
335 /* FIXME: handle per-counter overflow */
336 total = intel_uncore_read(uncore, DMIEC);
337 total += intel_uncore_read(uncore, DDREC);
338 total += intel_uncore_read(uncore, CSIEC);
340 delta = total - ips->last_count1;
342 result = div_u64(div_u64(ips->m * delta, dt) + ips->c, 10);
344 ips->last_count1 = total;
345 ips->last_time1 = now;
347 ips->chipset_power = result;
352 static unsigned long ips_mch_val(struct intel_uncore *uncore)
354 unsigned int m, x, b;
357 tsfs = intel_uncore_read(uncore, TSFS);
358 x = intel_uncore_read8(uncore, TR1);
360 b = tsfs & TSFS_INTR_MASK;
361 m = (tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT;
363 return m * x / 127 - b;
366 static int _pxvid_to_vd(u8 pxvid)
371 if (pxvid >= 8 && pxvid < 31)
374 return (pxvid + 2) * 125;
377 static u32 pvid_to_extvid(struct drm_i915_private *i915, u8 pxvid)
379 const int vd = _pxvid_to_vd(pxvid);
381 if (INTEL_INFO(i915)->is_mobile)
382 return max(vd - 1125, 0);
387 static void __gen5_ips_update(struct intel_ips *ips)
389 struct intel_uncore *uncore =
390 rps_to_uncore(container_of(ips, struct intel_rps, ips));
394 lockdep_assert_held(&mchdev_lock);
396 now = ktime_get_raw_ns();
397 dt = now - ips->last_time2;
398 do_div(dt, NSEC_PER_MSEC);
400 /* Don't divide by 0 */
404 count = intel_uncore_read(uncore, GFXEC);
405 delta = count - ips->last_count2;
407 ips->last_count2 = count;
408 ips->last_time2 = now;
410 /* More magic constants... */
411 ips->gfx_power = div_u64(delta * 1181, dt * 10);
414 static void gen5_rps_update(struct intel_rps *rps)
416 spin_lock_irq(&mchdev_lock);
417 __gen5_ips_update(&rps->ips);
418 spin_unlock_irq(&mchdev_lock);
421 static unsigned int gen5_invert_freq(struct intel_rps *rps,
424 /* Invert the frequency bin into an ips delay */
425 val = rps->max_freq - val;
426 val = rps->min_freq + val;
431 static int __gen5_rps_set(struct intel_rps *rps, u8 val)
433 struct intel_uncore *uncore = rps_to_uncore(rps);
436 lockdep_assert_held(&mchdev_lock);
438 rgvswctl = intel_uncore_read16(uncore, MEMSWCTL);
439 if (rgvswctl & MEMCTL_CMD_STS) {
440 drm_dbg(&rps_to_i915(rps)->drm,
441 "gpu busy, RCS change rejected\n");
442 return -EBUSY; /* still busy with another command */
445 /* Invert the frequency bin into an ips delay */
446 val = gen5_invert_freq(rps, val);
449 (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
450 (val << MEMCTL_FREQ_SHIFT) |
452 intel_uncore_write16(uncore, MEMSWCTL, rgvswctl);
453 intel_uncore_posting_read16(uncore, MEMSWCTL);
455 rgvswctl |= MEMCTL_CMD_STS;
456 intel_uncore_write16(uncore, MEMSWCTL, rgvswctl);
461 static int gen5_rps_set(struct intel_rps *rps, u8 val)
465 spin_lock_irq(&mchdev_lock);
466 err = __gen5_rps_set(rps, val);
467 spin_unlock_irq(&mchdev_lock);
472 static unsigned long intel_pxfreq(u32 vidfreq)
474 int div = (vidfreq & 0x3f0000) >> 16;
475 int post = (vidfreq & 0x3000) >> 12;
476 int pre = (vidfreq & 0x7);
481 return div * 133333 / (pre << post);
484 static unsigned int init_emon(struct intel_uncore *uncore)
489 /* Disable to program */
490 intel_uncore_write(uncore, ECR, 0);
491 intel_uncore_posting_read(uncore, ECR);
493 /* Program energy weights for various events */
494 intel_uncore_write(uncore, SDEW, 0x15040d00);
495 intel_uncore_write(uncore, CSIEW0, 0x007f0000);
496 intel_uncore_write(uncore, CSIEW1, 0x1e220004);
497 intel_uncore_write(uncore, CSIEW2, 0x04000004);
499 for (i = 0; i < 5; i++)
500 intel_uncore_write(uncore, PEW(i), 0);
501 for (i = 0; i < 3; i++)
502 intel_uncore_write(uncore, DEW(i), 0);
504 /* Program P-state weights to account for frequency power adjustment */
505 for (i = 0; i < 16; i++) {
506 u32 pxvidfreq = intel_uncore_read(uncore, PXVFREQ(i));
507 unsigned int freq = intel_pxfreq(pxvidfreq);
509 (pxvidfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT;
512 val = vid * vid * freq / 1000 * 255;
513 val /= 127 * 127 * 900;
517 /* Render standby states get 0 weight */
521 for (i = 0; i < 4; i++) {
522 intel_uncore_write(uncore, PXW(i),
523 pxw[i * 4 + 0] << 24 |
524 pxw[i * 4 + 1] << 16 |
525 pxw[i * 4 + 2] << 8 |
526 pxw[i * 4 + 3] << 0);
529 /* Adjust magic regs to magic values (more experimental results) */
530 intel_uncore_write(uncore, OGW0, 0);
531 intel_uncore_write(uncore, OGW1, 0);
532 intel_uncore_write(uncore, EG0, 0x00007f00);
533 intel_uncore_write(uncore, EG1, 0x0000000e);
534 intel_uncore_write(uncore, EG2, 0x000e0000);
535 intel_uncore_write(uncore, EG3, 0x68000300);
536 intel_uncore_write(uncore, EG4, 0x42000000);
537 intel_uncore_write(uncore, EG5, 0x00140031);
538 intel_uncore_write(uncore, EG6, 0);
539 intel_uncore_write(uncore, EG7, 0);
541 for (i = 0; i < 8; i++)
542 intel_uncore_write(uncore, PXWL(i), 0);
544 /* Enable PMON + select events */
545 intel_uncore_write(uncore, ECR, 0x80000019);
547 return intel_uncore_read(uncore, LCFUSE02) & LCFUSE_HIV_MASK;
550 static bool gen5_rps_enable(struct intel_rps *rps)
552 struct drm_i915_private *i915 = rps_to_i915(rps);
553 struct intel_uncore *uncore = rps_to_uncore(rps);
557 spin_lock_irq(&mchdev_lock);
559 rgvmodectl = intel_uncore_read(uncore, MEMMODECTL);
561 /* Enable temp reporting */
562 intel_uncore_write16(uncore, PMMISC,
563 intel_uncore_read16(uncore, PMMISC) | MCPPCE_EN);
564 intel_uncore_write16(uncore, TSC1,
565 intel_uncore_read16(uncore, TSC1) | TSE);
567 /* 100ms RC evaluation intervals */
568 intel_uncore_write(uncore, RCUPEI, 100000);
569 intel_uncore_write(uncore, RCDNEI, 100000);
571 /* Set max/min thresholds to 90ms and 80ms respectively */
572 intel_uncore_write(uncore, RCBMAXAVG, 90000);
573 intel_uncore_write(uncore, RCBMINAVG, 80000);
575 intel_uncore_write(uncore, MEMIHYST, 1);
577 /* Set up min, max, and cur for interrupt handling */
578 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
579 MEMMODE_FSTART_SHIFT;
581 vstart = (intel_uncore_read(uncore, PXVFREQ(fstart)) &
582 PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT;
584 intel_uncore_write(uncore,
586 MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
588 intel_uncore_write(uncore, VIDSTART, vstart);
589 intel_uncore_posting_read(uncore, VIDSTART);
591 rgvmodectl |= MEMMODE_SWMODE_EN;
592 intel_uncore_write(uncore, MEMMODECTL, rgvmodectl);
594 if (wait_for_atomic((intel_uncore_read(uncore, MEMSWCTL) &
595 MEMCTL_CMD_STS) == 0, 10))
596 drm_err(&uncore->i915->drm,
597 "stuck trying to change perf mode\n");
600 __gen5_rps_set(rps, rps->cur_freq);
602 rps->ips.last_count1 = intel_uncore_read(uncore, DMIEC);
603 rps->ips.last_count1 += intel_uncore_read(uncore, DDREC);
604 rps->ips.last_count1 += intel_uncore_read(uncore, CSIEC);
605 rps->ips.last_time1 = jiffies_to_msecs(jiffies);
607 rps->ips.last_count2 = intel_uncore_read(uncore, GFXEC);
608 rps->ips.last_time2 = ktime_get_raw_ns();
610 spin_lock(&i915->irq_lock);
611 ilk_enable_display_irq(i915, DE_PCU_EVENT);
612 spin_unlock(&i915->irq_lock);
614 spin_unlock_irq(&mchdev_lock);
616 rps->ips.corr = init_emon(uncore);
621 static void gen5_rps_disable(struct intel_rps *rps)
623 struct drm_i915_private *i915 = rps_to_i915(rps);
624 struct intel_uncore *uncore = rps_to_uncore(rps);
627 spin_lock_irq(&mchdev_lock);
629 spin_lock(&i915->irq_lock);
630 ilk_disable_display_irq(i915, DE_PCU_EVENT);
631 spin_unlock(&i915->irq_lock);
633 rgvswctl = intel_uncore_read16(uncore, MEMSWCTL);
635 /* Ack interrupts, disable EFC interrupt */
636 intel_uncore_rmw(uncore, MEMINTREN, MEMINT_EVAL_CHG_EN, 0);
637 intel_uncore_write(uncore, MEMINTRSTS, MEMINT_EVAL_CHG);
639 /* Go back to the starting frequency */
640 __gen5_rps_set(rps, rps->idle_freq);
642 rgvswctl |= MEMCTL_CMD_STS;
643 intel_uncore_write(uncore, MEMSWCTL, rgvswctl);
646 spin_unlock_irq(&mchdev_lock);
649 static u32 rps_limits(struct intel_rps *rps, u8 val)
654 * Only set the down limit when we've reached the lowest level to avoid
655 * getting more interrupts, otherwise leave this clear. This prevents a
656 * race in the hw when coming out of rc6: There's a tiny window where
657 * the hw runs at the minimal clock before selecting the desired
658 * frequency, if the down threshold expires in that window we will not
659 * receive a down interrupt.
661 if (GRAPHICS_VER(rps_to_i915(rps)) >= 9) {
662 limits = rps->max_freq_softlimit << 23;
663 if (val <= rps->min_freq_softlimit)
664 limits |= rps->min_freq_softlimit << 14;
666 limits = rps->max_freq_softlimit << 24;
667 if (val <= rps->min_freq_softlimit)
668 limits |= rps->min_freq_softlimit << 16;
674 static void rps_set_power(struct intel_rps *rps, int new_power)
676 struct intel_gt *gt = rps_to_gt(rps);
677 struct intel_uncore *uncore = gt->uncore;
678 u32 ei_up = 0, ei_down = 0;
680 lockdep_assert_held(&rps->power.mutex);
682 if (new_power == rps->power.mode)
685 /* Note the units here are not exactly 1us, but 1280ns. */
703 /* When byt can survive without system hang with dynamic
704 * sw freq adjustments, this restriction can be lifted.
706 if (IS_VALLEYVIEW(gt->i915))
710 "changing power mode [%d], up %d%% @ %dus, down %d%% @ %dus\n",
712 rps->power.up_threshold, ei_up,
713 rps->power.down_threshold, ei_down);
715 set(uncore, GEN6_RP_UP_EI,
716 intel_gt_ns_to_pm_interval(gt, ei_up * 1000));
717 set(uncore, GEN6_RP_UP_THRESHOLD,
718 intel_gt_ns_to_pm_interval(gt,
719 ei_up * rps->power.up_threshold * 10));
721 set(uncore, GEN6_RP_DOWN_EI,
722 intel_gt_ns_to_pm_interval(gt, ei_down * 1000));
723 set(uncore, GEN6_RP_DOWN_THRESHOLD,
724 intel_gt_ns_to_pm_interval(gt,
726 rps->power.down_threshold * 10));
728 set(uncore, GEN6_RP_CONTROL,
729 (GRAPHICS_VER(gt->i915) > 9 ? 0 : GEN6_RP_MEDIA_TURBO) |
730 GEN6_RP_MEDIA_HW_NORMAL_MODE |
731 GEN6_RP_MEDIA_IS_GFX |
733 GEN6_RP_UP_BUSY_AVG |
734 GEN6_RP_DOWN_IDLE_AVG);
737 rps->power.mode = new_power;
740 static void gen6_rps_set_thresholds(struct intel_rps *rps, u8 val)
744 new_power = rps->power.mode;
745 switch (rps->power.mode) {
747 if (val > rps->efficient_freq + 1 &&
753 if (val <= rps->efficient_freq &&
755 new_power = LOW_POWER;
756 else if (val >= rps->rp0_freq &&
758 new_power = HIGH_POWER;
762 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
767 /* Max/min bins are special */
768 if (val <= rps->min_freq_softlimit)
769 new_power = LOW_POWER;
770 if (val >= rps->max_freq_softlimit)
771 new_power = HIGH_POWER;
773 mutex_lock(&rps->power.mutex);
774 if (rps->power.interactive)
775 new_power = HIGH_POWER;
776 rps_set_power(rps, new_power);
777 mutex_unlock(&rps->power.mutex);
780 void intel_rps_mark_interactive(struct intel_rps *rps, bool interactive)
782 GT_TRACE(rps_to_gt(rps), "mark interactive: %s\n",
783 str_yes_no(interactive));
785 mutex_lock(&rps->power.mutex);
787 if (!rps->power.interactive++ && intel_rps_is_active(rps))
788 rps_set_power(rps, HIGH_POWER);
790 GEM_BUG_ON(!rps->power.interactive);
791 rps->power.interactive--;
793 mutex_unlock(&rps->power.mutex);
796 static int gen6_rps_set(struct intel_rps *rps, u8 val)
798 struct intel_uncore *uncore = rps_to_uncore(rps);
799 struct drm_i915_private *i915 = rps_to_i915(rps);
802 GEM_BUG_ON(rps_uses_slpc(rps));
804 if (GRAPHICS_VER(i915) >= 9)
805 swreq = GEN9_FREQUENCY(val);
806 else if (IS_HASWELL(i915) || IS_BROADWELL(i915))
807 swreq = HSW_FREQUENCY(val);
809 swreq = (GEN6_FREQUENCY(val) |
811 GEN6_AGGRESSIVE_TURBO);
812 set(uncore, GEN6_RPNSWREQ, swreq);
814 GT_TRACE(rps_to_gt(rps), "set val:%x, freq:%d, swreq:%x\n",
815 val, intel_gpu_freq(rps, val), swreq);
820 static int vlv_rps_set(struct intel_rps *rps, u8 val)
822 struct drm_i915_private *i915 = rps_to_i915(rps);
826 err = vlv_punit_write(i915, PUNIT_REG_GPU_FREQ_REQ, val);
829 GT_TRACE(rps_to_gt(rps), "set val:%x, freq:%d\n",
830 val, intel_gpu_freq(rps, val));
835 static int rps_set(struct intel_rps *rps, u8 val, bool update)
837 struct drm_i915_private *i915 = rps_to_i915(rps);
840 if (val == rps->last_freq)
843 if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
844 err = vlv_rps_set(rps, val);
845 else if (GRAPHICS_VER(i915) >= 6)
846 err = gen6_rps_set(rps, val);
848 err = gen5_rps_set(rps, val);
852 if (update && GRAPHICS_VER(i915) >= 6)
853 gen6_rps_set_thresholds(rps, val);
854 rps->last_freq = val;
859 void intel_rps_unpark(struct intel_rps *rps)
861 if (!intel_rps_is_enabled(rps))
864 GT_TRACE(rps_to_gt(rps), "unpark:%x\n", rps->cur_freq);
867 * Use the user's desired frequency as a guide, but for better
868 * performance, jump directly to RPe as our starting frequency.
870 mutex_lock(&rps->lock);
872 intel_rps_set_active(rps);
875 rps->min_freq_softlimit,
876 rps->max_freq_softlimit));
878 mutex_unlock(&rps->lock);
881 if (intel_rps_has_interrupts(rps))
882 rps_enable_interrupts(rps);
883 if (intel_rps_uses_timer(rps))
884 rps_start_timer(rps);
886 if (GRAPHICS_VER(rps_to_i915(rps)) == 5)
887 gen5_rps_update(rps);
890 void intel_rps_park(struct intel_rps *rps)
894 if (!intel_rps_is_enabled(rps))
897 if (!intel_rps_clear_active(rps))
900 if (intel_rps_uses_timer(rps))
902 if (intel_rps_has_interrupts(rps))
903 rps_disable_interrupts(rps);
905 if (rps->last_freq <= rps->idle_freq)
909 * The punit delays the write of the frequency and voltage until it
910 * determines the GPU is awake. During normal usage we don't want to
911 * waste power changing the frequency if the GPU is sleeping (rc6).
912 * However, the GPU and driver is now idle and we do not want to delay
913 * switching to minimum voltage (reducing power whilst idle) as we do
914 * not expect to be woken in the near future and so must flush the
915 * change by waking the device.
917 * We choose to take the media powerwell (either would do to trick the
918 * punit into committing the voltage change) as that takes a lot less
919 * power than the render powerwell.
921 intel_uncore_forcewake_get(rps_to_uncore(rps), FORCEWAKE_MEDIA);
922 rps_set(rps, rps->idle_freq, false);
923 intel_uncore_forcewake_put(rps_to_uncore(rps), FORCEWAKE_MEDIA);
926 * Since we will try and restart from the previously requested
927 * frequency on unparking, treat this idle point as a downclock
928 * interrupt and reduce the frequency for resume. If we park/unpark
929 * more frequently than the rps worker can run, we will not respond
930 * to any EI and never see a change in frequency.
932 * (Note we accommodate Cherryview's limitation of only using an
933 * even bin by applying it to all.)
938 else /* CHV needs even encode values */
941 rps->cur_freq = max_t(int, rps->cur_freq + adj, rps->min_freq);
942 if (rps->cur_freq < rps->efficient_freq) {
943 rps->cur_freq = rps->efficient_freq;
947 GT_TRACE(rps_to_gt(rps), "park:%x\n", rps->cur_freq);
950 u32 intel_rps_get_boost_frequency(struct intel_rps *rps)
952 struct intel_guc_slpc *slpc;
954 if (rps_uses_slpc(rps)) {
955 slpc = rps_to_slpc(rps);
957 return slpc->boost_freq;
959 return intel_gpu_freq(rps, rps->boost_freq);
963 static int rps_set_boost_freq(struct intel_rps *rps, u32 val)
967 /* Validate against (static) hardware limits */
968 val = intel_freq_opcode(rps, val);
969 if (val < rps->min_freq || val > rps->max_freq)
972 mutex_lock(&rps->lock);
973 if (val != rps->boost_freq) {
974 rps->boost_freq = val;
975 boost = atomic_read(&rps->num_waiters);
977 mutex_unlock(&rps->lock);
979 queue_work(rps_to_gt(rps)->i915->unordered_wq, &rps->work);
984 int intel_rps_set_boost_frequency(struct intel_rps *rps, u32 freq)
986 struct intel_guc_slpc *slpc;
988 if (rps_uses_slpc(rps)) {
989 slpc = rps_to_slpc(rps);
991 return intel_guc_slpc_set_boost_freq(slpc, freq);
993 return rps_set_boost_freq(rps, freq);
997 void intel_rps_dec_waiters(struct intel_rps *rps)
999 struct intel_guc_slpc *slpc;
1001 if (rps_uses_slpc(rps)) {
1002 slpc = rps_to_slpc(rps);
1004 intel_guc_slpc_dec_waiters(slpc);
1006 atomic_dec(&rps->num_waiters);
1010 void intel_rps_boost(struct i915_request *rq)
1012 struct intel_guc_slpc *slpc;
1014 if (i915_request_signaled(rq) || i915_request_has_waitboost(rq))
1017 /* Waitboost is not needed for contexts marked with a Freq hint */
1018 if (test_bit(CONTEXT_LOW_LATENCY, &rq->context->flags))
1021 /* Serializes with i915_request_retire() */
1022 if (!test_and_set_bit(I915_FENCE_FLAG_BOOST, &rq->fence.flags)) {
1023 struct intel_rps *rps = &READ_ONCE(rq->engine)->gt->rps;
1025 if (rps_uses_slpc(rps)) {
1026 slpc = rps_to_slpc(rps);
1028 if (slpc->min_freq_softlimit >= slpc->boost_freq)
1031 /* Return if old value is non zero */
1032 if (!atomic_fetch_inc(&slpc->num_waiters)) {
1033 GT_TRACE(rps_to_gt(rps), "boost fence:%llx:%llx\n",
1034 rq->fence.context, rq->fence.seqno);
1035 queue_work(rps_to_gt(rps)->i915->unordered_wq,
1042 if (atomic_fetch_inc(&rps->num_waiters))
1045 if (!intel_rps_is_active(rps))
1048 GT_TRACE(rps_to_gt(rps), "boost fence:%llx:%llx\n",
1049 rq->fence.context, rq->fence.seqno);
1051 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
1052 queue_work(rps_to_gt(rps)->i915->unordered_wq, &rps->work);
1054 WRITE_ONCE(rps->boosts, rps->boosts + 1); /* debug only */
1058 int intel_rps_set(struct intel_rps *rps, u8 val)
1062 lockdep_assert_held(&rps->lock);
1063 GEM_BUG_ON(val > rps->max_freq);
1064 GEM_BUG_ON(val < rps->min_freq);
1066 if (intel_rps_is_active(rps)) {
1067 err = rps_set(rps, val, true);
1072 * Make sure we continue to get interrupts
1073 * until we hit the minimum or maximum frequencies.
1075 if (intel_rps_has_interrupts(rps)) {
1076 struct intel_uncore *uncore = rps_to_uncore(rps);
1079 GEN6_RP_INTERRUPT_LIMITS, rps_limits(rps, val));
1081 set(uncore, GEN6_PMINTRMSK, rps_pm_mask(rps, val));
1085 rps->cur_freq = val;
1089 static u32 intel_rps_read_state_cap(struct intel_rps *rps)
1091 struct drm_i915_private *i915 = rps_to_i915(rps);
1092 struct intel_uncore *uncore = rps_to_uncore(rps);
1094 if (IS_GEN9_LP(i915))
1095 return intel_uncore_read(uncore, BXT_RP_STATE_CAP);
1097 return intel_uncore_read(uncore, GEN6_RP_STATE_CAP);
1101 mtl_get_freq_caps(struct intel_rps *rps, struct intel_rps_freq_caps *caps)
1103 struct intel_uncore *uncore = rps_to_uncore(rps);
1104 u32 rp_state_cap = rps_to_gt(rps)->type == GT_MEDIA ?
1105 intel_uncore_read(uncore, MTL_MEDIAP_STATE_CAP) :
1106 intel_uncore_read(uncore, MTL_RP_STATE_CAP);
1107 u32 rpe = rps_to_gt(rps)->type == GT_MEDIA ?
1108 intel_uncore_read(uncore, MTL_MPE_FREQUENCY) :
1109 intel_uncore_read(uncore, MTL_GT_RPE_FREQUENCY);
1111 /* MTL values are in units of 16.67 MHz */
1112 caps->rp0_freq = REG_FIELD_GET(MTL_RP0_CAP_MASK, rp_state_cap);
1113 caps->min_freq = REG_FIELD_GET(MTL_RPN_CAP_MASK, rp_state_cap);
1114 caps->rp1_freq = REG_FIELD_GET(MTL_RPE_MASK, rpe);
1118 __gen6_rps_get_freq_caps(struct intel_rps *rps, struct intel_rps_freq_caps *caps)
1120 struct drm_i915_private *i915 = rps_to_i915(rps);
1123 rp_state_cap = intel_rps_read_state_cap(rps);
1125 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
1126 if (IS_GEN9_LP(i915)) {
1127 caps->rp0_freq = (rp_state_cap >> 16) & 0xff;
1128 caps->rp1_freq = (rp_state_cap >> 8) & 0xff;
1129 caps->min_freq = (rp_state_cap >> 0) & 0xff;
1131 caps->rp0_freq = (rp_state_cap >> 0) & 0xff;
1132 if (GRAPHICS_VER(i915) >= 10)
1133 caps->rp1_freq = REG_FIELD_GET(RPE_MASK,
1134 intel_uncore_read(to_gt(i915)->uncore,
1135 GEN10_FREQ_INFO_REC));
1137 caps->rp1_freq = (rp_state_cap >> 8) & 0xff;
1138 caps->min_freq = (rp_state_cap >> 16) & 0xff;
1141 if (IS_GEN9_BC(i915) || GRAPHICS_VER(i915) >= 11) {
1143 * In this case rp_state_cap register reports frequencies in
1144 * units of 50 MHz. Convert these to the actual "hw unit", i.e.
1145 * units of 16.67 MHz
1147 caps->rp0_freq *= GEN9_FREQ_SCALER;
1148 caps->rp1_freq *= GEN9_FREQ_SCALER;
1149 caps->min_freq *= GEN9_FREQ_SCALER;
1154 * gen6_rps_get_freq_caps - Get freq caps exposed by HW
1155 * @rps: the intel_rps structure
1156 * @caps: returned freq caps
1158 * Returned "caps" frequencies should be converted to MHz using
1161 void gen6_rps_get_freq_caps(struct intel_rps *rps, struct intel_rps_freq_caps *caps)
1163 struct drm_i915_private *i915 = rps_to_i915(rps);
1165 if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70))
1166 return mtl_get_freq_caps(rps, caps);
1168 return __gen6_rps_get_freq_caps(rps, caps);
1171 static void gen6_rps_init(struct intel_rps *rps)
1173 struct drm_i915_private *i915 = rps_to_i915(rps);
1174 struct intel_rps_freq_caps caps;
1176 gen6_rps_get_freq_caps(rps, &caps);
1177 rps->rp0_freq = caps.rp0_freq;
1178 rps->rp1_freq = caps.rp1_freq;
1179 rps->min_freq = caps.min_freq;
1181 /* hw_max = RP0 until we check for overclocking */
1182 rps->max_freq = rps->rp0_freq;
1184 rps->efficient_freq = rps->rp1_freq;
1185 if (IS_HASWELL(i915) || IS_BROADWELL(i915) ||
1186 IS_GEN9_BC(i915) || GRAPHICS_VER(i915) >= 11) {
1187 u32 ddcc_status = 0;
1190 if (IS_GEN9_BC(i915) || GRAPHICS_VER(i915) >= 11)
1191 mult = GEN9_FREQ_SCALER;
1192 if (snb_pcode_read(rps_to_gt(rps)->uncore,
1193 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
1194 &ddcc_status, NULL) == 0)
1195 rps->efficient_freq =
1197 ((ddcc_status >> 8) & 0xff) * mult,
1203 static bool rps_reset(struct intel_rps *rps)
1205 struct drm_i915_private *i915 = rps_to_i915(rps);
1208 rps->power.mode = -1;
1209 rps->last_freq = -1;
1211 if (rps_set(rps, rps->min_freq, true)) {
1212 drm_err(&i915->drm, "Failed to reset RPS to initial values\n");
1216 rps->cur_freq = rps->min_freq;
1220 /* See the Gen9_GT_PM_Programming_Guide doc for the below */
1221 static bool gen9_rps_enable(struct intel_rps *rps)
1223 struct intel_gt *gt = rps_to_gt(rps);
1224 struct intel_uncore *uncore = gt->uncore;
1226 /* Program defaults and thresholds for RPS */
1227 if (GRAPHICS_VER(gt->i915) == 9)
1228 intel_uncore_write_fw(uncore, GEN6_RC_VIDEO_FREQ,
1229 GEN9_FREQUENCY(rps->rp1_freq));
1231 intel_uncore_write_fw(uncore, GEN6_RP_IDLE_HYSTERSIS, 0xa);
1233 rps->pm_events = GEN6_PM_RP_UP_THRESHOLD | GEN6_PM_RP_DOWN_THRESHOLD;
1235 return rps_reset(rps);
1238 static bool gen8_rps_enable(struct intel_rps *rps)
1240 struct intel_uncore *uncore = rps_to_uncore(rps);
1242 intel_uncore_write_fw(uncore, GEN6_RC_VIDEO_FREQ,
1243 HSW_FREQUENCY(rps->rp1_freq));
1245 intel_uncore_write_fw(uncore, GEN6_RP_IDLE_HYSTERSIS, 10);
1247 rps->pm_events = GEN6_PM_RP_UP_THRESHOLD | GEN6_PM_RP_DOWN_THRESHOLD;
1249 return rps_reset(rps);
1252 static bool gen6_rps_enable(struct intel_rps *rps)
1254 struct intel_uncore *uncore = rps_to_uncore(rps);
1256 /* Power down if completely idle for over 50ms */
1257 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_TIMEOUT, 50000);
1258 intel_uncore_write_fw(uncore, GEN6_RP_IDLE_HYSTERSIS, 10);
1260 rps->pm_events = (GEN6_PM_RP_UP_THRESHOLD |
1261 GEN6_PM_RP_DOWN_THRESHOLD |
1262 GEN6_PM_RP_DOWN_TIMEOUT);
1264 return rps_reset(rps);
1267 static int chv_rps_max_freq(struct intel_rps *rps)
1269 struct drm_i915_private *i915 = rps_to_i915(rps);
1270 struct intel_gt *gt = rps_to_gt(rps);
1273 val = vlv_punit_read(i915, FB_GFX_FMAX_AT_VMAX_FUSE);
1275 switch (gt->info.sseu.eu_total) {
1277 /* (2 * 4) config */
1278 val >>= FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT;
1281 /* (2 * 6) config */
1282 val >>= FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT;
1285 /* (2 * 8) config */
1287 /* Setting (2 * 8) Min RP0 for any other combination */
1288 val >>= FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT;
1292 return val & FB_GFX_FREQ_FUSE_MASK;
1295 static int chv_rps_rpe_freq(struct intel_rps *rps)
1297 struct drm_i915_private *i915 = rps_to_i915(rps);
1300 val = vlv_punit_read(i915, PUNIT_GPU_DUTYCYCLE_REG);
1301 val >>= PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT;
1303 return val & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
1306 static int chv_rps_guar_freq(struct intel_rps *rps)
1308 struct drm_i915_private *i915 = rps_to_i915(rps);
1311 val = vlv_punit_read(i915, FB_GFX_FMAX_AT_VMAX_FUSE);
1313 return val & FB_GFX_FREQ_FUSE_MASK;
1316 static u32 chv_rps_min_freq(struct intel_rps *rps)
1318 struct drm_i915_private *i915 = rps_to_i915(rps);
1321 val = vlv_punit_read(i915, FB_GFX_FMIN_AT_VMIN_FUSE);
1322 val >>= FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT;
1324 return val & FB_GFX_FREQ_FUSE_MASK;
1327 static bool chv_rps_enable(struct intel_rps *rps)
1329 struct intel_uncore *uncore = rps_to_uncore(rps);
1330 struct drm_i915_private *i915 = rps_to_i915(rps);
1333 /* 1: Program defaults and thresholds for RPS*/
1334 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_TIMEOUT, 1000000);
1335 intel_uncore_write_fw(uncore, GEN6_RP_UP_THRESHOLD, 59400);
1336 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_THRESHOLD, 245000);
1337 intel_uncore_write_fw(uncore, GEN6_RP_UP_EI, 66000);
1338 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_EI, 350000);
1340 intel_uncore_write_fw(uncore, GEN6_RP_IDLE_HYSTERSIS, 10);
1343 intel_uncore_write_fw(uncore, GEN6_RP_CONTROL,
1344 GEN6_RP_MEDIA_HW_NORMAL_MODE |
1345 GEN6_RP_MEDIA_IS_GFX |
1347 GEN6_RP_UP_BUSY_AVG |
1348 GEN6_RP_DOWN_IDLE_AVG);
1350 rps->pm_events = (GEN6_PM_RP_UP_THRESHOLD |
1351 GEN6_PM_RP_DOWN_THRESHOLD |
1352 GEN6_PM_RP_DOWN_TIMEOUT);
1354 /* Setting Fixed Bias */
1355 vlv_punit_get(i915);
1357 val = VLV_OVERRIDE_EN | VLV_SOC_TDP_EN | CHV_BIAS_CPU_50_SOC_50;
1358 vlv_punit_write(i915, VLV_TURBO_SOC_OVERRIDE, val);
1360 val = vlv_punit_read(i915, PUNIT_REG_GPU_FREQ_STS);
1362 vlv_punit_put(i915);
1364 /* RPS code assumes GPLL is used */
1365 drm_WARN_ONCE(&i915->drm, (val & GPLLENABLE) == 0,
1366 "GPLL not enabled\n");
1368 drm_dbg(&i915->drm, "GPLL enabled? %s\n",
1369 str_yes_no(val & GPLLENABLE));
1370 drm_dbg(&i915->drm, "GPU status: 0x%08x\n", val);
1372 return rps_reset(rps);
1375 static int vlv_rps_guar_freq(struct intel_rps *rps)
1377 struct drm_i915_private *i915 = rps_to_i915(rps);
1380 val = vlv_nc_read(i915, IOSF_NC_FB_GFX_FREQ_FUSE);
1382 rp1 = val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK;
1383 rp1 >>= FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
1388 static int vlv_rps_max_freq(struct intel_rps *rps)
1390 struct drm_i915_private *i915 = rps_to_i915(rps);
1393 val = vlv_nc_read(i915, IOSF_NC_FB_GFX_FREQ_FUSE);
1395 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
1397 rp0 = min_t(u32, rp0, 0xea);
1402 static int vlv_rps_rpe_freq(struct intel_rps *rps)
1404 struct drm_i915_private *i915 = rps_to_i915(rps);
1407 val = vlv_nc_read(i915, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
1408 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
1409 val = vlv_nc_read(i915, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
1410 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
1415 static int vlv_rps_min_freq(struct intel_rps *rps)
1417 struct drm_i915_private *i915 = rps_to_i915(rps);
1420 val = vlv_punit_read(i915, PUNIT_REG_GPU_LFM) & 0xff;
1422 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
1423 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
1424 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
1425 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
1426 * to make sure it matches what Punit accepts.
1428 return max_t(u32, val, 0xc0);
1431 static bool vlv_rps_enable(struct intel_rps *rps)
1433 struct intel_uncore *uncore = rps_to_uncore(rps);
1434 struct drm_i915_private *i915 = rps_to_i915(rps);
1437 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_TIMEOUT, 1000000);
1438 intel_uncore_write_fw(uncore, GEN6_RP_UP_THRESHOLD, 59400);
1439 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_THRESHOLD, 245000);
1440 intel_uncore_write_fw(uncore, GEN6_RP_UP_EI, 66000);
1441 intel_uncore_write_fw(uncore, GEN6_RP_DOWN_EI, 350000);
1443 intel_uncore_write_fw(uncore, GEN6_RP_IDLE_HYSTERSIS, 10);
1445 intel_uncore_write_fw(uncore, GEN6_RP_CONTROL,
1446 GEN6_RP_MEDIA_TURBO |
1447 GEN6_RP_MEDIA_HW_NORMAL_MODE |
1448 GEN6_RP_MEDIA_IS_GFX |
1450 GEN6_RP_UP_BUSY_AVG |
1451 GEN6_RP_DOWN_IDLE_CONT);
1453 /* WaGsvRC0ResidencyMethod:vlv */
1454 rps->pm_events = GEN6_PM_RP_UP_EI_EXPIRED;
1456 vlv_punit_get(i915);
1458 /* Setting Fixed Bias */
1459 val = VLV_OVERRIDE_EN | VLV_SOC_TDP_EN | VLV_BIAS_CPU_125_SOC_875;
1460 vlv_punit_write(i915, VLV_TURBO_SOC_OVERRIDE, val);
1462 val = vlv_punit_read(i915, PUNIT_REG_GPU_FREQ_STS);
1464 vlv_punit_put(i915);
1466 /* RPS code assumes GPLL is used */
1467 drm_WARN_ONCE(&i915->drm, (val & GPLLENABLE) == 0,
1468 "GPLL not enabled\n");
1470 drm_dbg(&i915->drm, "GPLL enabled? %s\n",
1471 str_yes_no(val & GPLLENABLE));
1472 drm_dbg(&i915->drm, "GPU status: 0x%08x\n", val);
1474 return rps_reset(rps);
1477 static unsigned long __ips_gfx_val(struct intel_ips *ips)
1479 struct intel_rps *rps = container_of(ips, typeof(*rps), ips);
1480 struct intel_uncore *uncore = rps_to_uncore(rps);
1481 unsigned int t, state1, state2;
1485 lockdep_assert_held(&mchdev_lock);
1487 pxvid = intel_uncore_read(uncore, PXVFREQ(rps->cur_freq));
1488 pxvid = (pxvid >> 24) & 0x7f;
1489 ext_v = pvid_to_extvid(rps_to_i915(rps), pxvid);
1493 /* Revel in the empirically derived constants */
1495 /* Correction factor in 1/100000 units */
1496 t = ips_mch_val(uncore);
1498 corr = t * 2349 + 135940;
1500 corr = t * 964 + 29317;
1502 corr = t * 301 + 1004;
1504 corr = div_u64(corr * 150142 * state1, 10000) - 78642;
1505 corr2 = div_u64(corr, 100000) * ips->corr;
1507 state2 = div_u64(corr2 * state1, 10000);
1508 state2 /= 100; /* convert to mW */
1510 __gen5_ips_update(ips);
1512 return ips->gfx_power + state2;
1515 static bool has_busy_stats(struct intel_rps *rps)
1517 struct intel_engine_cs *engine;
1518 enum intel_engine_id id;
1520 for_each_engine(engine, rps_to_gt(rps), id) {
1521 if (!intel_engine_supports_stats(engine))
1528 void intel_rps_enable(struct intel_rps *rps)
1530 struct drm_i915_private *i915 = rps_to_i915(rps);
1531 struct intel_uncore *uncore = rps_to_uncore(rps);
1532 bool enabled = false;
1537 if (rps_uses_slpc(rps))
1540 intel_gt_check_clock_frequency(rps_to_gt(rps));
1542 intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
1543 if (rps->max_freq <= rps->min_freq)
1544 /* leave disabled, no room for dynamic reclocking */;
1545 else if (IS_CHERRYVIEW(i915))
1546 enabled = chv_rps_enable(rps);
1547 else if (IS_VALLEYVIEW(i915))
1548 enabled = vlv_rps_enable(rps);
1549 else if (GRAPHICS_VER(i915) >= 9)
1550 enabled = gen9_rps_enable(rps);
1551 else if (GRAPHICS_VER(i915) >= 8)
1552 enabled = gen8_rps_enable(rps);
1553 else if (GRAPHICS_VER(i915) >= 6)
1554 enabled = gen6_rps_enable(rps);
1555 else if (IS_IRONLAKE_M(i915))
1556 enabled = gen5_rps_enable(rps);
1558 MISSING_CASE(GRAPHICS_VER(i915));
1559 intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
1563 GT_TRACE(rps_to_gt(rps),
1564 "min:%x, max:%x, freq:[%d, %d], thresholds:[%u, %u]\n",
1565 rps->min_freq, rps->max_freq,
1566 intel_gpu_freq(rps, rps->min_freq),
1567 intel_gpu_freq(rps, rps->max_freq),
1568 rps->power.up_threshold,
1569 rps->power.down_threshold);
1571 GEM_BUG_ON(rps->max_freq < rps->min_freq);
1572 GEM_BUG_ON(rps->idle_freq > rps->max_freq);
1574 GEM_BUG_ON(rps->efficient_freq < rps->min_freq);
1575 GEM_BUG_ON(rps->efficient_freq > rps->max_freq);
1577 if (has_busy_stats(rps))
1578 intel_rps_set_timer(rps);
1579 else if (GRAPHICS_VER(i915) >= 6 && GRAPHICS_VER(i915) <= 11)
1580 intel_rps_set_interrupts(rps);
1582 /* Ironlake currently uses intel_ips.ko */ {}
1584 intel_rps_set_enabled(rps);
1587 static void gen6_rps_disable(struct intel_rps *rps)
1589 set(rps_to_uncore(rps), GEN6_RP_CONTROL, 0);
1592 void intel_rps_disable(struct intel_rps *rps)
1594 struct drm_i915_private *i915 = rps_to_i915(rps);
1596 if (!intel_rps_is_enabled(rps))
1599 intel_rps_clear_enabled(rps);
1600 intel_rps_clear_interrupts(rps);
1601 intel_rps_clear_timer(rps);
1603 if (GRAPHICS_VER(i915) >= 6)
1604 gen6_rps_disable(rps);
1605 else if (IS_IRONLAKE_M(i915))
1606 gen5_rps_disable(rps);
1609 static int byt_gpu_freq(struct intel_rps *rps, int val)
1613 * Slow = Fast = GPLL ref * N
1615 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
1618 static int byt_freq_opcode(struct intel_rps *rps, int val)
1620 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
1623 static int chv_gpu_freq(struct intel_rps *rps, int val)
1627 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
1629 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
1632 static int chv_freq_opcode(struct intel_rps *rps, int val)
1634 /* CHV needs even values */
1635 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
1638 int intel_gpu_freq(struct intel_rps *rps, int val)
1640 struct drm_i915_private *i915 = rps_to_i915(rps);
1642 if (GRAPHICS_VER(i915) >= 9)
1643 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
1645 else if (IS_CHERRYVIEW(i915))
1646 return chv_gpu_freq(rps, val);
1647 else if (IS_VALLEYVIEW(i915))
1648 return byt_gpu_freq(rps, val);
1649 else if (GRAPHICS_VER(i915) >= 6)
1650 return val * GT_FREQUENCY_MULTIPLIER;
1655 int intel_freq_opcode(struct intel_rps *rps, int val)
1657 struct drm_i915_private *i915 = rps_to_i915(rps);
1659 if (GRAPHICS_VER(i915) >= 9)
1660 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
1661 GT_FREQUENCY_MULTIPLIER);
1662 else if (IS_CHERRYVIEW(i915))
1663 return chv_freq_opcode(rps, val);
1664 else if (IS_VALLEYVIEW(i915))
1665 return byt_freq_opcode(rps, val);
1666 else if (GRAPHICS_VER(i915) >= 6)
1667 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
1672 static void vlv_init_gpll_ref_freq(struct intel_rps *rps)
1674 struct drm_i915_private *i915 = rps_to_i915(rps);
1676 rps->gpll_ref_freq =
1677 vlv_get_cck_clock(i915, "GPLL ref",
1678 CCK_GPLL_CLOCK_CONTROL,
1681 drm_dbg(&i915->drm, "GPLL reference freq: %d kHz\n",
1682 rps->gpll_ref_freq);
1685 static void vlv_rps_init(struct intel_rps *rps)
1687 struct drm_i915_private *i915 = rps_to_i915(rps);
1689 vlv_iosf_sb_get(i915,
1690 BIT(VLV_IOSF_SB_PUNIT) |
1691 BIT(VLV_IOSF_SB_NC) |
1692 BIT(VLV_IOSF_SB_CCK));
1694 vlv_init_gpll_ref_freq(rps);
1696 rps->max_freq = vlv_rps_max_freq(rps);
1697 rps->rp0_freq = rps->max_freq;
1698 drm_dbg(&i915->drm, "max GPU freq: %d MHz (%u)\n",
1699 intel_gpu_freq(rps, rps->max_freq), rps->max_freq);
1701 rps->efficient_freq = vlv_rps_rpe_freq(rps);
1702 drm_dbg(&i915->drm, "RPe GPU freq: %d MHz (%u)\n",
1703 intel_gpu_freq(rps, rps->efficient_freq), rps->efficient_freq);
1705 rps->rp1_freq = vlv_rps_guar_freq(rps);
1706 drm_dbg(&i915->drm, "RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
1707 intel_gpu_freq(rps, rps->rp1_freq), rps->rp1_freq);
1709 rps->min_freq = vlv_rps_min_freq(rps);
1710 drm_dbg(&i915->drm, "min GPU freq: %d MHz (%u)\n",
1711 intel_gpu_freq(rps, rps->min_freq), rps->min_freq);
1713 vlv_iosf_sb_put(i915,
1714 BIT(VLV_IOSF_SB_PUNIT) |
1715 BIT(VLV_IOSF_SB_NC) |
1716 BIT(VLV_IOSF_SB_CCK));
1719 static void chv_rps_init(struct intel_rps *rps)
1721 struct drm_i915_private *i915 = rps_to_i915(rps);
1723 vlv_iosf_sb_get(i915,
1724 BIT(VLV_IOSF_SB_PUNIT) |
1725 BIT(VLV_IOSF_SB_NC) |
1726 BIT(VLV_IOSF_SB_CCK));
1728 vlv_init_gpll_ref_freq(rps);
1730 rps->max_freq = chv_rps_max_freq(rps);
1731 rps->rp0_freq = rps->max_freq;
1732 drm_dbg(&i915->drm, "max GPU freq: %d MHz (%u)\n",
1733 intel_gpu_freq(rps, rps->max_freq), rps->max_freq);
1735 rps->efficient_freq = chv_rps_rpe_freq(rps);
1736 drm_dbg(&i915->drm, "RPe GPU freq: %d MHz (%u)\n",
1737 intel_gpu_freq(rps, rps->efficient_freq), rps->efficient_freq);
1739 rps->rp1_freq = chv_rps_guar_freq(rps);
1740 drm_dbg(&i915->drm, "RP1(Guar) GPU freq: %d MHz (%u)\n",
1741 intel_gpu_freq(rps, rps->rp1_freq), rps->rp1_freq);
1743 rps->min_freq = chv_rps_min_freq(rps);
1744 drm_dbg(&i915->drm, "min GPU freq: %d MHz (%u)\n",
1745 intel_gpu_freq(rps, rps->min_freq), rps->min_freq);
1747 vlv_iosf_sb_put(i915,
1748 BIT(VLV_IOSF_SB_PUNIT) |
1749 BIT(VLV_IOSF_SB_NC) |
1750 BIT(VLV_IOSF_SB_CCK));
1752 drm_WARN_ONCE(&i915->drm, (rps->max_freq | rps->efficient_freq |
1753 rps->rp1_freq | rps->min_freq) & 1,
1754 "Odd GPU freq values\n");
1757 static void vlv_c0_read(struct intel_uncore *uncore, struct intel_rps_ei *ei)
1759 ei->ktime = ktime_get_raw();
1760 ei->render_c0 = intel_uncore_read(uncore, VLV_RENDER_C0_COUNT);
1761 ei->media_c0 = intel_uncore_read(uncore, VLV_MEDIA_C0_COUNT);
1764 static u32 vlv_wa_c0_ei(struct intel_rps *rps, u32 pm_iir)
1766 struct intel_uncore *uncore = rps_to_uncore(rps);
1767 const struct intel_rps_ei *prev = &rps->ei;
1768 struct intel_rps_ei now;
1771 if ((pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) == 0)
1774 vlv_c0_read(uncore, &now);
1780 time = ktime_us_delta(now.ktime, prev->ktime);
1782 time *= rps_to_i915(rps)->czclk_freq;
1784 /* Workload can be split between render + media,
1785 * e.g. SwapBuffers being blitted in X after being rendered in
1786 * mesa. To account for this we need to combine both engines
1787 * into our activity counter.
1789 render = now.render_c0 - prev->render_c0;
1790 media = now.media_c0 - prev->media_c0;
1791 c0 = max(render, media);
1792 c0 *= 1000 * 100 << 8; /* to usecs and scale to threshold% */
1794 if (c0 > time * rps->power.up_threshold)
1795 events = GEN6_PM_RP_UP_THRESHOLD;
1796 else if (c0 < time * rps->power.down_threshold)
1797 events = GEN6_PM_RP_DOWN_THRESHOLD;
1804 static void rps_work(struct work_struct *work)
1806 struct intel_rps *rps = container_of(work, typeof(*rps), work);
1807 struct intel_gt *gt = rps_to_gt(rps);
1808 struct drm_i915_private *i915 = rps_to_i915(rps);
1809 bool client_boost = false;
1810 int new_freq, adj, min, max;
1813 spin_lock_irq(gt->irq_lock);
1814 pm_iir = fetch_and_zero(&rps->pm_iir) & rps->pm_events;
1815 client_boost = atomic_read(&rps->num_waiters);
1816 spin_unlock_irq(gt->irq_lock);
1818 /* Make sure we didn't queue anything we're not going to process. */
1819 if (!pm_iir && !client_boost)
1822 mutex_lock(&rps->lock);
1823 if (!intel_rps_is_active(rps)) {
1824 mutex_unlock(&rps->lock);
1828 pm_iir |= vlv_wa_c0_ei(rps, pm_iir);
1830 adj = rps->last_adj;
1831 new_freq = rps->cur_freq;
1832 min = rps->min_freq_softlimit;
1833 max = rps->max_freq_softlimit;
1835 max = rps->max_freq;
1838 "pm_iir:%x, client_boost:%s, last:%d, cur:%x, min:%x, max:%x\n",
1839 pm_iir, str_yes_no(client_boost),
1840 adj, new_freq, min, max);
1842 if (client_boost && new_freq < rps->boost_freq) {
1843 new_freq = rps->boost_freq;
1845 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
1848 else /* CHV needs even encode values */
1849 adj = IS_CHERRYVIEW(gt->i915) ? 2 : 1;
1851 if (new_freq >= rps->max_freq_softlimit)
1853 } else if (client_boost) {
1855 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
1856 if (rps->cur_freq > rps->efficient_freq)
1857 new_freq = rps->efficient_freq;
1858 else if (rps->cur_freq > rps->min_freq_softlimit)
1859 new_freq = rps->min_freq_softlimit;
1861 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1864 else /* CHV needs even encode values */
1865 adj = IS_CHERRYVIEW(gt->i915) ? -2 : -1;
1867 if (new_freq <= rps->min_freq_softlimit)
1869 } else { /* unknown event */
1874 * sysfs frequency limits may have snuck in while
1875 * servicing the interrupt
1878 new_freq = clamp_t(int, new_freq, min, max);
1880 if (intel_rps_set(rps, new_freq)) {
1881 drm_dbg(&i915->drm, "Failed to set new GPU frequency\n");
1884 rps->last_adj = adj;
1886 mutex_unlock(&rps->lock);
1889 spin_lock_irq(gt->irq_lock);
1890 gen6_gt_pm_unmask_irq(gt, rps->pm_events);
1891 spin_unlock_irq(gt->irq_lock);
1894 void gen11_rps_irq_handler(struct intel_rps *rps, u32 pm_iir)
1896 struct intel_gt *gt = rps_to_gt(rps);
1897 const u32 events = rps->pm_events & pm_iir;
1899 lockdep_assert_held(gt->irq_lock);
1901 if (unlikely(!events))
1904 GT_TRACE(gt, "irq events:%x\n", events);
1906 gen6_gt_pm_mask_irq(gt, events);
1908 rps->pm_iir |= events;
1909 queue_work(gt->i915->unordered_wq, &rps->work);
1912 void gen6_rps_irq_handler(struct intel_rps *rps, u32 pm_iir)
1914 struct intel_gt *gt = rps_to_gt(rps);
1917 events = pm_iir & rps->pm_events;
1919 spin_lock(gt->irq_lock);
1921 GT_TRACE(gt, "irq events:%x\n", events);
1923 gen6_gt_pm_mask_irq(gt, events);
1924 rps->pm_iir |= events;
1926 queue_work(gt->i915->unordered_wq, &rps->work);
1927 spin_unlock(gt->irq_lock);
1930 if (GRAPHICS_VER(gt->i915) >= 8)
1933 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1934 intel_engine_cs_irq(gt->engine[VECS0], pm_iir >> 10);
1936 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1937 drm_dbg(&rps_to_i915(rps)->drm,
1938 "Command parser error, pm_iir 0x%08x\n", pm_iir);
1941 void gen5_rps_irq_handler(struct intel_rps *rps)
1943 struct intel_uncore *uncore = rps_to_uncore(rps);
1944 u32 busy_up, busy_down, max_avg, min_avg;
1947 spin_lock(&mchdev_lock);
1949 intel_uncore_write16(uncore,
1951 intel_uncore_read(uncore, MEMINTRSTS));
1953 intel_uncore_write16(uncore, MEMINTRSTS, MEMINT_EVAL_CHG);
1954 busy_up = intel_uncore_read(uncore, RCPREVBSYTUPAVG);
1955 busy_down = intel_uncore_read(uncore, RCPREVBSYTDNAVG);
1956 max_avg = intel_uncore_read(uncore, RCBMAXAVG);
1957 min_avg = intel_uncore_read(uncore, RCBMINAVG);
1959 /* Handle RCS change request from hw */
1960 new_freq = rps->cur_freq;
1961 if (busy_up > max_avg)
1963 else if (busy_down < min_avg)
1965 new_freq = clamp(new_freq,
1966 rps->min_freq_softlimit,
1967 rps->max_freq_softlimit);
1969 if (new_freq != rps->cur_freq && !__gen5_rps_set(rps, new_freq))
1970 rps->cur_freq = new_freq;
1972 spin_unlock(&mchdev_lock);
1975 void intel_rps_init_early(struct intel_rps *rps)
1977 mutex_init(&rps->lock);
1978 mutex_init(&rps->power.mutex);
1980 INIT_WORK(&rps->work, rps_work);
1981 timer_setup(&rps->timer, rps_timer, 0);
1983 atomic_set(&rps->num_waiters, 0);
1986 void intel_rps_init(struct intel_rps *rps)
1988 struct drm_i915_private *i915 = rps_to_i915(rps);
1990 if (rps_uses_slpc(rps))
1993 if (IS_CHERRYVIEW(i915))
1995 else if (IS_VALLEYVIEW(i915))
1997 else if (GRAPHICS_VER(i915) >= 6)
1999 else if (IS_IRONLAKE_M(i915))
2002 /* Derive initial user preferences/limits from the hardware limits */
2003 rps->max_freq_softlimit = rps->max_freq;
2004 rps_to_gt(rps)->defaults.max_freq = rps->max_freq_softlimit;
2005 rps->min_freq_softlimit = rps->min_freq;
2006 rps_to_gt(rps)->defaults.min_freq = rps->min_freq_softlimit;
2008 /* After setting max-softlimit, find the overclock max freq */
2009 if (GRAPHICS_VER(i915) == 6 || IS_IVYBRIDGE(i915) || IS_HASWELL(i915)) {
2012 snb_pcode_read(rps_to_gt(rps)->uncore, GEN6_READ_OC_PARAMS, ¶ms, NULL);
2013 if (params & BIT(31)) { /* OC supported */
2015 "Overclocking supported, max: %dMHz, overclock: %dMHz\n",
2016 (rps->max_freq & 0xff) * 50,
2017 (params & 0xff) * 50);
2018 rps->max_freq = params & 0xff;
2022 /* Set default thresholds in % */
2023 rps->power.up_threshold = 95;
2024 rps_to_gt(rps)->defaults.rps_up_threshold = rps->power.up_threshold;
2025 rps->power.down_threshold = 85;
2026 rps_to_gt(rps)->defaults.rps_down_threshold = rps->power.down_threshold;
2028 /* Finally allow us to boost to max by default */
2029 rps->boost_freq = rps->max_freq;
2030 rps->idle_freq = rps->min_freq;
2032 /* Start in the middle, from here we will autotune based on workload */
2033 rps->cur_freq = rps->efficient_freq;
2035 rps->pm_intrmsk_mbz = 0;
2038 * SNB,IVB,HSW can while VLV,CHV may hard hang on looping batchbuffer
2039 * if GEN6_PM_UP_EI_EXPIRED is masked.
2041 * TODO: verify if this can be reproduced on VLV,CHV.
2043 if (GRAPHICS_VER(i915) <= 7)
2044 rps->pm_intrmsk_mbz |= GEN6_PM_RP_UP_EI_EXPIRED;
2046 if (GRAPHICS_VER(i915) >= 8 && GRAPHICS_VER(i915) < 11)
2047 rps->pm_intrmsk_mbz |= GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC;
2049 /* GuC needs ARAT expired interrupt unmasked */
2050 if (intel_uc_uses_guc_submission(&rps_to_gt(rps)->uc))
2051 rps->pm_intrmsk_mbz |= ARAT_EXPIRED_INTRMSK;
2054 void intel_rps_sanitize(struct intel_rps *rps)
2056 if (rps_uses_slpc(rps))
2059 if (GRAPHICS_VER(rps_to_i915(rps)) >= 6)
2060 rps_disable_interrupts(rps);
2063 u32 intel_rps_read_rpstat(struct intel_rps *rps)
2065 struct drm_i915_private *i915 = rps_to_i915(rps);
2068 rpstat = (GRAPHICS_VER(i915) >= 12) ? GEN12_RPSTAT1 : GEN6_RPSTAT1;
2070 return intel_uncore_read(rps_to_gt(rps)->uncore, rpstat);
2073 static u32 intel_rps_get_cagf(struct intel_rps *rps, u32 rpstat)
2075 struct drm_i915_private *i915 = rps_to_i915(rps);
2078 if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70))
2079 cagf = REG_FIELD_GET(MTL_CAGF_MASK, rpstat);
2080 else if (GRAPHICS_VER(i915) >= 12)
2081 cagf = REG_FIELD_GET(GEN12_CAGF_MASK, rpstat);
2082 else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
2083 cagf = REG_FIELD_GET(RPE_MASK, rpstat);
2084 else if (GRAPHICS_VER(i915) >= 9)
2085 cagf = REG_FIELD_GET(GEN9_CAGF_MASK, rpstat);
2086 else if (IS_HASWELL(i915) || IS_BROADWELL(i915))
2087 cagf = REG_FIELD_GET(HSW_CAGF_MASK, rpstat);
2088 else if (GRAPHICS_VER(i915) >= 6)
2089 cagf = REG_FIELD_GET(GEN6_CAGF_MASK, rpstat);
2091 cagf = gen5_invert_freq(rps, REG_FIELD_GET(MEMSTAT_PSTATE_MASK, rpstat));
2096 static u32 __read_cagf(struct intel_rps *rps, bool take_fw)
2098 struct drm_i915_private *i915 = rps_to_i915(rps);
2099 struct intel_uncore *uncore = rps_to_uncore(rps);
2100 i915_reg_t r = INVALID_MMIO_REG;
2104 * For Gen12+ reading freq from HW does not need a forcewake and
2105 * registers will return 0 freq when GT is in RC6
2107 if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70)) {
2108 r = MTL_MIRROR_TARGET_WP1;
2109 } else if (GRAPHICS_VER(i915) >= 12) {
2111 } else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
2112 vlv_punit_get(i915);
2113 freq = vlv_punit_read(i915, PUNIT_REG_GPU_FREQ_STS);
2114 vlv_punit_put(i915);
2115 } else if (GRAPHICS_VER(i915) >= 6) {
2121 if (i915_mmio_reg_valid(r))
2122 freq = take_fw ? intel_uncore_read(uncore, r) : intel_uncore_read_fw(uncore, r);
2124 return intel_rps_get_cagf(rps, freq);
2127 static u32 read_cagf(struct intel_rps *rps)
2129 return __read_cagf(rps, true);
2132 u32 intel_rps_read_actual_frequency(struct intel_rps *rps)
2134 struct intel_runtime_pm *rpm = rps_to_uncore(rps)->rpm;
2135 intel_wakeref_t wakeref;
2138 with_intel_runtime_pm_if_in_use(rpm, wakeref)
2139 freq = intel_gpu_freq(rps, read_cagf(rps));
2144 u32 intel_rps_read_actual_frequency_fw(struct intel_rps *rps)
2146 return intel_gpu_freq(rps, __read_cagf(rps, false));
2149 static u32 intel_rps_read_punit_req(struct intel_rps *rps)
2151 struct intel_uncore *uncore = rps_to_uncore(rps);
2152 struct intel_runtime_pm *rpm = rps_to_uncore(rps)->rpm;
2153 intel_wakeref_t wakeref;
2156 with_intel_runtime_pm_if_in_use(rpm, wakeref)
2157 freq = intel_uncore_read(uncore, GEN6_RPNSWREQ);
2162 static u32 intel_rps_get_req(u32 pureq)
2164 u32 req = pureq >> GEN9_SW_REQ_UNSLICE_RATIO_SHIFT;
2169 u32 intel_rps_read_punit_req_frequency(struct intel_rps *rps)
2171 u32 freq = intel_rps_get_req(intel_rps_read_punit_req(rps));
2173 return intel_gpu_freq(rps, freq);
2176 u32 intel_rps_get_requested_frequency(struct intel_rps *rps)
2178 if (rps_uses_slpc(rps))
2179 return intel_rps_read_punit_req_frequency(rps);
2181 return intel_gpu_freq(rps, rps->cur_freq);
2184 u32 intel_rps_get_max_frequency(struct intel_rps *rps)
2186 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2188 if (rps_uses_slpc(rps))
2189 return slpc->max_freq_softlimit;
2191 return intel_gpu_freq(rps, rps->max_freq_softlimit);
2195 * intel_rps_get_max_raw_freq - returns the max frequency in some raw format.
2196 * @rps: the intel_rps structure
2198 * Returns the max frequency in a raw format. In newer platforms raw is in
2201 u32 intel_rps_get_max_raw_freq(struct intel_rps *rps)
2203 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2206 if (rps_uses_slpc(rps)) {
2207 return DIV_ROUND_CLOSEST(slpc->rp0_freq,
2208 GT_FREQUENCY_MULTIPLIER);
2210 freq = rps->max_freq;
2211 if (GRAPHICS_VER(rps_to_i915(rps)) >= 9) {
2212 /* Convert GT frequency to 50 MHz units */
2213 freq /= GEN9_FREQ_SCALER;
2219 u32 intel_rps_get_rp0_frequency(struct intel_rps *rps)
2221 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2223 if (rps_uses_slpc(rps))
2224 return slpc->rp0_freq;
2226 return intel_gpu_freq(rps, rps->rp0_freq);
2229 u32 intel_rps_get_rp1_frequency(struct intel_rps *rps)
2231 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2233 if (rps_uses_slpc(rps))
2234 return slpc->rp1_freq;
2236 return intel_gpu_freq(rps, rps->rp1_freq);
2239 u32 intel_rps_get_rpn_frequency(struct intel_rps *rps)
2241 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2243 if (rps_uses_slpc(rps))
2244 return slpc->min_freq;
2246 return intel_gpu_freq(rps, rps->min_freq);
2249 static void rps_frequency_dump(struct intel_rps *rps, struct drm_printer *p)
2251 struct intel_gt *gt = rps_to_gt(rps);
2252 struct drm_i915_private *i915 = gt->i915;
2253 struct intel_uncore *uncore = gt->uncore;
2254 struct intel_rps_freq_caps caps;
2255 u32 rp_state_limits;
2257 u32 rpmodectl, rpinclimit, rpdeclimit;
2258 u32 rpstat, cagf, reqf;
2259 u32 rpcurupei, rpcurup, rpprevup;
2260 u32 rpcurdownei, rpcurdown, rpprevdown;
2261 u32 rpupei, rpupt, rpdownei, rpdownt;
2262 u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask;
2264 rp_state_limits = intel_uncore_read(uncore, GEN6_RP_STATE_LIMITS);
2265 gen6_rps_get_freq_caps(rps, &caps);
2266 if (IS_GEN9_LP(i915))
2267 gt_perf_status = intel_uncore_read(uncore, BXT_GT_PERF_STATUS);
2269 gt_perf_status = intel_uncore_read(uncore, GEN6_GT_PERF_STATUS);
2271 /* RPSTAT1 is in the GT power well */
2272 intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
2274 reqf = intel_uncore_read(uncore, GEN6_RPNSWREQ);
2275 if (GRAPHICS_VER(i915) >= 9) {
2278 reqf &= ~GEN6_TURBO_DISABLE;
2279 if (IS_HASWELL(i915) || IS_BROADWELL(i915))
2284 reqf = intel_gpu_freq(rps, reqf);
2286 rpmodectl = intel_uncore_read(uncore, GEN6_RP_CONTROL);
2287 rpinclimit = intel_uncore_read(uncore, GEN6_RP_UP_THRESHOLD);
2288 rpdeclimit = intel_uncore_read(uncore, GEN6_RP_DOWN_THRESHOLD);
2290 rpstat = intel_rps_read_rpstat(rps);
2291 rpcurupei = intel_uncore_read(uncore, GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK;
2292 rpcurup = intel_uncore_read(uncore, GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK;
2293 rpprevup = intel_uncore_read(uncore, GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK;
2294 rpcurdownei = intel_uncore_read(uncore, GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK;
2295 rpcurdown = intel_uncore_read(uncore, GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK;
2296 rpprevdown = intel_uncore_read(uncore, GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK;
2298 rpupei = intel_uncore_read(uncore, GEN6_RP_UP_EI);
2299 rpupt = intel_uncore_read(uncore, GEN6_RP_UP_THRESHOLD);
2301 rpdownei = intel_uncore_read(uncore, GEN6_RP_DOWN_EI);
2302 rpdownt = intel_uncore_read(uncore, GEN6_RP_DOWN_THRESHOLD);
2304 cagf = intel_rps_read_actual_frequency(rps);
2306 intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
2308 if (GRAPHICS_VER(i915) >= 11) {
2309 pm_ier = intel_uncore_read(uncore, GEN11_GPM_WGBOXPERF_INTR_ENABLE);
2310 pm_imr = intel_uncore_read(uncore, GEN11_GPM_WGBOXPERF_INTR_MASK);
2312 * The equivalent to the PM ISR & IIR cannot be read
2313 * without affecting the current state of the system
2317 } else if (GRAPHICS_VER(i915) >= 8) {
2318 pm_ier = intel_uncore_read(uncore, GEN8_GT_IER(2));
2319 pm_imr = intel_uncore_read(uncore, GEN8_GT_IMR(2));
2320 pm_isr = intel_uncore_read(uncore, GEN8_GT_ISR(2));
2321 pm_iir = intel_uncore_read(uncore, GEN8_GT_IIR(2));
2323 pm_ier = intel_uncore_read(uncore, GEN6_PMIER);
2324 pm_imr = intel_uncore_read(uncore, GEN6_PMIMR);
2325 pm_isr = intel_uncore_read(uncore, GEN6_PMISR);
2326 pm_iir = intel_uncore_read(uncore, GEN6_PMIIR);
2328 pm_mask = intel_uncore_read(uncore, GEN6_PMINTRMSK);
2330 drm_printf(p, "Video Turbo Mode: %s\n",
2331 str_yes_no(rpmodectl & GEN6_RP_MEDIA_TURBO));
2332 drm_printf(p, "HW control enabled: %s\n",
2333 str_yes_no(rpmodectl & GEN6_RP_ENABLE));
2334 drm_printf(p, "SW control enabled: %s\n",
2335 str_yes_no((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) == GEN6_RP_MEDIA_SW_MODE));
2337 drm_printf(p, "PM IER=0x%08x IMR=0x%08x, MASK=0x%08x\n",
2338 pm_ier, pm_imr, pm_mask);
2339 if (GRAPHICS_VER(i915) <= 10)
2340 drm_printf(p, "PM ISR=0x%08x IIR=0x%08x\n",
2342 drm_printf(p, "pm_intrmsk_mbz: 0x%08x\n",
2343 rps->pm_intrmsk_mbz);
2344 drm_printf(p, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
2345 drm_printf(p, "Render p-state ratio: %d\n",
2346 (gt_perf_status & (GRAPHICS_VER(i915) >= 9 ? 0x1ff00 : 0xff00)) >> 8);
2347 drm_printf(p, "Render p-state VID: %d\n",
2348 gt_perf_status & 0xff);
2349 drm_printf(p, "Render p-state limit: %d\n",
2350 rp_state_limits & 0xff);
2351 drm_printf(p, "RPSTAT1: 0x%08x\n", rpstat);
2352 drm_printf(p, "RPMODECTL: 0x%08x\n", rpmodectl);
2353 drm_printf(p, "RPINCLIMIT: 0x%08x\n", rpinclimit);
2354 drm_printf(p, "RPDECLIMIT: 0x%08x\n", rpdeclimit);
2355 drm_printf(p, "RPNSWREQ: %dMHz\n", reqf);
2356 drm_printf(p, "CAGF: %dMHz\n", cagf);
2357 drm_printf(p, "RP CUR UP EI: %d (%lldns)\n",
2359 intel_gt_pm_interval_to_ns(gt, rpcurupei));
2360 drm_printf(p, "RP CUR UP: %d (%lldns)\n",
2361 rpcurup, intel_gt_pm_interval_to_ns(gt, rpcurup));
2362 drm_printf(p, "RP PREV UP: %d (%lldns)\n",
2363 rpprevup, intel_gt_pm_interval_to_ns(gt, rpprevup));
2364 drm_printf(p, "Up threshold: %d%%\n",
2365 rps->power.up_threshold);
2366 drm_printf(p, "RP UP EI: %d (%lldns)\n",
2367 rpupei, intel_gt_pm_interval_to_ns(gt, rpupei));
2368 drm_printf(p, "RP UP THRESHOLD: %d (%lldns)\n",
2369 rpupt, intel_gt_pm_interval_to_ns(gt, rpupt));
2371 drm_printf(p, "RP CUR DOWN EI: %d (%lldns)\n",
2373 intel_gt_pm_interval_to_ns(gt, rpcurdownei));
2374 drm_printf(p, "RP CUR DOWN: %d (%lldns)\n",
2376 intel_gt_pm_interval_to_ns(gt, rpcurdown));
2377 drm_printf(p, "RP PREV DOWN: %d (%lldns)\n",
2379 intel_gt_pm_interval_to_ns(gt, rpprevdown));
2380 drm_printf(p, "Down threshold: %d%%\n",
2381 rps->power.down_threshold);
2382 drm_printf(p, "RP DOWN EI: %d (%lldns)\n",
2383 rpdownei, intel_gt_pm_interval_to_ns(gt, rpdownei));
2384 drm_printf(p, "RP DOWN THRESHOLD: %d (%lldns)\n",
2385 rpdownt, intel_gt_pm_interval_to_ns(gt, rpdownt));
2387 drm_printf(p, "Lowest (RPN) frequency: %dMHz\n",
2388 intel_gpu_freq(rps, caps.min_freq));
2389 drm_printf(p, "Nominal (RP1) frequency: %dMHz\n",
2390 intel_gpu_freq(rps, caps.rp1_freq));
2391 drm_printf(p, "Max non-overclocked (RP0) frequency: %dMHz\n",
2392 intel_gpu_freq(rps, caps.rp0_freq));
2393 drm_printf(p, "Max overclocked frequency: %dMHz\n",
2394 intel_gpu_freq(rps, rps->max_freq));
2396 drm_printf(p, "Current freq: %d MHz\n",
2397 intel_gpu_freq(rps, rps->cur_freq));
2398 drm_printf(p, "Actual freq: %d MHz\n", cagf);
2399 drm_printf(p, "Idle freq: %d MHz\n",
2400 intel_gpu_freq(rps, rps->idle_freq));
2401 drm_printf(p, "Min freq: %d MHz\n",
2402 intel_gpu_freq(rps, rps->min_freq));
2403 drm_printf(p, "Boost freq: %d MHz\n",
2404 intel_gpu_freq(rps, rps->boost_freq));
2405 drm_printf(p, "Max freq: %d MHz\n",
2406 intel_gpu_freq(rps, rps->max_freq));
2408 "efficient (RPe) frequency: %d MHz\n",
2409 intel_gpu_freq(rps, rps->efficient_freq));
2412 static void slpc_frequency_dump(struct intel_rps *rps, struct drm_printer *p)
2414 struct intel_gt *gt = rps_to_gt(rps);
2415 struct intel_uncore *uncore = gt->uncore;
2416 struct intel_rps_freq_caps caps;
2419 gen6_rps_get_freq_caps(rps, &caps);
2420 pm_mask = intel_uncore_read(uncore, GEN6_PMINTRMSK);
2422 drm_printf(p, "PM MASK=0x%08x\n", pm_mask);
2423 drm_printf(p, "pm_intrmsk_mbz: 0x%08x\n",
2424 rps->pm_intrmsk_mbz);
2425 drm_printf(p, "RPSTAT1: 0x%08x\n", intel_rps_read_rpstat(rps));
2426 drm_printf(p, "RPNSWREQ: %dMHz\n", intel_rps_get_requested_frequency(rps));
2427 drm_printf(p, "Lowest (RPN) frequency: %dMHz\n",
2428 intel_gpu_freq(rps, caps.min_freq));
2429 drm_printf(p, "Nominal (RP1) frequency: %dMHz\n",
2430 intel_gpu_freq(rps, caps.rp1_freq));
2431 drm_printf(p, "Max non-overclocked (RP0) frequency: %dMHz\n",
2432 intel_gpu_freq(rps, caps.rp0_freq));
2433 drm_printf(p, "Current freq: %d MHz\n",
2434 intel_rps_get_requested_frequency(rps));
2435 drm_printf(p, "Actual freq: %d MHz\n",
2436 intel_rps_read_actual_frequency(rps));
2437 drm_printf(p, "Min freq: %d MHz\n",
2438 intel_rps_get_min_frequency(rps));
2439 drm_printf(p, "Boost freq: %d MHz\n",
2440 intel_rps_get_boost_frequency(rps));
2441 drm_printf(p, "Max freq: %d MHz\n",
2442 intel_rps_get_max_frequency(rps));
2444 "efficient (RPe) frequency: %d MHz\n",
2445 intel_gpu_freq(rps, caps.rp1_freq));
2448 void gen6_rps_frequency_dump(struct intel_rps *rps, struct drm_printer *p)
2450 if (rps_uses_slpc(rps))
2451 return slpc_frequency_dump(rps, p);
2453 return rps_frequency_dump(rps, p);
2456 static int set_max_freq(struct intel_rps *rps, u32 val)
2458 struct drm_i915_private *i915 = rps_to_i915(rps);
2461 mutex_lock(&rps->lock);
2463 val = intel_freq_opcode(rps, val);
2464 if (val < rps->min_freq ||
2465 val > rps->max_freq ||
2466 val < rps->min_freq_softlimit) {
2471 if (val > rps->rp0_freq)
2472 drm_dbg(&i915->drm, "User requested overclocking to %d\n",
2473 intel_gpu_freq(rps, val));
2475 rps->max_freq_softlimit = val;
2477 val = clamp_t(int, rps->cur_freq,
2478 rps->min_freq_softlimit,
2479 rps->max_freq_softlimit);
2482 * We still need *_set_rps to process the new max_delay and
2483 * update the interrupt limits and PMINTRMSK even though
2484 * frequency request may be unchanged.
2486 intel_rps_set(rps, val);
2489 mutex_unlock(&rps->lock);
2494 int intel_rps_set_max_frequency(struct intel_rps *rps, u32 val)
2496 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2498 if (rps_uses_slpc(rps))
2499 return intel_guc_slpc_set_max_freq(slpc, val);
2501 return set_max_freq(rps, val);
2504 u32 intel_rps_get_min_frequency(struct intel_rps *rps)
2506 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2508 if (rps_uses_slpc(rps))
2509 return slpc->min_freq_softlimit;
2511 return intel_gpu_freq(rps, rps->min_freq_softlimit);
2515 * intel_rps_get_min_raw_freq - returns the min frequency in some raw format.
2516 * @rps: the intel_rps structure
2518 * Returns the min frequency in a raw format. In newer platforms raw is in
2521 u32 intel_rps_get_min_raw_freq(struct intel_rps *rps)
2523 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2526 if (rps_uses_slpc(rps)) {
2527 return DIV_ROUND_CLOSEST(slpc->min_freq,
2528 GT_FREQUENCY_MULTIPLIER);
2530 freq = rps->min_freq;
2531 if (GRAPHICS_VER(rps_to_i915(rps)) >= 9) {
2532 /* Convert GT frequency to 50 MHz units */
2533 freq /= GEN9_FREQ_SCALER;
2539 static int set_min_freq(struct intel_rps *rps, u32 val)
2543 mutex_lock(&rps->lock);
2545 val = intel_freq_opcode(rps, val);
2546 if (val < rps->min_freq ||
2547 val > rps->max_freq ||
2548 val > rps->max_freq_softlimit) {
2553 rps->min_freq_softlimit = val;
2555 val = clamp_t(int, rps->cur_freq,
2556 rps->min_freq_softlimit,
2557 rps->max_freq_softlimit);
2560 * We still need *_set_rps to process the new min_delay and
2561 * update the interrupt limits and PMINTRMSK even though
2562 * frequency request may be unchanged.
2564 intel_rps_set(rps, val);
2567 mutex_unlock(&rps->lock);
2572 int intel_rps_set_min_frequency(struct intel_rps *rps, u32 val)
2574 struct intel_guc_slpc *slpc = rps_to_slpc(rps);
2576 if (rps_uses_slpc(rps))
2577 return intel_guc_slpc_set_min_freq(slpc, val);
2579 return set_min_freq(rps, val);
2582 u8 intel_rps_get_up_threshold(struct intel_rps *rps)
2584 return rps->power.up_threshold;
2587 static int rps_set_threshold(struct intel_rps *rps, u8 *threshold, u8 val)
2594 ret = mutex_lock_interruptible(&rps->lock);
2598 if (*threshold == val)
2604 rps->last_freq = -1;
2605 mutex_lock(&rps->power.mutex);
2606 rps->power.mode = -1;
2607 mutex_unlock(&rps->power.mutex);
2609 intel_rps_set(rps, clamp(rps->cur_freq,
2610 rps->min_freq_softlimit,
2611 rps->max_freq_softlimit));
2614 mutex_unlock(&rps->lock);
2619 int intel_rps_set_up_threshold(struct intel_rps *rps, u8 threshold)
2621 return rps_set_threshold(rps, &rps->power.up_threshold, threshold);
2624 u8 intel_rps_get_down_threshold(struct intel_rps *rps)
2626 return rps->power.down_threshold;
2629 int intel_rps_set_down_threshold(struct intel_rps *rps, u8 threshold)
2631 return rps_set_threshold(rps, &rps->power.down_threshold, threshold);
2634 static void intel_rps_set_manual(struct intel_rps *rps, bool enable)
2636 struct intel_uncore *uncore = rps_to_uncore(rps);
2637 u32 state = enable ? GEN9_RPSWCTL_ENABLE : GEN9_RPSWCTL_DISABLE;
2639 /* Allow punit to process software requests */
2640 intel_uncore_write(uncore, GEN6_RP_CONTROL, state);
2643 void intel_rps_raise_unslice(struct intel_rps *rps)
2645 struct intel_uncore *uncore = rps_to_uncore(rps);
2647 mutex_lock(&rps->lock);
2649 if (rps_uses_slpc(rps)) {
2650 /* RP limits have not been initialized yet for SLPC path */
2651 struct intel_rps_freq_caps caps;
2653 gen6_rps_get_freq_caps(rps, &caps);
2655 intel_rps_set_manual(rps, true);
2656 intel_uncore_write(uncore, GEN6_RPNSWREQ,
2658 GEN9_SW_REQ_UNSLICE_RATIO_SHIFT) |
2659 GEN9_IGNORE_SLICE_RATIO));
2660 intel_rps_set_manual(rps, false);
2662 intel_rps_set(rps, rps->rp0_freq);
2665 mutex_unlock(&rps->lock);
2668 void intel_rps_lower_unslice(struct intel_rps *rps)
2670 struct intel_uncore *uncore = rps_to_uncore(rps);
2672 mutex_lock(&rps->lock);
2674 if (rps_uses_slpc(rps)) {
2675 /* RP limits have not been initialized yet for SLPC path */
2676 struct intel_rps_freq_caps caps;
2678 gen6_rps_get_freq_caps(rps, &caps);
2680 intel_rps_set_manual(rps, true);
2681 intel_uncore_write(uncore, GEN6_RPNSWREQ,
2683 GEN9_SW_REQ_UNSLICE_RATIO_SHIFT) |
2684 GEN9_IGNORE_SLICE_RATIO));
2685 intel_rps_set_manual(rps, false);
2687 intel_rps_set(rps, rps->min_freq);
2690 mutex_unlock(&rps->lock);
2693 static u32 rps_read_mmio(struct intel_rps *rps, i915_reg_t reg32)
2695 struct intel_gt *gt = rps_to_gt(rps);
2696 intel_wakeref_t wakeref;
2699 with_intel_runtime_pm(gt->uncore->rpm, wakeref)
2700 val = intel_uncore_read(gt->uncore, reg32);
2705 bool rps_read_mask_mmio(struct intel_rps *rps,
2706 i915_reg_t reg32, u32 mask)
2708 return rps_read_mmio(rps, reg32) & mask;
2711 /* External interface for intel_ips.ko */
2713 static struct drm_i915_private __rcu *ips_mchdev;
2716 * Tells the intel_ips driver that the i915 driver is now loaded, if
2717 * IPS got loaded first.
2719 * This awkward dance is so that neither module has to depend on the
2720 * other in order for IPS to do the appropriate communication of
2721 * GPU turbo limits to i915.
2724 ips_ping_for_i915_load(void)
2728 link = symbol_get(ips_link_to_i915_driver);
2731 symbol_put(ips_link_to_i915_driver);
2735 void intel_rps_driver_register(struct intel_rps *rps)
2737 struct intel_gt *gt = rps_to_gt(rps);
2740 * We only register the i915 ips part with intel-ips once everything is
2741 * set up, to avoid intel-ips sneaking in and reading bogus values.
2743 if (GRAPHICS_VER(gt->i915) == 5) {
2744 GEM_BUG_ON(ips_mchdev);
2745 rcu_assign_pointer(ips_mchdev, gt->i915);
2746 ips_ping_for_i915_load();
2750 void intel_rps_driver_unregister(struct intel_rps *rps)
2752 if (rcu_access_pointer(ips_mchdev) == rps_to_i915(rps))
2753 rcu_assign_pointer(ips_mchdev, NULL);
2756 static struct drm_i915_private *mchdev_get(void)
2758 struct drm_i915_private *i915;
2761 i915 = rcu_dereference(ips_mchdev);
2762 if (i915 && !kref_get_unless_zero(&i915->drm.ref))
2770 * i915_read_mch_val - return value for IPS use
2772 * Calculate and return a value for the IPS driver to use when deciding whether
2773 * we have thermal and power headroom to increase CPU or GPU power budget.
2775 unsigned long i915_read_mch_val(void)
2777 struct drm_i915_private *i915;
2778 unsigned long chipset_val = 0;
2779 unsigned long graphics_val = 0;
2780 intel_wakeref_t wakeref;
2782 i915 = mchdev_get();
2786 with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
2787 struct intel_ips *ips = &to_gt(i915)->rps.ips;
2789 spin_lock_irq(&mchdev_lock);
2790 chipset_val = __ips_chipset_val(ips);
2791 graphics_val = __ips_gfx_val(ips);
2792 spin_unlock_irq(&mchdev_lock);
2795 drm_dev_put(&i915->drm);
2796 return chipset_val + graphics_val;
2798 EXPORT_SYMBOL_GPL(i915_read_mch_val);
2801 * i915_gpu_raise - raise GPU frequency limit
2803 * Raise the limit; IPS indicates we have thermal headroom.
2805 bool i915_gpu_raise(void)
2807 struct drm_i915_private *i915;
2808 struct intel_rps *rps;
2810 i915 = mchdev_get();
2814 rps = &to_gt(i915)->rps;
2816 spin_lock_irq(&mchdev_lock);
2817 if (rps->max_freq_softlimit < rps->max_freq)
2818 rps->max_freq_softlimit++;
2819 spin_unlock_irq(&mchdev_lock);
2821 drm_dev_put(&i915->drm);
2824 EXPORT_SYMBOL_GPL(i915_gpu_raise);
2827 * i915_gpu_lower - lower GPU frequency limit
2829 * IPS indicates we're close to a thermal limit, so throttle back the GPU
2830 * frequency maximum.
2832 bool i915_gpu_lower(void)
2834 struct drm_i915_private *i915;
2835 struct intel_rps *rps;
2837 i915 = mchdev_get();
2841 rps = &to_gt(i915)->rps;
2843 spin_lock_irq(&mchdev_lock);
2844 if (rps->max_freq_softlimit > rps->min_freq)
2845 rps->max_freq_softlimit--;
2846 spin_unlock_irq(&mchdev_lock);
2848 drm_dev_put(&i915->drm);
2851 EXPORT_SYMBOL_GPL(i915_gpu_lower);
2854 * i915_gpu_busy - indicate GPU business to IPS
2856 * Tell the IPS driver whether or not the GPU is busy.
2858 bool i915_gpu_busy(void)
2860 struct drm_i915_private *i915;
2863 i915 = mchdev_get();
2867 ret = to_gt(i915)->awake;
2869 drm_dev_put(&i915->drm);
2872 EXPORT_SYMBOL_GPL(i915_gpu_busy);
2875 * i915_gpu_turbo_disable - disable graphics turbo
2877 * Disable graphics turbo by resetting the max frequency and setting the
2878 * current frequency to the default.
2880 bool i915_gpu_turbo_disable(void)
2882 struct drm_i915_private *i915;
2883 struct intel_rps *rps;
2886 i915 = mchdev_get();
2890 rps = &to_gt(i915)->rps;
2892 spin_lock_irq(&mchdev_lock);
2893 rps->max_freq_softlimit = rps->min_freq;
2894 ret = !__gen5_rps_set(&to_gt(i915)->rps, rps->min_freq);
2895 spin_unlock_irq(&mchdev_lock);
2897 drm_dev_put(&i915->drm);
2900 EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
2902 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2903 #include "selftest_rps.c"
2904 #include "selftest_slpc.c"