2 * Copyright © 2013 Intel Corporation
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:
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
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
24 #include <linux/pm_runtime.h>
26 #include "gt/intel_engine_regs.h"
27 #include "gt/intel_gt_regs.h"
30 #include "i915_iosf_mbi.h"
31 #include "i915_trace.h"
32 #include "i915_vgpu.h"
35 #define FORCEWAKE_ACK_TIMEOUT_MS 50
36 #define GT_FIFO_TIMEOUT_MS 10
38 #define __raw_posting_read(...) ((void)__raw_uncore_read32(__VA_ARGS__))
41 fw_domains_get(struct intel_uncore *uncore, enum forcewake_domains fw_domains)
43 uncore->fw_get_funcs->force_wake_get(uncore, fw_domains);
47 intel_uncore_mmio_debug_init_early(struct intel_uncore_mmio_debug *mmio_debug)
49 spin_lock_init(&mmio_debug->lock);
50 mmio_debug->unclaimed_mmio_check = 1;
53 static void mmio_debug_suspend(struct intel_uncore_mmio_debug *mmio_debug)
55 lockdep_assert_held(&mmio_debug->lock);
57 /* Save and disable mmio debugging for the user bypass */
58 if (!mmio_debug->suspend_count++) {
59 mmio_debug->saved_mmio_check = mmio_debug->unclaimed_mmio_check;
60 mmio_debug->unclaimed_mmio_check = 0;
64 static void mmio_debug_resume(struct intel_uncore_mmio_debug *mmio_debug)
66 lockdep_assert_held(&mmio_debug->lock);
68 if (!--mmio_debug->suspend_count)
69 mmio_debug->unclaimed_mmio_check = mmio_debug->saved_mmio_check;
72 static const char * const forcewake_domain_names[] = {
91 intel_uncore_forcewake_domain_to_str(const enum forcewake_domain_id id)
93 BUILD_BUG_ON(ARRAY_SIZE(forcewake_domain_names) != FW_DOMAIN_ID_COUNT);
95 if (id >= 0 && id < FW_DOMAIN_ID_COUNT)
96 return forcewake_domain_names[id];
103 #define fw_ack(d) readl((d)->reg_ack)
104 #define fw_set(d, val) writel(_MASKED_BIT_ENABLE((val)), (d)->reg_set)
105 #define fw_clear(d, val) writel(_MASKED_BIT_DISABLE((val)), (d)->reg_set)
108 fw_domain_reset(const struct intel_uncore_forcewake_domain *d)
111 * We don't really know if the powerwell for the forcewake domain we are
112 * trying to reset here does exist at this point (engines could be fused
113 * off in ICL+), so no waiting for acks
115 /* WaRsClearFWBitsAtReset:bdw,skl */
120 fw_domain_arm_timer(struct intel_uncore_forcewake_domain *d)
122 GEM_BUG_ON(d->uncore->fw_domains_timer & d->mask);
123 d->uncore->fw_domains_timer |= d->mask;
125 hrtimer_start_range_ns(&d->timer,
132 __wait_for_ack(const struct intel_uncore_forcewake_domain *d,
136 return wait_for_atomic((fw_ack(d) & ack) == value,
137 FORCEWAKE_ACK_TIMEOUT_MS);
141 wait_ack_clear(const struct intel_uncore_forcewake_domain *d,
144 return __wait_for_ack(d, ack, 0);
148 wait_ack_set(const struct intel_uncore_forcewake_domain *d,
151 return __wait_for_ack(d, ack, ack);
155 fw_domain_wait_ack_clear(const struct intel_uncore_forcewake_domain *d)
157 if (wait_ack_clear(d, FORCEWAKE_KERNEL)) {
158 DRM_ERROR("%s: timed out waiting for forcewake ack to clear.\n",
159 intel_uncore_forcewake_domain_to_str(d->id));
160 add_taint_for_CI(d->uncore->i915, TAINT_WARN); /* CI now unreliable */
170 fw_domain_wait_ack_with_fallback(const struct intel_uncore_forcewake_domain *d,
171 const enum ack_type type)
173 const u32 ack_bit = FORCEWAKE_KERNEL;
174 const u32 value = type == ACK_SET ? ack_bit : 0;
179 * There is a possibility of driver's wake request colliding
180 * with hardware's own wake requests and that can cause
181 * hardware to not deliver the driver's ack message.
183 * Use a fallback bit toggle to kick the gpu state machine
184 * in the hope that the original ack will be delivered along with
187 * This workaround is described in HSDES #1604254524 and it's known as:
188 * WaRsForcewakeAddDelayForAck:skl,bxt,kbl,glk,cfl,cnl,icl
189 * although the name is a bit misleading.
194 wait_ack_clear(d, FORCEWAKE_KERNEL_FALLBACK);
196 fw_set(d, FORCEWAKE_KERNEL_FALLBACK);
197 /* Give gt some time to relax before the polling frenzy */
199 wait_ack_set(d, FORCEWAKE_KERNEL_FALLBACK);
201 ack_detected = (fw_ack(d) & ack_bit) == value;
203 fw_clear(d, FORCEWAKE_KERNEL_FALLBACK);
204 } while (!ack_detected && pass++ < 10);
206 DRM_DEBUG_DRIVER("%s had to use fallback to %s ack, 0x%x (passes %u)\n",
207 intel_uncore_forcewake_domain_to_str(d->id),
208 type == ACK_SET ? "set" : "clear",
212 return ack_detected ? 0 : -ETIMEDOUT;
216 fw_domain_wait_ack_clear_fallback(const struct intel_uncore_forcewake_domain *d)
218 if (likely(!wait_ack_clear(d, FORCEWAKE_KERNEL)))
221 if (fw_domain_wait_ack_with_fallback(d, ACK_CLEAR))
222 fw_domain_wait_ack_clear(d);
226 fw_domain_get(const struct intel_uncore_forcewake_domain *d)
228 fw_set(d, FORCEWAKE_KERNEL);
232 fw_domain_wait_ack_set(const struct intel_uncore_forcewake_domain *d)
234 if (wait_ack_set(d, FORCEWAKE_KERNEL)) {
235 DRM_ERROR("%s: timed out waiting for forcewake ack request.\n",
236 intel_uncore_forcewake_domain_to_str(d->id));
237 add_taint_for_CI(d->uncore->i915, TAINT_WARN); /* CI now unreliable */
242 fw_domain_wait_ack_set_fallback(const struct intel_uncore_forcewake_domain *d)
244 if (likely(!wait_ack_set(d, FORCEWAKE_KERNEL)))
247 if (fw_domain_wait_ack_with_fallback(d, ACK_SET))
248 fw_domain_wait_ack_set(d);
252 fw_domain_put(const struct intel_uncore_forcewake_domain *d)
254 fw_clear(d, FORCEWAKE_KERNEL);
258 fw_domains_get_normal(struct intel_uncore *uncore, enum forcewake_domains fw_domains)
260 struct intel_uncore_forcewake_domain *d;
263 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
265 for_each_fw_domain_masked(d, fw_domains, uncore, tmp) {
266 fw_domain_wait_ack_clear(d);
270 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
271 fw_domain_wait_ack_set(d);
273 uncore->fw_domains_active |= fw_domains;
277 fw_domains_get_with_fallback(struct intel_uncore *uncore,
278 enum forcewake_domains fw_domains)
280 struct intel_uncore_forcewake_domain *d;
283 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
285 for_each_fw_domain_masked(d, fw_domains, uncore, tmp) {
286 fw_domain_wait_ack_clear_fallback(d);
290 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
291 fw_domain_wait_ack_set_fallback(d);
293 uncore->fw_domains_active |= fw_domains;
297 fw_domains_put(struct intel_uncore *uncore, enum forcewake_domains fw_domains)
299 struct intel_uncore_forcewake_domain *d;
302 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
304 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
307 uncore->fw_domains_active &= ~fw_domains;
311 fw_domains_reset(struct intel_uncore *uncore,
312 enum forcewake_domains fw_domains)
314 struct intel_uncore_forcewake_domain *d;
320 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
322 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
326 static inline u32 gt_thread_status(struct intel_uncore *uncore)
330 val = __raw_uncore_read32(uncore, GEN6_GT_THREAD_STATUS_REG);
331 val &= GEN6_GT_THREAD_STATUS_CORE_MASK;
336 static void __gen6_gt_wait_for_thread_c0(struct intel_uncore *uncore)
339 * w/a for a sporadic read returning 0 by waiting for the GT
342 drm_WARN_ONCE(&uncore->i915->drm,
343 wait_for_atomic_us(gt_thread_status(uncore) == 0, 5000),
344 "GT thread status wait timed out\n");
347 static void fw_domains_get_with_thread_status(struct intel_uncore *uncore,
348 enum forcewake_domains fw_domains)
350 fw_domains_get_normal(uncore, fw_domains);
352 /* WaRsForcewakeWaitTC0:snb,ivb,hsw,bdw,vlv */
353 __gen6_gt_wait_for_thread_c0(uncore);
356 static inline u32 fifo_free_entries(struct intel_uncore *uncore)
358 u32 count = __raw_uncore_read32(uncore, GTFIFOCTL);
360 return count & GT_FIFO_FREE_ENTRIES_MASK;
363 static void __gen6_gt_wait_for_fifo(struct intel_uncore *uncore)
367 /* On VLV, FIFO will be shared by both SW and HW.
368 * So, we need to read the FREE_ENTRIES everytime */
369 if (IS_VALLEYVIEW(uncore->i915))
370 n = fifo_free_entries(uncore);
372 n = uncore->fifo_count;
374 if (n <= GT_FIFO_NUM_RESERVED_ENTRIES) {
375 if (wait_for_atomic((n = fifo_free_entries(uncore)) >
376 GT_FIFO_NUM_RESERVED_ENTRIES,
377 GT_FIFO_TIMEOUT_MS)) {
378 drm_dbg(&uncore->i915->drm,
379 "GT_FIFO timeout, entries: %u\n", n);
384 uncore->fifo_count = n - 1;
387 static enum hrtimer_restart
388 intel_uncore_fw_release_timer(struct hrtimer *timer)
390 struct intel_uncore_forcewake_domain *domain =
391 container_of(timer, struct intel_uncore_forcewake_domain, timer);
392 struct intel_uncore *uncore = domain->uncore;
393 unsigned long irqflags;
395 assert_rpm_device_not_suspended(uncore->rpm);
397 if (xchg(&domain->active, false))
398 return HRTIMER_RESTART;
400 spin_lock_irqsave(&uncore->lock, irqflags);
402 uncore->fw_domains_timer &= ~domain->mask;
404 GEM_BUG_ON(!domain->wake_count);
405 if (--domain->wake_count == 0)
406 fw_domains_put(uncore, domain->mask);
408 spin_unlock_irqrestore(&uncore->lock, irqflags);
410 return HRTIMER_NORESTART;
413 /* Note callers must have acquired the PUNIT->PMIC bus, before calling this. */
415 intel_uncore_forcewake_reset(struct intel_uncore *uncore)
417 unsigned long irqflags;
418 struct intel_uncore_forcewake_domain *domain;
419 int retry_count = 100;
420 enum forcewake_domains fw, active_domains;
422 iosf_mbi_assert_punit_acquired();
424 /* Hold uncore.lock across reset to prevent any register access
425 * with forcewake not set correctly. Wait until all pending
426 * timers are run before holding.
433 for_each_fw_domain(domain, uncore, tmp) {
434 smp_store_mb(domain->active, false);
435 if (hrtimer_cancel(&domain->timer) == 0)
438 intel_uncore_fw_release_timer(&domain->timer);
441 spin_lock_irqsave(&uncore->lock, irqflags);
443 for_each_fw_domain(domain, uncore, tmp) {
444 if (hrtimer_active(&domain->timer))
445 active_domains |= domain->mask;
448 if (active_domains == 0)
451 if (--retry_count == 0) {
452 drm_err(&uncore->i915->drm, "Timed out waiting for forcewake timers to finish\n");
456 spin_unlock_irqrestore(&uncore->lock, irqflags);
460 drm_WARN_ON(&uncore->i915->drm, active_domains);
462 fw = uncore->fw_domains_active;
464 fw_domains_put(uncore, fw);
466 fw_domains_reset(uncore, uncore->fw_domains);
467 assert_forcewakes_inactive(uncore);
469 spin_unlock_irqrestore(&uncore->lock, irqflags);
471 return fw; /* track the lost user forcewake domains */
475 fpga_check_for_unclaimed_mmio(struct intel_uncore *uncore)
479 dbg = __raw_uncore_read32(uncore, FPGA_DBG);
480 if (likely(!(dbg & FPGA_DBG_RM_NOCLAIM)))
484 * Bugs in PCI programming (or failing hardware) can occasionally cause
485 * us to lose access to the MMIO BAR. When this happens, register
486 * reads will come back with 0xFFFFFFFF for every register and things
487 * go bad very quickly. Let's try to detect that special case and at
488 * least try to print a more informative message about what has
491 * During normal operation the FPGA_DBG register has several unused
492 * bits that will always read back as 0's so we can use them as canaries
493 * to recognize when MMIO accesses are just busted.
495 if (unlikely(dbg == ~0))
496 drm_err(&uncore->i915->drm,
497 "Lost access to MMIO BAR; all registers now read back as 0xFFFFFFFF!\n");
499 __raw_uncore_write32(uncore, FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
505 vlv_check_for_unclaimed_mmio(struct intel_uncore *uncore)
509 cer = __raw_uncore_read32(uncore, CLAIM_ER);
510 if (likely(!(cer & (CLAIM_ER_OVERFLOW | CLAIM_ER_CTR_MASK))))
513 __raw_uncore_write32(uncore, CLAIM_ER, CLAIM_ER_CLR);
519 gen6_check_for_fifo_debug(struct intel_uncore *uncore)
523 fifodbg = __raw_uncore_read32(uncore, GTFIFODBG);
525 if (unlikely(fifodbg)) {
526 drm_dbg(&uncore->i915->drm, "GTFIFODBG = 0x08%x\n", fifodbg);
527 __raw_uncore_write32(uncore, GTFIFODBG, fifodbg);
534 check_for_unclaimed_mmio(struct intel_uncore *uncore)
538 lockdep_assert_held(&uncore->debug->lock);
540 if (uncore->debug->suspend_count)
543 if (intel_uncore_has_fpga_dbg_unclaimed(uncore))
544 ret |= fpga_check_for_unclaimed_mmio(uncore);
546 if (intel_uncore_has_dbg_unclaimed(uncore))
547 ret |= vlv_check_for_unclaimed_mmio(uncore);
549 if (intel_uncore_has_fifo(uncore))
550 ret |= gen6_check_for_fifo_debug(uncore);
555 static void forcewake_early_sanitize(struct intel_uncore *uncore,
556 unsigned int restore_forcewake)
558 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
560 /* WaDisableShadowRegForCpd:chv */
561 if (IS_CHERRYVIEW(uncore->i915)) {
562 __raw_uncore_write32(uncore, GTFIFOCTL,
563 __raw_uncore_read32(uncore, GTFIFOCTL) |
564 GT_FIFO_CTL_BLOCK_ALL_POLICY_STALL |
565 GT_FIFO_CTL_RC6_POLICY_STALL);
568 iosf_mbi_punit_acquire();
569 intel_uncore_forcewake_reset(uncore);
570 if (restore_forcewake) {
571 spin_lock_irq(&uncore->lock);
572 fw_domains_get(uncore, restore_forcewake);
574 if (intel_uncore_has_fifo(uncore))
575 uncore->fifo_count = fifo_free_entries(uncore);
576 spin_unlock_irq(&uncore->lock);
578 iosf_mbi_punit_release();
581 void intel_uncore_suspend(struct intel_uncore *uncore)
583 if (!intel_uncore_has_forcewake(uncore))
586 iosf_mbi_punit_acquire();
587 iosf_mbi_unregister_pmic_bus_access_notifier_unlocked(
588 &uncore->pmic_bus_access_nb);
589 uncore->fw_domains_saved = intel_uncore_forcewake_reset(uncore);
590 iosf_mbi_punit_release();
593 void intel_uncore_resume_early(struct intel_uncore *uncore)
595 unsigned int restore_forcewake;
597 if (intel_uncore_unclaimed_mmio(uncore))
598 drm_dbg(&uncore->i915->drm, "unclaimed mmio detected on resume, clearing\n");
600 if (!intel_uncore_has_forcewake(uncore))
603 restore_forcewake = fetch_and_zero(&uncore->fw_domains_saved);
604 forcewake_early_sanitize(uncore, restore_forcewake);
606 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
609 void intel_uncore_runtime_resume(struct intel_uncore *uncore)
611 if (!intel_uncore_has_forcewake(uncore))
614 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
617 static void __intel_uncore_forcewake_get(struct intel_uncore *uncore,
618 enum forcewake_domains fw_domains)
620 struct intel_uncore_forcewake_domain *domain;
623 fw_domains &= uncore->fw_domains;
625 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
626 if (domain->wake_count++) {
627 fw_domains &= ~domain->mask;
628 domain->active = true;
633 fw_domains_get(uncore, fw_domains);
637 * intel_uncore_forcewake_get - grab forcewake domain references
638 * @uncore: the intel_uncore structure
639 * @fw_domains: forcewake domains to get reference on
641 * This function can be used get GT's forcewake domain references.
642 * Normal register access will handle the forcewake domains automatically.
643 * However if some sequence requires the GT to not power down a particular
644 * forcewake domains this function should be called at the beginning of the
645 * sequence. And subsequently the reference should be dropped by symmetric
646 * call to intel_unforce_forcewake_put(). Usually caller wants all the domains
647 * to be kept awake so the @fw_domains would be then FORCEWAKE_ALL.
649 void intel_uncore_forcewake_get(struct intel_uncore *uncore,
650 enum forcewake_domains fw_domains)
652 unsigned long irqflags;
654 if (!uncore->fw_get_funcs)
657 assert_rpm_wakelock_held(uncore->rpm);
659 spin_lock_irqsave(&uncore->lock, irqflags);
660 __intel_uncore_forcewake_get(uncore, fw_domains);
661 spin_unlock_irqrestore(&uncore->lock, irqflags);
665 * intel_uncore_forcewake_user_get - claim forcewake on behalf of userspace
666 * @uncore: the intel_uncore structure
668 * This function is a wrapper around intel_uncore_forcewake_get() to acquire
669 * the GT powerwell and in the process disable our debugging for the
670 * duration of userspace's bypass.
672 void intel_uncore_forcewake_user_get(struct intel_uncore *uncore)
674 spin_lock_irq(&uncore->lock);
675 if (!uncore->user_forcewake_count++) {
676 intel_uncore_forcewake_get__locked(uncore, FORCEWAKE_ALL);
677 spin_lock(&uncore->debug->lock);
678 mmio_debug_suspend(uncore->debug);
679 spin_unlock(&uncore->debug->lock);
681 spin_unlock_irq(&uncore->lock);
685 * intel_uncore_forcewake_user_put - release forcewake on behalf of userspace
686 * @uncore: the intel_uncore structure
688 * This function complements intel_uncore_forcewake_user_get() and releases
689 * the GT powerwell taken on behalf of the userspace bypass.
691 void intel_uncore_forcewake_user_put(struct intel_uncore *uncore)
693 spin_lock_irq(&uncore->lock);
694 if (!--uncore->user_forcewake_count) {
695 spin_lock(&uncore->debug->lock);
696 mmio_debug_resume(uncore->debug);
698 if (check_for_unclaimed_mmio(uncore))
699 drm_info(&uncore->i915->drm,
700 "Invalid mmio detected during user access\n");
701 spin_unlock(&uncore->debug->lock);
703 intel_uncore_forcewake_put__locked(uncore, FORCEWAKE_ALL);
705 spin_unlock_irq(&uncore->lock);
709 * intel_uncore_forcewake_get__locked - grab forcewake domain references
710 * @uncore: the intel_uncore structure
711 * @fw_domains: forcewake domains to get reference on
713 * See intel_uncore_forcewake_get(). This variant places the onus
714 * on the caller to explicitly handle the dev_priv->uncore.lock spinlock.
716 void intel_uncore_forcewake_get__locked(struct intel_uncore *uncore,
717 enum forcewake_domains fw_domains)
719 lockdep_assert_held(&uncore->lock);
721 if (!uncore->fw_get_funcs)
724 __intel_uncore_forcewake_get(uncore, fw_domains);
727 static void __intel_uncore_forcewake_put(struct intel_uncore *uncore,
728 enum forcewake_domains fw_domains,
731 struct intel_uncore_forcewake_domain *domain;
734 fw_domains &= uncore->fw_domains;
736 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
737 GEM_BUG_ON(!domain->wake_count);
739 if (--domain->wake_count) {
740 domain->active = true;
745 !(domain->uncore->fw_domains_timer & domain->mask))
746 fw_domain_arm_timer(domain);
748 fw_domains_put(uncore, domain->mask);
753 * intel_uncore_forcewake_put - release a forcewake domain reference
754 * @uncore: the intel_uncore structure
755 * @fw_domains: forcewake domains to put references
757 * This function drops the device-level forcewakes for specified
758 * domains obtained by intel_uncore_forcewake_get().
760 void intel_uncore_forcewake_put(struct intel_uncore *uncore,
761 enum forcewake_domains fw_domains)
763 unsigned long irqflags;
765 if (!uncore->fw_get_funcs)
768 spin_lock_irqsave(&uncore->lock, irqflags);
769 __intel_uncore_forcewake_put(uncore, fw_domains, false);
770 spin_unlock_irqrestore(&uncore->lock, irqflags);
773 void intel_uncore_forcewake_put_delayed(struct intel_uncore *uncore,
774 enum forcewake_domains fw_domains)
776 unsigned long irqflags;
778 if (!uncore->fw_get_funcs)
781 spin_lock_irqsave(&uncore->lock, irqflags);
782 __intel_uncore_forcewake_put(uncore, fw_domains, true);
783 spin_unlock_irqrestore(&uncore->lock, irqflags);
787 * intel_uncore_forcewake_flush - flush the delayed release
788 * @uncore: the intel_uncore structure
789 * @fw_domains: forcewake domains to flush
791 void intel_uncore_forcewake_flush(struct intel_uncore *uncore,
792 enum forcewake_domains fw_domains)
794 struct intel_uncore_forcewake_domain *domain;
797 if (!uncore->fw_get_funcs)
800 fw_domains &= uncore->fw_domains;
801 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
802 WRITE_ONCE(domain->active, false);
803 if (hrtimer_cancel(&domain->timer))
804 intel_uncore_fw_release_timer(&domain->timer);
809 * intel_uncore_forcewake_put__locked - grab forcewake domain references
810 * @uncore: the intel_uncore structure
811 * @fw_domains: forcewake domains to get reference on
813 * See intel_uncore_forcewake_put(). This variant places the onus
814 * on the caller to explicitly handle the dev_priv->uncore.lock spinlock.
816 void intel_uncore_forcewake_put__locked(struct intel_uncore *uncore,
817 enum forcewake_domains fw_domains)
819 lockdep_assert_held(&uncore->lock);
821 if (!uncore->fw_get_funcs)
824 __intel_uncore_forcewake_put(uncore, fw_domains, false);
827 void assert_forcewakes_inactive(struct intel_uncore *uncore)
829 if (!uncore->fw_get_funcs)
832 drm_WARN(&uncore->i915->drm, uncore->fw_domains_active,
833 "Expected all fw_domains to be inactive, but %08x are still on\n",
834 uncore->fw_domains_active);
837 void assert_forcewakes_active(struct intel_uncore *uncore,
838 enum forcewake_domains fw_domains)
840 struct intel_uncore_forcewake_domain *domain;
843 if (!IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM))
846 if (!uncore->fw_get_funcs)
849 spin_lock_irq(&uncore->lock);
851 assert_rpm_wakelock_held(uncore->rpm);
853 fw_domains &= uncore->fw_domains;
854 drm_WARN(&uncore->i915->drm, fw_domains & ~uncore->fw_domains_active,
855 "Expected %08x fw_domains to be active, but %08x are off\n",
856 fw_domains, fw_domains & ~uncore->fw_domains_active);
859 * Check that the caller has an explicit wakeref and we don't mistake
860 * it for the auto wakeref.
862 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
863 unsigned int actual = READ_ONCE(domain->wake_count);
864 unsigned int expect = 1;
866 if (uncore->fw_domains_timer & domain->mask)
867 expect++; /* pending automatic release */
869 if (drm_WARN(&uncore->i915->drm, actual < expect,
870 "Expected domain %d to be held awake by caller, count=%d\n",
875 spin_unlock_irq(&uncore->lock);
878 /* We give fast paths for the really cool registers */
879 #define NEEDS_FORCE_WAKE(reg) ({ \
881 __reg < 0x40000 || __reg >= GEN11_BSD_RING_BASE; \
884 static int fw_range_cmp(u32 offset, const struct intel_forcewake_range *entry)
886 if (offset < entry->start)
888 else if (offset > entry->end)
894 /* Copied and "macroized" from lib/bsearch.c */
895 #define BSEARCH(key, base, num, cmp) ({ \
896 unsigned int start__ = 0, end__ = (num); \
897 typeof(base) result__ = NULL; \
898 while (start__ < end__) { \
899 unsigned int mid__ = start__ + (end__ - start__) / 2; \
900 int ret__ = (cmp)((key), (base) + mid__); \
903 } else if (ret__ > 0) { \
904 start__ = mid__ + 1; \
906 result__ = (base) + mid__; \
913 static enum forcewake_domains
914 find_fw_domain(struct intel_uncore *uncore, u32 offset)
916 const struct intel_forcewake_range *entry;
918 entry = BSEARCH(offset,
919 uncore->fw_domains_table,
920 uncore->fw_domains_table_entries,
927 * The list of FW domains depends on the SKU in gen11+ so we
928 * can't determine it statically. We use FORCEWAKE_ALL and
929 * translate it here to the list of available domains.
931 if (entry->domains == FORCEWAKE_ALL)
932 return uncore->fw_domains;
934 drm_WARN(&uncore->i915->drm, entry->domains & ~uncore->fw_domains,
935 "Uninitialized forcewake domain(s) 0x%x accessed at 0x%x\n",
936 entry->domains & ~uncore->fw_domains, offset);
938 return entry->domains;
942 * Shadowed register tables describe special register ranges that i915 is
943 * allowed to write to without acquiring forcewake. If these registers' power
944 * wells are down, the hardware will save values written by i915 to a shadow
945 * copy and automatically transfer them into the real register the next time
946 * the power well is woken up. Shadowing only applies to writes; forcewake
947 * must still be acquired when reading from registers in these ranges.
949 * The documentation for shadowed registers is somewhat spotty on older
950 * platforms. However missing registers from these lists is non-fatal; it just
951 * means we'll wake up the hardware for some register accesses where we didn't
954 * The ranges listed in these tables must be sorted by offset.
956 * When adding new tables here, please also add them to
957 * intel_shadow_table_check() in selftests/intel_uncore.c so that they will be
958 * scanned for obvious mistakes or typos by the selftests.
961 static const struct i915_range gen8_shadowed_regs[] = {
962 { .start = 0x2030, .end = 0x2030 },
963 { .start = 0xA008, .end = 0xA00C },
964 { .start = 0x12030, .end = 0x12030 },
965 { .start = 0x1a030, .end = 0x1a030 },
966 { .start = 0x22030, .end = 0x22030 },
969 static const struct i915_range gen11_shadowed_regs[] = {
970 { .start = 0x2030, .end = 0x2030 },
971 { .start = 0x2550, .end = 0x2550 },
972 { .start = 0xA008, .end = 0xA00C },
973 { .start = 0x22030, .end = 0x22030 },
974 { .start = 0x22230, .end = 0x22230 },
975 { .start = 0x22510, .end = 0x22550 },
976 { .start = 0x1C0030, .end = 0x1C0030 },
977 { .start = 0x1C0230, .end = 0x1C0230 },
978 { .start = 0x1C0510, .end = 0x1C0550 },
979 { .start = 0x1C4030, .end = 0x1C4030 },
980 { .start = 0x1C4230, .end = 0x1C4230 },
981 { .start = 0x1C4510, .end = 0x1C4550 },
982 { .start = 0x1C8030, .end = 0x1C8030 },
983 { .start = 0x1C8230, .end = 0x1C8230 },
984 { .start = 0x1C8510, .end = 0x1C8550 },
985 { .start = 0x1D0030, .end = 0x1D0030 },
986 { .start = 0x1D0230, .end = 0x1D0230 },
987 { .start = 0x1D0510, .end = 0x1D0550 },
988 { .start = 0x1D4030, .end = 0x1D4030 },
989 { .start = 0x1D4230, .end = 0x1D4230 },
990 { .start = 0x1D4510, .end = 0x1D4550 },
991 { .start = 0x1D8030, .end = 0x1D8030 },
992 { .start = 0x1D8230, .end = 0x1D8230 },
993 { .start = 0x1D8510, .end = 0x1D8550 },
996 static const struct i915_range gen12_shadowed_regs[] = {
997 { .start = 0x2030, .end = 0x2030 },
998 { .start = 0x2510, .end = 0x2550 },
999 { .start = 0xA008, .end = 0xA00C },
1000 { .start = 0xA188, .end = 0xA188 },
1001 { .start = 0xA278, .end = 0xA278 },
1002 { .start = 0xA540, .end = 0xA56C },
1003 { .start = 0xC4C8, .end = 0xC4C8 },
1004 { .start = 0xC4D4, .end = 0xC4D4 },
1005 { .start = 0xC600, .end = 0xC600 },
1006 { .start = 0x22030, .end = 0x22030 },
1007 { .start = 0x22510, .end = 0x22550 },
1008 { .start = 0x1C0030, .end = 0x1C0030 },
1009 { .start = 0x1C0510, .end = 0x1C0550 },
1010 { .start = 0x1C4030, .end = 0x1C4030 },
1011 { .start = 0x1C4510, .end = 0x1C4550 },
1012 { .start = 0x1C8030, .end = 0x1C8030 },
1013 { .start = 0x1C8510, .end = 0x1C8550 },
1014 { .start = 0x1D0030, .end = 0x1D0030 },
1015 { .start = 0x1D0510, .end = 0x1D0550 },
1016 { .start = 0x1D4030, .end = 0x1D4030 },
1017 { .start = 0x1D4510, .end = 0x1D4550 },
1018 { .start = 0x1D8030, .end = 0x1D8030 },
1019 { .start = 0x1D8510, .end = 0x1D8550 },
1022 * The rest of these ranges are specific to Xe_HP and beyond, but
1023 * are reserved/unused ranges on earlier gen12 platforms, so they can
1024 * be safely added to the gen12 table.
1026 { .start = 0x1E0030, .end = 0x1E0030 },
1027 { .start = 0x1E0510, .end = 0x1E0550 },
1028 { .start = 0x1E4030, .end = 0x1E4030 },
1029 { .start = 0x1E4510, .end = 0x1E4550 },
1030 { .start = 0x1E8030, .end = 0x1E8030 },
1031 { .start = 0x1E8510, .end = 0x1E8550 },
1032 { .start = 0x1F0030, .end = 0x1F0030 },
1033 { .start = 0x1F0510, .end = 0x1F0550 },
1034 { .start = 0x1F4030, .end = 0x1F4030 },
1035 { .start = 0x1F4510, .end = 0x1F4550 },
1036 { .start = 0x1F8030, .end = 0x1F8030 },
1037 { .start = 0x1F8510, .end = 0x1F8550 },
1040 static const struct i915_range dg2_shadowed_regs[] = {
1041 { .start = 0x2030, .end = 0x2030 },
1042 { .start = 0x2510, .end = 0x2550 },
1043 { .start = 0xA008, .end = 0xA00C },
1044 { .start = 0xA188, .end = 0xA188 },
1045 { .start = 0xA278, .end = 0xA278 },
1046 { .start = 0xA540, .end = 0xA56C },
1047 { .start = 0xC4C8, .end = 0xC4C8 },
1048 { .start = 0xC4E0, .end = 0xC4E0 },
1049 { .start = 0xC600, .end = 0xC600 },
1050 { .start = 0xC658, .end = 0xC658 },
1051 { .start = 0x22030, .end = 0x22030 },
1052 { .start = 0x22510, .end = 0x22550 },
1053 { .start = 0x1C0030, .end = 0x1C0030 },
1054 { .start = 0x1C0510, .end = 0x1C0550 },
1055 { .start = 0x1C4030, .end = 0x1C4030 },
1056 { .start = 0x1C4510, .end = 0x1C4550 },
1057 { .start = 0x1C8030, .end = 0x1C8030 },
1058 { .start = 0x1C8510, .end = 0x1C8550 },
1059 { .start = 0x1D0030, .end = 0x1D0030 },
1060 { .start = 0x1D0510, .end = 0x1D0550 },
1061 { .start = 0x1D4030, .end = 0x1D4030 },
1062 { .start = 0x1D4510, .end = 0x1D4550 },
1063 { .start = 0x1D8030, .end = 0x1D8030 },
1064 { .start = 0x1D8510, .end = 0x1D8550 },
1065 { .start = 0x1E0030, .end = 0x1E0030 },
1066 { .start = 0x1E0510, .end = 0x1E0550 },
1067 { .start = 0x1E4030, .end = 0x1E4030 },
1068 { .start = 0x1E4510, .end = 0x1E4550 },
1069 { .start = 0x1E8030, .end = 0x1E8030 },
1070 { .start = 0x1E8510, .end = 0x1E8550 },
1071 { .start = 0x1F0030, .end = 0x1F0030 },
1072 { .start = 0x1F0510, .end = 0x1F0550 },
1073 { .start = 0x1F4030, .end = 0x1F4030 },
1074 { .start = 0x1F4510, .end = 0x1F4550 },
1075 { .start = 0x1F8030, .end = 0x1F8030 },
1076 { .start = 0x1F8510, .end = 0x1F8550 },
1079 static const struct i915_range pvc_shadowed_regs[] = {
1080 { .start = 0x2030, .end = 0x2030 },
1081 { .start = 0x2510, .end = 0x2550 },
1082 { .start = 0xA008, .end = 0xA00C },
1083 { .start = 0xA188, .end = 0xA188 },
1084 { .start = 0xA278, .end = 0xA278 },
1085 { .start = 0xA540, .end = 0xA56C },
1086 { .start = 0xC4C8, .end = 0xC4C8 },
1087 { .start = 0xC4E0, .end = 0xC4E0 },
1088 { .start = 0xC600, .end = 0xC600 },
1089 { .start = 0xC658, .end = 0xC658 },
1090 { .start = 0x22030, .end = 0x22030 },
1091 { .start = 0x22510, .end = 0x22550 },
1092 { .start = 0x1C0030, .end = 0x1C0030 },
1093 { .start = 0x1C0510, .end = 0x1C0550 },
1094 { .start = 0x1C4030, .end = 0x1C4030 },
1095 { .start = 0x1C4510, .end = 0x1C4550 },
1096 { .start = 0x1C8030, .end = 0x1C8030 },
1097 { .start = 0x1C8510, .end = 0x1C8550 },
1098 { .start = 0x1D0030, .end = 0x1D0030 },
1099 { .start = 0x1D0510, .end = 0x1D0550 },
1100 { .start = 0x1D4030, .end = 0x1D4030 },
1101 { .start = 0x1D4510, .end = 0x1D4550 },
1102 { .start = 0x1D8030, .end = 0x1D8030 },
1103 { .start = 0x1D8510, .end = 0x1D8550 },
1104 { .start = 0x1E0030, .end = 0x1E0030 },
1105 { .start = 0x1E0510, .end = 0x1E0550 },
1106 { .start = 0x1E4030, .end = 0x1E4030 },
1107 { .start = 0x1E4510, .end = 0x1E4550 },
1108 { .start = 0x1E8030, .end = 0x1E8030 },
1109 { .start = 0x1E8510, .end = 0x1E8550 },
1110 { .start = 0x1F0030, .end = 0x1F0030 },
1111 { .start = 0x1F0510, .end = 0x1F0550 },
1112 { .start = 0x1F4030, .end = 0x1F4030 },
1113 { .start = 0x1F4510, .end = 0x1F4550 },
1114 { .start = 0x1F8030, .end = 0x1F8030 },
1115 { .start = 0x1F8510, .end = 0x1F8550 },
1118 static int mmio_range_cmp(u32 key, const struct i915_range *range)
1120 if (key < range->start)
1122 else if (key > range->end)
1128 static bool is_shadowed(struct intel_uncore *uncore, u32 offset)
1130 if (drm_WARN_ON(&uncore->i915->drm, !uncore->shadowed_reg_table))
1133 return BSEARCH(offset,
1134 uncore->shadowed_reg_table,
1135 uncore->shadowed_reg_table_entries,
1139 static enum forcewake_domains
1140 gen6_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg)
1142 return FORCEWAKE_RENDER;
1145 #define __fwtable_reg_read_fw_domains(uncore, offset) \
1147 enum forcewake_domains __fwd = 0; \
1148 if (NEEDS_FORCE_WAKE((offset))) \
1149 __fwd = find_fw_domain(uncore, offset); \
1153 #define __fwtable_reg_write_fw_domains(uncore, offset) \
1155 enum forcewake_domains __fwd = 0; \
1156 const u32 __offset = (offset); \
1157 if (NEEDS_FORCE_WAKE((__offset)) && !is_shadowed(uncore, __offset)) \
1158 __fwd = find_fw_domain(uncore, __offset); \
1162 #define GEN_FW_RANGE(s, e, d) \
1163 { .start = (s), .end = (e), .domains = (d) }
1166 * All platforms' forcewake tables below must be sorted by offset ranges.
1167 * Furthermore, new forcewake tables added should be "watertight" and have
1168 * no gaps between ranges.
1170 * When there are multiple consecutive ranges listed in the bspec with
1171 * the same forcewake domain, it is customary to combine them into a single
1172 * row in the tables below to keep the tables small and lookups fast.
1173 * Likewise, reserved/unused ranges may be combined with the preceding and/or
1174 * following ranges since the driver will never be making MMIO accesses in
1177 * For example, if the bspec were to list:
1180 * 0x1000 - 0x1fff: GT
1181 * 0x2000 - 0x2cff: GT
1182 * 0x2d00 - 0x2fff: unused/reserved
1183 * 0x3000 - 0xffff: GT
1186 * these could all be represented by a single line in the code:
1188 * GEN_FW_RANGE(0x1000, 0xffff, FORCEWAKE_GT)
1190 * When adding new forcewake tables here, please also add them to
1191 * intel_uncore_mock_selftests in selftests/intel_uncore.c so that they will be
1192 * scanned for obvious mistakes or typos by the selftests.
1195 static const struct intel_forcewake_range __gen6_fw_ranges[] = {
1196 GEN_FW_RANGE(0x0, 0x3ffff, FORCEWAKE_RENDER),
1199 static const struct intel_forcewake_range __vlv_fw_ranges[] = {
1200 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
1201 GEN_FW_RANGE(0x5000, 0x7fff, FORCEWAKE_RENDER),
1202 GEN_FW_RANGE(0xb000, 0x11fff, FORCEWAKE_RENDER),
1203 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1204 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_MEDIA),
1205 GEN_FW_RANGE(0x2e000, 0x2ffff, FORCEWAKE_RENDER),
1206 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
1209 static const struct intel_forcewake_range __chv_fw_ranges[] = {
1210 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
1211 GEN_FW_RANGE(0x4000, 0x4fff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1212 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1213 GEN_FW_RANGE(0x8000, 0x82ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1214 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1215 GEN_FW_RANGE(0x8500, 0x85ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1216 GEN_FW_RANGE(0x8800, 0x88ff, FORCEWAKE_MEDIA),
1217 GEN_FW_RANGE(0x9000, 0xafff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1218 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1219 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
1220 GEN_FW_RANGE(0xe000, 0xe7ff, FORCEWAKE_RENDER),
1221 GEN_FW_RANGE(0xf000, 0xffff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1222 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1223 GEN_FW_RANGE(0x1a000, 0x1bfff, FORCEWAKE_MEDIA),
1224 GEN_FW_RANGE(0x1e800, 0x1e9ff, FORCEWAKE_MEDIA),
1225 GEN_FW_RANGE(0x30000, 0x37fff, FORCEWAKE_MEDIA),
1228 static const struct intel_forcewake_range __gen9_fw_ranges[] = {
1229 GEN_FW_RANGE(0x0, 0xaff, FORCEWAKE_GT),
1230 GEN_FW_RANGE(0xb00, 0x1fff, 0), /* uncore range */
1231 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1232 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_GT),
1233 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1234 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT),
1235 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1236 GEN_FW_RANGE(0x8000, 0x812f, FORCEWAKE_GT),
1237 GEN_FW_RANGE(0x8130, 0x813f, FORCEWAKE_MEDIA),
1238 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1239 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_GT),
1240 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1241 GEN_FW_RANGE(0x8500, 0x87ff, FORCEWAKE_GT),
1242 GEN_FW_RANGE(0x8800, 0x89ff, FORCEWAKE_MEDIA),
1243 GEN_FW_RANGE(0x8a00, 0x8bff, FORCEWAKE_GT),
1244 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1245 GEN_FW_RANGE(0x8d00, 0x93ff, FORCEWAKE_GT),
1246 GEN_FW_RANGE(0x9400, 0x97ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1247 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_GT),
1248 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1249 GEN_FW_RANGE(0xb480, 0xcfff, FORCEWAKE_GT),
1250 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
1251 GEN_FW_RANGE(0xd800, 0xdfff, FORCEWAKE_GT),
1252 GEN_FW_RANGE(0xe000, 0xe8ff, FORCEWAKE_RENDER),
1253 GEN_FW_RANGE(0xe900, 0x11fff, FORCEWAKE_GT),
1254 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1255 GEN_FW_RANGE(0x14000, 0x19fff, FORCEWAKE_GT),
1256 GEN_FW_RANGE(0x1a000, 0x1e9ff, FORCEWAKE_MEDIA),
1257 GEN_FW_RANGE(0x1ea00, 0x243ff, FORCEWAKE_GT),
1258 GEN_FW_RANGE(0x24400, 0x247ff, FORCEWAKE_RENDER),
1259 GEN_FW_RANGE(0x24800, 0x2ffff, FORCEWAKE_GT),
1260 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
1263 static const struct intel_forcewake_range __gen11_fw_ranges[] = {
1264 GEN_FW_RANGE(0x0, 0x1fff, 0), /* uncore range */
1265 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1266 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_GT),
1267 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1268 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT),
1269 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1270 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT),
1271 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1272 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_GT),
1273 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1274 GEN_FW_RANGE(0x8500, 0x87ff, FORCEWAKE_GT),
1275 GEN_FW_RANGE(0x8800, 0x8bff, 0),
1276 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1277 GEN_FW_RANGE(0x8d00, 0x94cf, FORCEWAKE_GT),
1278 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER),
1279 GEN_FW_RANGE(0x9560, 0x95ff, 0),
1280 GEN_FW_RANGE(0x9600, 0xafff, FORCEWAKE_GT),
1281 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1282 GEN_FW_RANGE(0xb480, 0xdeff, FORCEWAKE_GT),
1283 GEN_FW_RANGE(0xdf00, 0xe8ff, FORCEWAKE_RENDER),
1284 GEN_FW_RANGE(0xe900, 0x16dff, FORCEWAKE_GT),
1285 GEN_FW_RANGE(0x16e00, 0x19fff, FORCEWAKE_RENDER),
1286 GEN_FW_RANGE(0x1a000, 0x23fff, FORCEWAKE_GT),
1287 GEN_FW_RANGE(0x24000, 0x2407f, 0),
1288 GEN_FW_RANGE(0x24080, 0x2417f, FORCEWAKE_GT),
1289 GEN_FW_RANGE(0x24180, 0x242ff, FORCEWAKE_RENDER),
1290 GEN_FW_RANGE(0x24300, 0x243ff, FORCEWAKE_GT),
1291 GEN_FW_RANGE(0x24400, 0x24fff, FORCEWAKE_RENDER),
1292 GEN_FW_RANGE(0x25000, 0x3ffff, FORCEWAKE_GT),
1293 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1294 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0),
1295 GEN_FW_RANGE(0x1c4000, 0x1c7fff, 0),
1296 GEN_FW_RANGE(0x1c8000, 0x1cffff, FORCEWAKE_MEDIA_VEBOX0),
1297 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2),
1298 GEN_FW_RANGE(0x1d4000, 0x1dbfff, 0)
1301 static const struct intel_forcewake_range __gen12_fw_ranges[] = {
1302 GEN_FW_RANGE(0x0, 0x1fff, 0), /*
1303 0x0 - 0xaff: reserved
1304 0xb00 - 0x1fff: always on */
1305 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1306 GEN_FW_RANGE(0x2700, 0x27ff, FORCEWAKE_GT),
1307 GEN_FW_RANGE(0x2800, 0x2aff, FORCEWAKE_RENDER),
1308 GEN_FW_RANGE(0x2b00, 0x2fff, FORCEWAKE_GT),
1309 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1310 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT), /*
1312 0x4900 - 0x51ff: reserved */
1313 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER), /*
1314 0x5200 - 0x53ff: render
1315 0x5400 - 0x54ff: reserved
1316 0x5500 - 0x7fff: render */
1317 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT),
1318 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1319 GEN_FW_RANGE(0x8160, 0x81ff, 0), /*
1320 0x8160 - 0x817f: reserved
1321 0x8180 - 0x81ff: always on */
1322 GEN_FW_RANGE(0x8200, 0x82ff, FORCEWAKE_GT),
1323 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1324 GEN_FW_RANGE(0x8500, 0x94cf, FORCEWAKE_GT), /*
1326 0x8800 - 0x8fff: reserved
1328 0x9480 - 0x94cf: reserved */
1329 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER),
1330 GEN_FW_RANGE(0x9560, 0x97ff, 0), /*
1331 0x9560 - 0x95ff: always on
1332 0x9600 - 0x97ff: reserved */
1333 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_GT),
1334 GEN_FW_RANGE(0xb000, 0xb3ff, FORCEWAKE_RENDER),
1335 GEN_FW_RANGE(0xb400, 0xcfff, FORCEWAKE_GT), /*
1337 0xb480 - 0xbfff: reserved
1338 0xc000 - 0xcfff: gt */
1339 GEN_FW_RANGE(0xd000, 0xd7ff, 0),
1340 GEN_FW_RANGE(0xd800, 0xd8ff, FORCEWAKE_RENDER),
1341 GEN_FW_RANGE(0xd900, 0xdbff, FORCEWAKE_GT),
1342 GEN_FW_RANGE(0xdc00, 0xefff, FORCEWAKE_RENDER), /*
1343 0xdc00 - 0xddff: render
1344 0xde00 - 0xde7f: reserved
1345 0xde80 - 0xe8ff: render
1346 0xe900 - 0xefff: reserved */
1347 GEN_FW_RANGE(0xf000, 0x147ff, FORCEWAKE_GT), /*
1349 0x10000 - 0x147ff: reserved */
1350 GEN_FW_RANGE(0x14800, 0x1ffff, FORCEWAKE_RENDER), /*
1351 0x14800 - 0x14fff: render
1352 0x15000 - 0x16dff: reserved
1353 0x16e00 - 0x1bfff: render
1354 0x1c000 - 0x1ffff: reserved */
1355 GEN_FW_RANGE(0x20000, 0x20fff, FORCEWAKE_MEDIA_VDBOX0),
1356 GEN_FW_RANGE(0x21000, 0x21fff, FORCEWAKE_MEDIA_VDBOX2),
1357 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_GT),
1358 GEN_FW_RANGE(0x24000, 0x2417f, 0), /*
1359 0x24000 - 0x2407f: always on
1360 0x24080 - 0x2417f: reserved */
1361 GEN_FW_RANGE(0x24180, 0x249ff, FORCEWAKE_GT), /*
1362 0x24180 - 0x241ff: gt
1363 0x24200 - 0x249ff: reserved */
1364 GEN_FW_RANGE(0x24a00, 0x251ff, FORCEWAKE_RENDER), /*
1365 0x24a00 - 0x24a7f: render
1366 0x24a80 - 0x251ff: reserved */
1367 GEN_FW_RANGE(0x25200, 0x255ff, FORCEWAKE_GT), /*
1368 0x25200 - 0x252ff: gt
1369 0x25300 - 0x255ff: reserved */
1370 GEN_FW_RANGE(0x25600, 0x2567f, FORCEWAKE_MEDIA_VDBOX0),
1371 GEN_FW_RANGE(0x25680, 0x259ff, FORCEWAKE_MEDIA_VDBOX2), /*
1372 0x25680 - 0x256ff: VD2
1373 0x25700 - 0x259ff: reserved */
1374 GEN_FW_RANGE(0x25a00, 0x25a7f, FORCEWAKE_MEDIA_VDBOX0),
1375 GEN_FW_RANGE(0x25a80, 0x2ffff, FORCEWAKE_MEDIA_VDBOX2), /*
1376 0x25a80 - 0x25aff: VD2
1377 0x25b00 - 0x2ffff: reserved */
1378 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_GT),
1379 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1380 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0), /*
1381 0x1c0000 - 0x1c2bff: VD0
1382 0x1c2c00 - 0x1c2cff: reserved
1383 0x1c2d00 - 0x1c2dff: VD0
1384 0x1c2e00 - 0x1c3eff: reserved
1385 0x1c3f00 - 0x1c3fff: VD0 */
1386 GEN_FW_RANGE(0x1c4000, 0x1c7fff, 0),
1387 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0), /*
1388 0x1c8000 - 0x1ca0ff: VE0
1389 0x1ca100 - 0x1cbeff: reserved
1390 0x1cbf00 - 0x1cbfff: VE0 */
1391 GEN_FW_RANGE(0x1cc000, 0x1cffff, FORCEWAKE_MEDIA_VDBOX0), /*
1392 0x1cc000 - 0x1ccfff: VD0
1393 0x1cd000 - 0x1cffff: reserved */
1394 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2), /*
1395 0x1d0000 - 0x1d2bff: VD2
1396 0x1d2c00 - 0x1d2cff: reserved
1397 0x1d2d00 - 0x1d2dff: VD2
1398 0x1d2e00 - 0x1d3eff: reserved
1399 0x1d3f00 - 0x1d3fff: VD2 */
1403 * Graphics IP version 12.55 brings a slight change to the 0xd800 range,
1404 * switching it from the GT domain to the render domain.
1406 #define XEHP_FWRANGES(FW_RANGE_D800) \
1407 GEN_FW_RANGE(0x0, 0x1fff, 0), /* \
1408 0x0 - 0xaff: reserved \
1409 0xb00 - 0x1fff: always on */ \
1410 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER), \
1411 GEN_FW_RANGE(0x2700, 0x4aff, FORCEWAKE_GT), \
1412 GEN_FW_RANGE(0x4b00, 0x51ff, 0), /* \
1413 0x4b00 - 0x4fff: reserved \
1414 0x5000 - 0x51ff: always on */ \
1415 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER), \
1416 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT), \
1417 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER), \
1418 GEN_FW_RANGE(0x8160, 0x81ff, 0), /* \
1419 0x8160 - 0x817f: reserved \
1420 0x8180 - 0x81ff: always on */ \
1421 GEN_FW_RANGE(0x8200, 0x82ff, FORCEWAKE_GT), \
1422 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER), \
1423 GEN_FW_RANGE(0x8500, 0x8cff, FORCEWAKE_GT), /* \
1424 0x8500 - 0x87ff: gt \
1425 0x8800 - 0x8c7f: reserved \
1426 0x8c80 - 0x8cff: gt (DG2 only) */ \
1427 GEN_FW_RANGE(0x8d00, 0x8fff, FORCEWAKE_RENDER), /* \
1428 0x8d00 - 0x8dff: render (DG2 only) \
1429 0x8e00 - 0x8fff: reserved */ \
1430 GEN_FW_RANGE(0x9000, 0x94cf, FORCEWAKE_GT), /* \
1431 0x9000 - 0x947f: gt \
1432 0x9480 - 0x94cf: reserved */ \
1433 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER), \
1434 GEN_FW_RANGE(0x9560, 0x967f, 0), /* \
1435 0x9560 - 0x95ff: always on \
1436 0x9600 - 0x967f: reserved */ \
1437 GEN_FW_RANGE(0x9680, 0x97ff, FORCEWAKE_RENDER), /* \
1438 0x9680 - 0x96ff: render (DG2 only) \
1439 0x9700 - 0x97ff: reserved */ \
1440 GEN_FW_RANGE(0x9800, 0xcfff, FORCEWAKE_GT), /* \
1441 0x9800 - 0xb4ff: gt \
1442 0xb500 - 0xbfff: reserved \
1443 0xc000 - 0xcfff: gt */ \
1444 GEN_FW_RANGE(0xd000, 0xd7ff, 0), \
1445 GEN_FW_RANGE(0xd800, 0xd87f, FW_RANGE_D800), \
1446 GEN_FW_RANGE(0xd880, 0xdbff, FORCEWAKE_GT), \
1447 GEN_FW_RANGE(0xdc00, 0xdcff, FORCEWAKE_RENDER), \
1448 GEN_FW_RANGE(0xdd00, 0xde7f, FORCEWAKE_GT), /* \
1449 0xdd00 - 0xddff: gt \
1450 0xde00 - 0xde7f: reserved */ \
1451 GEN_FW_RANGE(0xde80, 0xe8ff, FORCEWAKE_RENDER), /* \
1452 0xde80 - 0xdfff: render \
1453 0xe000 - 0xe0ff: reserved \
1454 0xe100 - 0xe8ff: render */ \
1455 GEN_FW_RANGE(0xe900, 0xffff, FORCEWAKE_GT), /* \
1456 0xe900 - 0xe9ff: gt \
1457 0xea00 - 0xefff: reserved \
1458 0xf000 - 0xffff: gt */ \
1459 GEN_FW_RANGE(0x10000, 0x12fff, 0), /* \
1460 0x10000 - 0x11fff: reserved \
1461 0x12000 - 0x127ff: always on \
1462 0x12800 - 0x12fff: reserved */ \
1463 GEN_FW_RANGE(0x13000, 0x131ff, FORCEWAKE_MEDIA_VDBOX0), /* DG2 only */ \
1464 GEN_FW_RANGE(0x13200, 0x13fff, FORCEWAKE_MEDIA_VDBOX2), /* \
1465 0x13200 - 0x133ff: VD2 (DG2 only) \
1466 0x13400 - 0x13fff: reserved */ \
1467 GEN_FW_RANGE(0x14000, 0x141ff, FORCEWAKE_MEDIA_VDBOX0), /* XEHPSDV only */ \
1468 GEN_FW_RANGE(0x14200, 0x143ff, FORCEWAKE_MEDIA_VDBOX2), /* XEHPSDV only */ \
1469 GEN_FW_RANGE(0x14400, 0x145ff, FORCEWAKE_MEDIA_VDBOX4), /* XEHPSDV only */ \
1470 GEN_FW_RANGE(0x14600, 0x147ff, FORCEWAKE_MEDIA_VDBOX6), /* XEHPSDV only */ \
1471 GEN_FW_RANGE(0x14800, 0x14fff, FORCEWAKE_RENDER), \
1472 GEN_FW_RANGE(0x15000, 0x16dff, FORCEWAKE_GT), /* \
1473 0x15000 - 0x15fff: gt (DG2 only) \
1474 0x16000 - 0x16dff: reserved */ \
1475 GEN_FW_RANGE(0x16e00, 0x1ffff, FORCEWAKE_RENDER), \
1476 GEN_FW_RANGE(0x20000, 0x21fff, FORCEWAKE_MEDIA_VDBOX0), /* \
1477 0x20000 - 0x20fff: VD0 (XEHPSDV only) \
1478 0x21000 - 0x21fff: reserved */ \
1479 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_GT), \
1480 GEN_FW_RANGE(0x24000, 0x2417f, 0), /* \
1481 0x24000 - 0x2407f: always on \
1482 0x24080 - 0x2417f: reserved */ \
1483 GEN_FW_RANGE(0x24180, 0x249ff, FORCEWAKE_GT), /* \
1484 0x24180 - 0x241ff: gt \
1485 0x24200 - 0x249ff: reserved */ \
1486 GEN_FW_RANGE(0x24a00, 0x251ff, FORCEWAKE_RENDER), /* \
1487 0x24a00 - 0x24a7f: render \
1488 0x24a80 - 0x251ff: reserved */ \
1489 GEN_FW_RANGE(0x25200, 0x25fff, FORCEWAKE_GT), /* \
1490 0x25200 - 0x252ff: gt \
1491 0x25300 - 0x25fff: reserved */ \
1492 GEN_FW_RANGE(0x26000, 0x2ffff, FORCEWAKE_RENDER), /* \
1493 0x26000 - 0x27fff: render \
1494 0x28000 - 0x29fff: reserved \
1495 0x2a000 - 0x2ffff: undocumented */ \
1496 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_GT), \
1497 GEN_FW_RANGE(0x40000, 0x1bffff, 0), \
1498 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0), /* \
1499 0x1c0000 - 0x1c2bff: VD0 \
1500 0x1c2c00 - 0x1c2cff: reserved \
1501 0x1c2d00 - 0x1c2dff: VD0 \
1502 0x1c2e00 - 0x1c3eff: VD0 (DG2 only) \
1503 0x1c3f00 - 0x1c3fff: VD0 */ \
1504 GEN_FW_RANGE(0x1c4000, 0x1c7fff, FORCEWAKE_MEDIA_VDBOX1), /* \
1505 0x1c4000 - 0x1c6bff: VD1 \
1506 0x1c6c00 - 0x1c6cff: reserved \
1507 0x1c6d00 - 0x1c6dff: VD1 \
1508 0x1c6e00 - 0x1c7fff: reserved */ \
1509 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0), /* \
1510 0x1c8000 - 0x1ca0ff: VE0 \
1511 0x1ca100 - 0x1cbfff: reserved */ \
1512 GEN_FW_RANGE(0x1cc000, 0x1ccfff, FORCEWAKE_MEDIA_VDBOX0), \
1513 GEN_FW_RANGE(0x1cd000, 0x1cdfff, FORCEWAKE_MEDIA_VDBOX2), \
1514 GEN_FW_RANGE(0x1ce000, 0x1cefff, FORCEWAKE_MEDIA_VDBOX4), \
1515 GEN_FW_RANGE(0x1cf000, 0x1cffff, FORCEWAKE_MEDIA_VDBOX6), \
1516 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2), /* \
1517 0x1d0000 - 0x1d2bff: VD2 \
1518 0x1d2c00 - 0x1d2cff: reserved \
1519 0x1d2d00 - 0x1d2dff: VD2 \
1520 0x1d2e00 - 0x1d3dff: VD2 (DG2 only) \
1521 0x1d3e00 - 0x1d3eff: reserved \
1522 0x1d3f00 - 0x1d3fff: VD2 */ \
1523 GEN_FW_RANGE(0x1d4000, 0x1d7fff, FORCEWAKE_MEDIA_VDBOX3), /* \
1524 0x1d4000 - 0x1d6bff: VD3 \
1525 0x1d6c00 - 0x1d6cff: reserved \
1526 0x1d6d00 - 0x1d6dff: VD3 \
1527 0x1d6e00 - 0x1d7fff: reserved */ \
1528 GEN_FW_RANGE(0x1d8000, 0x1dffff, FORCEWAKE_MEDIA_VEBOX1), /* \
1529 0x1d8000 - 0x1da0ff: VE1 \
1530 0x1da100 - 0x1dffff: reserved */ \
1531 GEN_FW_RANGE(0x1e0000, 0x1e3fff, FORCEWAKE_MEDIA_VDBOX4), /* \
1532 0x1e0000 - 0x1e2bff: VD4 \
1533 0x1e2c00 - 0x1e2cff: reserved \
1534 0x1e2d00 - 0x1e2dff: VD4 \
1535 0x1e2e00 - 0x1e3eff: reserved \
1536 0x1e3f00 - 0x1e3fff: VD4 */ \
1537 GEN_FW_RANGE(0x1e4000, 0x1e7fff, FORCEWAKE_MEDIA_VDBOX5), /* \
1538 0x1e4000 - 0x1e6bff: VD5 \
1539 0x1e6c00 - 0x1e6cff: reserved \
1540 0x1e6d00 - 0x1e6dff: VD5 \
1541 0x1e6e00 - 0x1e7fff: reserved */ \
1542 GEN_FW_RANGE(0x1e8000, 0x1effff, FORCEWAKE_MEDIA_VEBOX2), /* \
1543 0x1e8000 - 0x1ea0ff: VE2 \
1544 0x1ea100 - 0x1effff: reserved */ \
1545 GEN_FW_RANGE(0x1f0000, 0x1f3fff, FORCEWAKE_MEDIA_VDBOX6), /* \
1546 0x1f0000 - 0x1f2bff: VD6 \
1547 0x1f2c00 - 0x1f2cff: reserved \
1548 0x1f2d00 - 0x1f2dff: VD6 \
1549 0x1f2e00 - 0x1f3eff: reserved \
1550 0x1f3f00 - 0x1f3fff: VD6 */ \
1551 GEN_FW_RANGE(0x1f4000, 0x1f7fff, FORCEWAKE_MEDIA_VDBOX7), /* \
1552 0x1f4000 - 0x1f6bff: VD7 \
1553 0x1f6c00 - 0x1f6cff: reserved \
1554 0x1f6d00 - 0x1f6dff: VD7 \
1555 0x1f6e00 - 0x1f7fff: reserved */ \
1556 GEN_FW_RANGE(0x1f8000, 0x1fa0ff, FORCEWAKE_MEDIA_VEBOX3),
1558 static const struct intel_forcewake_range __xehp_fw_ranges[] = {
1559 XEHP_FWRANGES(FORCEWAKE_GT)
1562 static const struct intel_forcewake_range __dg2_fw_ranges[] = {
1563 XEHP_FWRANGES(FORCEWAKE_RENDER)
1566 static const struct intel_forcewake_range __pvc_fw_ranges[] = {
1567 GEN_FW_RANGE(0x0, 0xaff, 0),
1568 GEN_FW_RANGE(0xb00, 0xbff, FORCEWAKE_GT),
1569 GEN_FW_RANGE(0xc00, 0xfff, 0),
1570 GEN_FW_RANGE(0x1000, 0x1fff, FORCEWAKE_GT),
1571 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1572 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_GT),
1573 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1574 GEN_FW_RANGE(0x4000, 0x813f, FORCEWAKE_GT), /*
1576 0x4b00 - 0x4fff: reserved
1578 0x5200 - 0x52ff: reserved
1580 0x5400 - 0x7fff: reserved
1581 0x8000 - 0x813f: gt */
1582 GEN_FW_RANGE(0x8140, 0x817f, FORCEWAKE_RENDER),
1583 GEN_FW_RANGE(0x8180, 0x81ff, 0),
1584 GEN_FW_RANGE(0x8200, 0x94cf, FORCEWAKE_GT), /*
1586 0x8300 - 0x84ff: reserved
1588 0x8880 - 0x8a7f: reserved
1590 0x8b00 - 0x8fff: reserved
1592 0x9480 - 0x94cf: reserved */
1593 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER),
1594 GEN_FW_RANGE(0x9560, 0x967f, 0), /*
1595 0x9560 - 0x95ff: always on
1596 0x9600 - 0x967f: reserved */
1597 GEN_FW_RANGE(0x9680, 0x97ff, FORCEWAKE_RENDER), /*
1598 0x9680 - 0x96ff: render
1599 0x9700 - 0x97ff: reserved */
1600 GEN_FW_RANGE(0x9800, 0xcfff, FORCEWAKE_GT), /*
1602 0xb500 - 0xbfff: reserved
1603 0xc000 - 0xcfff: gt */
1604 GEN_FW_RANGE(0xd000, 0xd3ff, 0),
1605 GEN_FW_RANGE(0xd400, 0xdbff, FORCEWAKE_GT),
1606 GEN_FW_RANGE(0xdc00, 0xdcff, FORCEWAKE_RENDER),
1607 GEN_FW_RANGE(0xdd00, 0xde7f, FORCEWAKE_GT), /*
1609 0xde00 - 0xde7f: reserved */
1610 GEN_FW_RANGE(0xde80, 0xe8ff, FORCEWAKE_RENDER), /*
1611 0xde80 - 0xdeff: render
1612 0xdf00 - 0xe1ff: reserved
1613 0xe200 - 0xe7ff: render
1614 0xe800 - 0xe8ff: reserved */
1615 GEN_FW_RANGE(0xe900, 0x11fff, FORCEWAKE_GT), /*
1617 0xea00 - 0xebff: reserved
1619 0x10000 - 0x11fff: reserved */
1620 GEN_FW_RANGE(0x12000, 0x12fff, 0), /*
1621 0x12000 - 0x127ff: always on
1622 0x12800 - 0x12fff: reserved */
1623 GEN_FW_RANGE(0x13000, 0x23fff, FORCEWAKE_GT), /*
1624 0x13000 - 0x135ff: gt
1625 0x13600 - 0x147ff: reserved
1626 0x14800 - 0x153ff: gt
1627 0x15400 - 0x19fff: reserved
1628 0x1a000 - 0x1ffff: gt
1629 0x20000 - 0x21fff: reserved
1630 0x22000 - 0x23fff: gt */
1631 GEN_FW_RANGE(0x24000, 0x2417f, 0), /*
1632 24000 - 0x2407f: always on
1633 24080 - 0x2417f: reserved */
1634 GEN_FW_RANGE(0x24180, 0x3ffff, FORCEWAKE_GT), /*
1635 0x24180 - 0x241ff: gt
1636 0x24200 - 0x251ff: reserved
1637 0x25200 - 0x252ff: gt
1638 0x25300 - 0x25fff: reserved
1639 0x26000 - 0x27fff: gt
1640 0x28000 - 0x2ffff: reserved
1641 0x30000 - 0x3ffff: gt */
1642 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1643 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0), /*
1644 0x1c0000 - 0x1c2bff: VD0
1645 0x1c2c00 - 0x1c2cff: reserved
1646 0x1c2d00 - 0x1c2dff: VD0
1647 0x1c2e00 - 0x1c3eff: reserved
1648 0x1c3f00 - 0x1c3fff: VD0 */
1649 GEN_FW_RANGE(0x1c4000, 0x1cffff, FORCEWAKE_MEDIA_VDBOX1), /*
1650 0x1c4000 - 0x1c6aff: VD1
1651 0x1c6b00 - 0x1c7eff: reserved
1652 0x1c7f00 - 0x1c7fff: VD1
1653 0x1c8000 - 0x1cffff: reserved */
1654 GEN_FW_RANGE(0x1d0000, 0x23ffff, FORCEWAKE_MEDIA_VDBOX2), /*
1655 0x1d0000 - 0x1d2aff: VD2
1656 0x1d2b00 - 0x1d3eff: reserved
1657 0x1d3f00 - 0x1d3fff: VD2
1658 0x1d4000 - 0x23ffff: reserved */
1659 GEN_FW_RANGE(0x240000, 0x3dffff, 0),
1660 GEN_FW_RANGE(0x3e0000, 0x3effff, FORCEWAKE_GT),
1664 ilk_dummy_write(struct intel_uncore *uncore)
1666 /* WaIssueDummyWriteToWakeupFromRC6:ilk Issue a dummy write to wake up
1667 * the chip from rc6 before touching it for real. MI_MODE is masked,
1668 * hence harmless to write 0 into. */
1669 __raw_uncore_write32(uncore, RING_MI_MODE(RENDER_RING_BASE), 0);
1673 __unclaimed_reg_debug(struct intel_uncore *uncore,
1674 const i915_reg_t reg,
1677 if (drm_WARN(&uncore->i915->drm,
1678 check_for_unclaimed_mmio(uncore),
1679 "Unclaimed %s register 0x%x\n",
1680 read ? "read from" : "write to",
1681 i915_mmio_reg_offset(reg)))
1682 /* Only report the first N failures */
1683 uncore->i915->params.mmio_debug--;
1687 __unclaimed_previous_reg_debug(struct intel_uncore *uncore,
1688 const i915_reg_t reg,
1691 if (check_for_unclaimed_mmio(uncore))
1692 drm_dbg(&uncore->i915->drm,
1693 "Unclaimed access detected before %s register 0x%x\n",
1694 read ? "read from" : "write to",
1695 i915_mmio_reg_offset(reg));
1699 unclaimed_reg_debug(struct intel_uncore *uncore,
1700 const i915_reg_t reg,
1704 if (likely(!uncore->i915->params.mmio_debug))
1707 /* interrupts are disabled and re-enabled around uncore->lock usage */
1708 lockdep_assert_held(&uncore->lock);
1711 spin_lock(&uncore->debug->lock);
1712 __unclaimed_previous_reg_debug(uncore, reg, read);
1714 __unclaimed_reg_debug(uncore, reg, read);
1715 spin_unlock(&uncore->debug->lock);
1719 #define __vgpu_read(x) \
1721 vgpu_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1722 u##x val = __raw_uncore_read##x(uncore, reg); \
1723 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1731 #define GEN2_READ_HEADER(x) \
1733 assert_rpm_wakelock_held(uncore->rpm);
1735 #define GEN2_READ_FOOTER \
1736 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1739 #define __gen2_read(x) \
1741 gen2_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1742 GEN2_READ_HEADER(x); \
1743 val = __raw_uncore_read##x(uncore, reg); \
1747 #define __gen5_read(x) \
1749 gen5_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1750 GEN2_READ_HEADER(x); \
1751 ilk_dummy_write(uncore); \
1752 val = __raw_uncore_read##x(uncore, reg); \
1768 #undef GEN2_READ_FOOTER
1769 #undef GEN2_READ_HEADER
1771 #define GEN6_READ_HEADER(x) \
1772 u32 offset = i915_mmio_reg_offset(reg); \
1773 unsigned long irqflags; \
1775 assert_rpm_wakelock_held(uncore->rpm); \
1776 spin_lock_irqsave(&uncore->lock, irqflags); \
1777 unclaimed_reg_debug(uncore, reg, true, true)
1779 #define GEN6_READ_FOOTER \
1780 unclaimed_reg_debug(uncore, reg, true, false); \
1781 spin_unlock_irqrestore(&uncore->lock, irqflags); \
1782 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1785 static noinline void ___force_wake_auto(struct intel_uncore *uncore,
1786 enum forcewake_domains fw_domains)
1788 struct intel_uncore_forcewake_domain *domain;
1791 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
1793 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp)
1794 fw_domain_arm_timer(domain);
1796 fw_domains_get(uncore, fw_domains);
1799 static inline void __force_wake_auto(struct intel_uncore *uncore,
1800 enum forcewake_domains fw_domains)
1802 GEM_BUG_ON(!fw_domains);
1804 /* Turn on all requested but inactive supported forcewake domains. */
1805 fw_domains &= uncore->fw_domains;
1806 fw_domains &= ~uncore->fw_domains_active;
1809 ___force_wake_auto(uncore, fw_domains);
1812 #define __gen_fwtable_read(x) \
1814 fwtable_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) \
1816 enum forcewake_domains fw_engine; \
1817 GEN6_READ_HEADER(x); \
1818 fw_engine = __fwtable_reg_read_fw_domains(uncore, offset); \
1820 __force_wake_auto(uncore, fw_engine); \
1821 val = __raw_uncore_read##x(uncore, reg); \
1825 static enum forcewake_domains
1826 fwtable_reg_read_fw_domains(struct intel_uncore *uncore, i915_reg_t reg) {
1827 return __fwtable_reg_read_fw_domains(uncore, i915_mmio_reg_offset(reg));
1830 __gen_fwtable_read(8)
1831 __gen_fwtable_read(16)
1832 __gen_fwtable_read(32)
1833 __gen_fwtable_read(64)
1835 #undef __gen_fwtable_read
1836 #undef GEN6_READ_FOOTER
1837 #undef GEN6_READ_HEADER
1839 #define GEN2_WRITE_HEADER \
1840 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1841 assert_rpm_wakelock_held(uncore->rpm); \
1843 #define GEN2_WRITE_FOOTER
1845 #define __gen2_write(x) \
1847 gen2_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1848 GEN2_WRITE_HEADER; \
1849 __raw_uncore_write##x(uncore, reg, val); \
1850 GEN2_WRITE_FOOTER; \
1853 #define __gen5_write(x) \
1855 gen5_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1856 GEN2_WRITE_HEADER; \
1857 ilk_dummy_write(uncore); \
1858 __raw_uncore_write##x(uncore, reg, val); \
1859 GEN2_WRITE_FOOTER; \
1872 #undef GEN2_WRITE_FOOTER
1873 #undef GEN2_WRITE_HEADER
1875 #define GEN6_WRITE_HEADER \
1876 u32 offset = i915_mmio_reg_offset(reg); \
1877 unsigned long irqflags; \
1878 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1879 assert_rpm_wakelock_held(uncore->rpm); \
1880 spin_lock_irqsave(&uncore->lock, irqflags); \
1881 unclaimed_reg_debug(uncore, reg, false, true)
1883 #define GEN6_WRITE_FOOTER \
1884 unclaimed_reg_debug(uncore, reg, false, false); \
1885 spin_unlock_irqrestore(&uncore->lock, irqflags)
1887 #define __gen6_write(x) \
1889 gen6_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1890 GEN6_WRITE_HEADER; \
1891 if (NEEDS_FORCE_WAKE(offset)) \
1892 __gen6_gt_wait_for_fifo(uncore); \
1893 __raw_uncore_write##x(uncore, reg, val); \
1894 GEN6_WRITE_FOOTER; \
1900 #define __gen_fwtable_write(x) \
1902 fwtable_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1903 enum forcewake_domains fw_engine; \
1904 GEN6_WRITE_HEADER; \
1905 fw_engine = __fwtable_reg_write_fw_domains(uncore, offset); \
1907 __force_wake_auto(uncore, fw_engine); \
1908 __raw_uncore_write##x(uncore, reg, val); \
1909 GEN6_WRITE_FOOTER; \
1912 static enum forcewake_domains
1913 fwtable_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg)
1915 return __fwtable_reg_write_fw_domains(uncore, i915_mmio_reg_offset(reg));
1918 __gen_fwtable_write(8)
1919 __gen_fwtable_write(16)
1920 __gen_fwtable_write(32)
1922 #undef __gen_fwtable_write
1923 #undef GEN6_WRITE_FOOTER
1924 #undef GEN6_WRITE_HEADER
1926 #define __vgpu_write(x) \
1928 vgpu_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1929 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1930 __raw_uncore_write##x(uncore, reg, val); \
1936 #define ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, x) \
1938 (uncore)->funcs.mmio_writeb = x##_write8; \
1939 (uncore)->funcs.mmio_writew = x##_write16; \
1940 (uncore)->funcs.mmio_writel = x##_write32; \
1943 #define ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x) \
1945 (uncore)->funcs.mmio_readb = x##_read8; \
1946 (uncore)->funcs.mmio_readw = x##_read16; \
1947 (uncore)->funcs.mmio_readl = x##_read32; \
1948 (uncore)->funcs.mmio_readq = x##_read64; \
1951 #define ASSIGN_WRITE_MMIO_VFUNCS(uncore, x) \
1953 ASSIGN_RAW_WRITE_MMIO_VFUNCS((uncore), x); \
1954 (uncore)->funcs.write_fw_domains = x##_reg_write_fw_domains; \
1957 #define ASSIGN_READ_MMIO_VFUNCS(uncore, x) \
1959 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x); \
1960 (uncore)->funcs.read_fw_domains = x##_reg_read_fw_domains; \
1963 static int __fw_domain_init(struct intel_uncore *uncore,
1964 enum forcewake_domain_id domain_id,
1968 struct intel_uncore_forcewake_domain *d;
1970 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
1971 GEM_BUG_ON(uncore->fw_domain[domain_id]);
1973 if (i915_inject_probe_failure(uncore->i915))
1976 d = kzalloc(sizeof(*d), GFP_KERNEL);
1980 drm_WARN_ON(&uncore->i915->drm, !i915_mmio_reg_valid(reg_set));
1981 drm_WARN_ON(&uncore->i915->drm, !i915_mmio_reg_valid(reg_ack));
1985 d->reg_set = uncore->regs + i915_mmio_reg_offset(reg_set);
1986 d->reg_ack = uncore->regs + i915_mmio_reg_offset(reg_ack);
1990 BUILD_BUG_ON(FORCEWAKE_RENDER != (1 << FW_DOMAIN_ID_RENDER));
1991 BUILD_BUG_ON(FORCEWAKE_GT != (1 << FW_DOMAIN_ID_GT));
1992 BUILD_BUG_ON(FORCEWAKE_MEDIA != (1 << FW_DOMAIN_ID_MEDIA));
1993 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX0));
1994 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX1));
1995 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX2 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX2));
1996 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX3 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX3));
1997 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX4 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX4));
1998 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX5 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX5));
1999 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX6 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX6));
2000 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX7 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX7));
2001 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX0));
2002 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX1));
2003 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX2 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX2));
2004 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX3 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX3));
2006 d->mask = BIT(domain_id);
2008 hrtimer_init(&d->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2009 d->timer.function = intel_uncore_fw_release_timer;
2011 uncore->fw_domains |= BIT(domain_id);
2015 uncore->fw_domain[domain_id] = d;
2020 static void fw_domain_fini(struct intel_uncore *uncore,
2021 enum forcewake_domain_id domain_id)
2023 struct intel_uncore_forcewake_domain *d;
2025 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
2027 d = fetch_and_zero(&uncore->fw_domain[domain_id]);
2031 uncore->fw_domains &= ~BIT(domain_id);
2032 drm_WARN_ON(&uncore->i915->drm, d->wake_count);
2033 drm_WARN_ON(&uncore->i915->drm, hrtimer_cancel(&d->timer));
2037 static void intel_uncore_fw_domains_fini(struct intel_uncore *uncore)
2039 struct intel_uncore_forcewake_domain *d;
2042 for_each_fw_domain(d, uncore, tmp)
2043 fw_domain_fini(uncore, d->id);
2046 static const struct intel_uncore_fw_get uncore_get_fallback = {
2047 .force_wake_get = fw_domains_get_with_fallback
2050 static const struct intel_uncore_fw_get uncore_get_normal = {
2051 .force_wake_get = fw_domains_get_normal,
2054 static const struct intel_uncore_fw_get uncore_get_thread_status = {
2055 .force_wake_get = fw_domains_get_with_thread_status
2058 static int intel_uncore_fw_domains_init(struct intel_uncore *uncore)
2060 struct drm_i915_private *i915 = uncore->i915;
2063 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
2065 #define fw_domain_init(uncore__, id__, set__, ack__) \
2066 (ret ?: (ret = __fw_domain_init((uncore__), (id__), (set__), (ack__))))
2068 if (GRAPHICS_VER(i915) >= 11) {
2069 /* we'll prune the domains of missing engines later */
2070 intel_engine_mask_t emask = INTEL_INFO(i915)->platform_engine_mask;
2073 uncore->fw_get_funcs = &uncore_get_fallback;
2074 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2075 FORCEWAKE_RENDER_GEN9,
2076 FORCEWAKE_ACK_RENDER_GEN9);
2077 fw_domain_init(uncore, FW_DOMAIN_ID_GT,
2079 FORCEWAKE_ACK_GT_GEN9);
2081 for (i = 0; i < I915_MAX_VCS; i++) {
2082 if (!__HAS_ENGINE(emask, _VCS(i)))
2085 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VDBOX0 + i,
2086 FORCEWAKE_MEDIA_VDBOX_GEN11(i),
2087 FORCEWAKE_ACK_MEDIA_VDBOX_GEN11(i));
2089 for (i = 0; i < I915_MAX_VECS; i++) {
2090 if (!__HAS_ENGINE(emask, _VECS(i)))
2093 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VEBOX0 + i,
2094 FORCEWAKE_MEDIA_VEBOX_GEN11(i),
2095 FORCEWAKE_ACK_MEDIA_VEBOX_GEN11(i));
2097 } else if (IS_GRAPHICS_VER(i915, 9, 10)) {
2098 uncore->fw_get_funcs = &uncore_get_fallback;
2099 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2100 FORCEWAKE_RENDER_GEN9,
2101 FORCEWAKE_ACK_RENDER_GEN9);
2102 fw_domain_init(uncore, FW_DOMAIN_ID_GT,
2104 FORCEWAKE_ACK_GT_GEN9);
2105 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
2106 FORCEWAKE_MEDIA_GEN9, FORCEWAKE_ACK_MEDIA_GEN9);
2107 } else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
2108 uncore->fw_get_funcs = &uncore_get_normal;
2109 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2110 FORCEWAKE_VLV, FORCEWAKE_ACK_VLV);
2111 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
2112 FORCEWAKE_MEDIA_VLV, FORCEWAKE_ACK_MEDIA_VLV);
2113 } else if (IS_HASWELL(i915) || IS_BROADWELL(i915)) {
2114 uncore->fw_get_funcs = &uncore_get_thread_status;
2115 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2116 FORCEWAKE_MT, FORCEWAKE_ACK_HSW);
2117 } else if (IS_IVYBRIDGE(i915)) {
2120 /* IVB configs may use multi-threaded forcewake */
2122 /* A small trick here - if the bios hasn't configured
2123 * MT forcewake, and if the device is in RC6, then
2124 * force_wake_mt_get will not wake the device and the
2125 * ECOBUS read will return zero. Which will be
2126 * (correctly) interpreted by the test below as MT
2127 * forcewake being disabled.
2129 uncore->fw_get_funcs = &uncore_get_thread_status;
2131 /* We need to init first for ECOBUS access and then
2132 * determine later if we want to reinit, in case of MT access is
2133 * not working. In this stage we don't know which flavour this
2134 * ivb is, so it is better to reset also the gen6 fw registers
2135 * before the ecobus check.
2138 __raw_uncore_write32(uncore, FORCEWAKE, 0);
2139 __raw_posting_read(uncore, ECOBUS);
2141 ret = __fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2142 FORCEWAKE_MT, FORCEWAKE_MT_ACK);
2146 spin_lock_irq(&uncore->lock);
2147 fw_domains_get_with_thread_status(uncore, FORCEWAKE_RENDER);
2148 ecobus = __raw_uncore_read32(uncore, ECOBUS);
2149 fw_domains_put(uncore, FORCEWAKE_RENDER);
2150 spin_unlock_irq(&uncore->lock);
2152 if (!(ecobus & FORCEWAKE_MT_ENABLE)) {
2153 drm_info(&i915->drm, "No MT forcewake available on Ivybridge, this can result in issues\n");
2154 drm_info(&i915->drm, "when using vblank-synced partial screen updates.\n");
2155 fw_domain_fini(uncore, FW_DOMAIN_ID_RENDER);
2156 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2157 FORCEWAKE, FORCEWAKE_ACK);
2159 } else if (GRAPHICS_VER(i915) == 6) {
2160 uncore->fw_get_funcs = &uncore_get_thread_status;
2161 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
2162 FORCEWAKE, FORCEWAKE_ACK);
2165 #undef fw_domain_init
2167 /* All future platforms are expected to require complex power gating */
2168 drm_WARN_ON(&i915->drm, !ret && uncore->fw_domains == 0);
2172 intel_uncore_fw_domains_fini(uncore);
2177 #define ASSIGN_FW_DOMAINS_TABLE(uncore, d) \
2179 (uncore)->fw_domains_table = \
2180 (struct intel_forcewake_range *)(d); \
2181 (uncore)->fw_domains_table_entries = ARRAY_SIZE((d)); \
2184 #define ASSIGN_SHADOW_TABLE(uncore, d) \
2186 (uncore)->shadowed_reg_table = d; \
2187 (uncore)->shadowed_reg_table_entries = ARRAY_SIZE((d)); \
2190 static int i915_pmic_bus_access_notifier(struct notifier_block *nb,
2191 unsigned long action, void *data)
2193 struct intel_uncore *uncore = container_of(nb,
2194 struct intel_uncore, pmic_bus_access_nb);
2197 case MBI_PMIC_BUS_ACCESS_BEGIN:
2199 * forcewake all now to make sure that we don't need to do a
2200 * forcewake later which on systems where this notifier gets
2201 * called requires the punit to access to the shared pmic i2c
2202 * bus, which will be busy after this notification, leading to:
2203 * "render: timed out waiting for forcewake ack request."
2206 * The notifier is unregistered during intel_runtime_suspend(),
2207 * so it's ok to access the HW here without holding a RPM
2208 * wake reference -> disable wakeref asserts for the time of
2211 disable_rpm_wakeref_asserts(uncore->rpm);
2212 intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
2213 enable_rpm_wakeref_asserts(uncore->rpm);
2215 case MBI_PMIC_BUS_ACCESS_END:
2216 intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
2223 int intel_uncore_setup_mmio(struct intel_uncore *uncore, phys_addr_t phys_addr)
2225 struct drm_i915_private *i915 = uncore->i915;
2229 * Before gen4, the registers and the GTT are behind different BARs.
2230 * However, from gen4 onwards, the registers and the GTT are shared
2231 * in the same BAR, so we want to restrict this ioremap from
2232 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
2233 * the register BAR remains the same size for all the earlier
2234 * generations up to Ironlake.
2235 * For dgfx chips register range is expanded to 4MB.
2237 if (GRAPHICS_VER(i915) < 5)
2238 mmio_size = 512 * 1024;
2239 else if (IS_DGFX(i915))
2240 mmio_size = 4 * 1024 * 1024;
2242 mmio_size = 2 * 1024 * 1024;
2244 uncore->regs = ioremap(phys_addr, mmio_size);
2245 if (uncore->regs == NULL) {
2246 drm_err(&i915->drm, "failed to map registers\n");
2253 void intel_uncore_cleanup_mmio(struct intel_uncore *uncore)
2255 iounmap(uncore->regs);
2258 void intel_uncore_init_early(struct intel_uncore *uncore,
2259 struct intel_gt *gt)
2261 spin_lock_init(&uncore->lock);
2262 uncore->i915 = gt->i915;
2264 uncore->rpm = >->i915->runtime_pm;
2265 uncore->debug = >->i915->mmio_debug;
2268 static void uncore_raw_init(struct intel_uncore *uncore)
2270 GEM_BUG_ON(intel_uncore_has_forcewake(uncore));
2272 if (intel_vgpu_active(uncore->i915)) {
2273 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, vgpu);
2274 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, vgpu);
2275 } else if (GRAPHICS_VER(uncore->i915) == 5) {
2276 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen5);
2277 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen5);
2279 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen2);
2280 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen2);
2284 static int uncore_forcewake_init(struct intel_uncore *uncore)
2286 struct drm_i915_private *i915 = uncore->i915;
2289 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
2291 ret = intel_uncore_fw_domains_init(uncore);
2294 forcewake_early_sanitize(uncore, 0);
2296 ASSIGN_READ_MMIO_VFUNCS(uncore, fwtable);
2298 if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60)) {
2299 ASSIGN_FW_DOMAINS_TABLE(uncore, __pvc_fw_ranges);
2300 ASSIGN_SHADOW_TABLE(uncore, pvc_shadowed_regs);
2301 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2302 } else if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 55)) {
2303 ASSIGN_FW_DOMAINS_TABLE(uncore, __dg2_fw_ranges);
2304 ASSIGN_SHADOW_TABLE(uncore, dg2_shadowed_regs);
2305 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2306 } else if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 50)) {
2307 ASSIGN_FW_DOMAINS_TABLE(uncore, __xehp_fw_ranges);
2308 ASSIGN_SHADOW_TABLE(uncore, gen12_shadowed_regs);
2309 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2310 } else if (GRAPHICS_VER(i915) >= 12) {
2311 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen12_fw_ranges);
2312 ASSIGN_SHADOW_TABLE(uncore, gen12_shadowed_regs);
2313 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2314 } else if (GRAPHICS_VER(i915) == 11) {
2315 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen11_fw_ranges);
2316 ASSIGN_SHADOW_TABLE(uncore, gen11_shadowed_regs);
2317 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2318 } else if (IS_GRAPHICS_VER(i915, 9, 10)) {
2319 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen9_fw_ranges);
2320 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2321 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2322 } else if (IS_CHERRYVIEW(i915)) {
2323 ASSIGN_FW_DOMAINS_TABLE(uncore, __chv_fw_ranges);
2324 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2325 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2326 } else if (GRAPHICS_VER(i915) == 8) {
2327 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen6_fw_ranges);
2328 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2329 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2330 } else if (IS_VALLEYVIEW(i915)) {
2331 ASSIGN_FW_DOMAINS_TABLE(uncore, __vlv_fw_ranges);
2332 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen6);
2333 } else if (IS_GRAPHICS_VER(i915, 6, 7)) {
2334 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen6_fw_ranges);
2335 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen6);
2338 uncore->pmic_bus_access_nb.notifier_call = i915_pmic_bus_access_notifier;
2339 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
2344 int intel_uncore_init_mmio(struct intel_uncore *uncore)
2346 struct drm_i915_private *i915 = uncore->i915;
2350 * The boot firmware initializes local memory and assesses its health.
2351 * If memory training fails, the punit will have been instructed to
2352 * keep the GT powered down; we won't be able to communicate with it
2353 * and we should not continue with driver initialization.
2355 if (IS_DGFX(i915) &&
2356 !(__raw_uncore_read32(uncore, GU_CNTL) & LMEM_INIT)) {
2357 drm_err(&i915->drm, "LMEM not initialized by firmware\n");
2361 if (GRAPHICS_VER(i915) > 5 && !intel_vgpu_active(i915))
2362 uncore->flags |= UNCORE_HAS_FORCEWAKE;
2364 if (!intel_uncore_has_forcewake(uncore)) {
2365 uncore_raw_init(uncore);
2367 ret = uncore_forcewake_init(uncore);
2372 /* make sure fw funcs are set if and only if we have fw*/
2373 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->fw_get_funcs);
2374 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.read_fw_domains);
2375 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.write_fw_domains);
2377 if (HAS_FPGA_DBG_UNCLAIMED(i915))
2378 uncore->flags |= UNCORE_HAS_FPGA_DBG_UNCLAIMED;
2380 if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
2381 uncore->flags |= UNCORE_HAS_DBG_UNCLAIMED;
2383 if (IS_GRAPHICS_VER(i915, 6, 7))
2384 uncore->flags |= UNCORE_HAS_FIFO;
2386 /* clear out unclaimed reg detection bit */
2387 if (intel_uncore_unclaimed_mmio(uncore))
2388 drm_dbg(&i915->drm, "unclaimed mmio detected on uncore init, clearing\n");
2394 * We might have detected that some engines are fused off after we initialized
2395 * the forcewake domains. Prune them, to make sure they only reference existing
2398 void intel_uncore_prune_engine_fw_domains(struct intel_uncore *uncore,
2399 struct intel_gt *gt)
2401 enum forcewake_domains fw_domains = uncore->fw_domains;
2402 enum forcewake_domain_id domain_id;
2405 if (!intel_uncore_has_forcewake(uncore) || GRAPHICS_VER(uncore->i915) < 11)
2408 for (i = 0; i < I915_MAX_VCS; i++) {
2409 domain_id = FW_DOMAIN_ID_MEDIA_VDBOX0 + i;
2411 if (HAS_ENGINE(gt, _VCS(i)))
2415 * Starting with XeHP, the power well for an even-numbered
2416 * VDBOX is also used for shared units within the
2417 * media slice such as SFC. So even if the engine
2418 * itself is fused off, we still need to initialize
2419 * the forcewake domain if any of the other engines
2420 * in the same media slice are present.
2422 if (GRAPHICS_VER_FULL(uncore->i915) >= IP_VER(12, 50) && i % 2 == 0) {
2423 if ((i + 1 < I915_MAX_VCS) && HAS_ENGINE(gt, _VCS(i + 1)))
2426 if (HAS_ENGINE(gt, _VECS(i / 2)))
2430 if (fw_domains & BIT(domain_id))
2431 fw_domain_fini(uncore, domain_id);
2434 for (i = 0; i < I915_MAX_VECS; i++) {
2435 domain_id = FW_DOMAIN_ID_MEDIA_VEBOX0 + i;
2437 if (HAS_ENGINE(gt, _VECS(i)))
2440 if (fw_domains & BIT(domain_id))
2441 fw_domain_fini(uncore, domain_id);
2445 void intel_uncore_fini_mmio(struct intel_uncore *uncore)
2447 if (intel_uncore_has_forcewake(uncore)) {
2448 iosf_mbi_punit_acquire();
2449 iosf_mbi_unregister_pmic_bus_access_notifier_unlocked(
2450 &uncore->pmic_bus_access_nb);
2451 intel_uncore_forcewake_reset(uncore);
2452 intel_uncore_fw_domains_fini(uncore);
2453 iosf_mbi_punit_release();
2458 * __intel_wait_for_register_fw - wait until register matches expected state
2459 * @uncore: the struct intel_uncore
2460 * @reg: the register to read
2461 * @mask: mask to apply to register value
2462 * @value: expected value
2463 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
2464 * @slow_timeout_ms: slow timeout in millisecond
2465 * @out_value: optional placeholder to hold registry value
2467 * This routine waits until the target register @reg contains the expected
2468 * @value after applying the @mask, i.e. it waits until ::
2470 * (intel_uncore_read_fw(uncore, reg) & mask) == value
2472 * Otherwise, the wait will timeout after @slow_timeout_ms milliseconds.
2473 * For atomic context @slow_timeout_ms must be zero and @fast_timeout_us
2474 * must be not larger than 20,0000 microseconds.
2476 * Note that this routine assumes the caller holds forcewake asserted, it is
2477 * not suitable for very long waits. See intel_wait_for_register() if you
2478 * wish to wait without holding forcewake for the duration (i.e. you expect
2479 * the wait to be slow).
2481 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
2483 int __intel_wait_for_register_fw(struct intel_uncore *uncore,
2487 unsigned int fast_timeout_us,
2488 unsigned int slow_timeout_ms,
2492 #define done (((reg_value = intel_uncore_read_fw(uncore, reg)) & mask) == value)
2495 /* Catch any overuse of this function */
2496 might_sleep_if(slow_timeout_ms);
2497 GEM_BUG_ON(fast_timeout_us > 20000);
2498 GEM_BUG_ON(!fast_timeout_us && !slow_timeout_ms);
2501 if (fast_timeout_us && fast_timeout_us <= 20000)
2502 ret = _wait_for_atomic(done, fast_timeout_us, 0);
2503 if (ret && slow_timeout_ms)
2504 ret = wait_for(done, slow_timeout_ms);
2507 *out_value = reg_value;
2514 * __intel_wait_for_register - wait until register matches expected state
2515 * @uncore: the struct intel_uncore
2516 * @reg: the register to read
2517 * @mask: mask to apply to register value
2518 * @value: expected value
2519 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
2520 * @slow_timeout_ms: slow timeout in millisecond
2521 * @out_value: optional placeholder to hold registry value
2523 * This routine waits until the target register @reg contains the expected
2524 * @value after applying the @mask, i.e. it waits until ::
2526 * (intel_uncore_read(uncore, reg) & mask) == value
2528 * Otherwise, the wait will timeout after @timeout_ms milliseconds.
2530 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
2532 int __intel_wait_for_register(struct intel_uncore *uncore,
2536 unsigned int fast_timeout_us,
2537 unsigned int slow_timeout_ms,
2541 intel_uncore_forcewake_for_reg(uncore, reg, FW_REG_READ);
2545 might_sleep_if(slow_timeout_ms);
2547 spin_lock_irq(&uncore->lock);
2548 intel_uncore_forcewake_get__locked(uncore, fw);
2550 ret = __intel_wait_for_register_fw(uncore,
2552 fast_timeout_us, 0, ®_value);
2554 intel_uncore_forcewake_put__locked(uncore, fw);
2555 spin_unlock_irq(&uncore->lock);
2557 if (ret && slow_timeout_ms)
2558 ret = __wait_for(reg_value = intel_uncore_read_notrace(uncore,
2560 (reg_value & mask) == value,
2561 slow_timeout_ms * 1000, 10, 1000);
2563 /* just trace the final value */
2564 trace_i915_reg_rw(false, reg, reg_value, sizeof(reg_value), true);
2567 *out_value = reg_value;
2572 bool intel_uncore_unclaimed_mmio(struct intel_uncore *uncore)
2576 spin_lock_irq(&uncore->debug->lock);
2577 ret = check_for_unclaimed_mmio(uncore);
2578 spin_unlock_irq(&uncore->debug->lock);
2584 intel_uncore_arm_unclaimed_mmio_detection(struct intel_uncore *uncore)
2588 spin_lock_irq(&uncore->debug->lock);
2590 if (unlikely(uncore->debug->unclaimed_mmio_check <= 0))
2593 if (unlikely(check_for_unclaimed_mmio(uncore))) {
2594 if (!uncore->i915->params.mmio_debug) {
2595 drm_dbg(&uncore->i915->drm,
2596 "Unclaimed register detected, "
2597 "enabling oneshot unclaimed register reporting. "
2598 "Please use i915.mmio_debug=N for more information.\n");
2599 uncore->i915->params.mmio_debug++;
2601 uncore->debug->unclaimed_mmio_check--;
2606 spin_unlock_irq(&uncore->debug->lock);
2612 * intel_uncore_forcewake_for_reg - which forcewake domains are needed to access
2614 * @uncore: pointer to struct intel_uncore
2615 * @reg: register in question
2616 * @op: operation bitmask of FW_REG_READ and/or FW_REG_WRITE
2618 * Returns a set of forcewake domains required to be taken with for example
2619 * intel_uncore_forcewake_get for the specified register to be accessible in the
2620 * specified mode (read, write or read/write) with raw mmio accessors.
2622 * NOTE: On Gen6 and Gen7 write forcewake domain (FORCEWAKE_RENDER) requires the
2623 * callers to do FIFO management on their own or risk losing writes.
2625 enum forcewake_domains
2626 intel_uncore_forcewake_for_reg(struct intel_uncore *uncore,
2627 i915_reg_t reg, unsigned int op)
2629 enum forcewake_domains fw_domains = 0;
2631 drm_WARN_ON(&uncore->i915->drm, !op);
2633 if (!intel_uncore_has_forcewake(uncore))
2636 if (op & FW_REG_READ)
2637 fw_domains = uncore->funcs.read_fw_domains(uncore, reg);
2639 if (op & FW_REG_WRITE)
2640 fw_domains |= uncore->funcs.write_fw_domains(uncore, reg);
2642 drm_WARN_ON(&uncore->i915->drm, fw_domains & ~uncore->fw_domains);
2647 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2648 #include "selftests/mock_uncore.c"
2649 #include "selftests/intel_uncore.c"