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;
941 #define GEN_FW_RANGE(s, e, d) \
942 { .start = (s), .end = (e), .domains = (d) }
944 /* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
945 static const struct intel_forcewake_range __vlv_fw_ranges[] = {
946 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
947 GEN_FW_RANGE(0x5000, 0x7fff, FORCEWAKE_RENDER),
948 GEN_FW_RANGE(0xb000, 0x11fff, FORCEWAKE_RENDER),
949 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
950 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_MEDIA),
951 GEN_FW_RANGE(0x2e000, 0x2ffff, FORCEWAKE_RENDER),
952 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
955 #define __fwtable_reg_read_fw_domains(uncore, offset) \
957 enum forcewake_domains __fwd = 0; \
958 if (NEEDS_FORCE_WAKE((offset))) \
959 __fwd = find_fw_domain(uncore, offset); \
963 /* *Must* be sorted by offset! See intel_shadow_table_check(). */
964 static const struct i915_range gen8_shadowed_regs[] = {
965 { .start = 0x2030, .end = 0x2030 },
966 { .start = 0xA008, .end = 0xA00C },
967 { .start = 0x12030, .end = 0x12030 },
968 { .start = 0x1a030, .end = 0x1a030 },
969 { .start = 0x22030, .end = 0x22030 },
970 /* TODO: Other registers are not yet used */
973 static const struct i915_range gen11_shadowed_regs[] = {
974 { .start = 0x2030, .end = 0x2030 },
975 { .start = 0x2550, .end = 0x2550 },
976 { .start = 0xA008, .end = 0xA00C },
977 { .start = 0x22030, .end = 0x22030 },
978 { .start = 0x22230, .end = 0x22230 },
979 { .start = 0x22510, .end = 0x22550 },
980 { .start = 0x1C0030, .end = 0x1C0030 },
981 { .start = 0x1C0230, .end = 0x1C0230 },
982 { .start = 0x1C0510, .end = 0x1C0550 },
983 { .start = 0x1C4030, .end = 0x1C4030 },
984 { .start = 0x1C4230, .end = 0x1C4230 },
985 { .start = 0x1C4510, .end = 0x1C4550 },
986 { .start = 0x1C8030, .end = 0x1C8030 },
987 { .start = 0x1C8230, .end = 0x1C8230 },
988 { .start = 0x1C8510, .end = 0x1C8550 },
989 { .start = 0x1D0030, .end = 0x1D0030 },
990 { .start = 0x1D0230, .end = 0x1D0230 },
991 { .start = 0x1D0510, .end = 0x1D0550 },
992 { .start = 0x1D4030, .end = 0x1D4030 },
993 { .start = 0x1D4230, .end = 0x1D4230 },
994 { .start = 0x1D4510, .end = 0x1D4550 },
995 { .start = 0x1D8030, .end = 0x1D8030 },
996 { .start = 0x1D8230, .end = 0x1D8230 },
997 { .start = 0x1D8510, .end = 0x1D8550 },
1000 static const struct i915_range gen12_shadowed_regs[] = {
1001 { .start = 0x2030, .end = 0x2030 },
1002 { .start = 0x2510, .end = 0x2550 },
1003 { .start = 0xA008, .end = 0xA00C },
1004 { .start = 0xA188, .end = 0xA188 },
1005 { .start = 0xA278, .end = 0xA278 },
1006 { .start = 0xA540, .end = 0xA56C },
1007 { .start = 0xC4C8, .end = 0xC4C8 },
1008 { .start = 0xC4D4, .end = 0xC4D4 },
1009 { .start = 0xC600, .end = 0xC600 },
1010 { .start = 0x22030, .end = 0x22030 },
1011 { .start = 0x22510, .end = 0x22550 },
1012 { .start = 0x1C0030, .end = 0x1C0030 },
1013 { .start = 0x1C0510, .end = 0x1C0550 },
1014 { .start = 0x1C4030, .end = 0x1C4030 },
1015 { .start = 0x1C4510, .end = 0x1C4550 },
1016 { .start = 0x1C8030, .end = 0x1C8030 },
1017 { .start = 0x1C8510, .end = 0x1C8550 },
1018 { .start = 0x1D0030, .end = 0x1D0030 },
1019 { .start = 0x1D0510, .end = 0x1D0550 },
1020 { .start = 0x1D4030, .end = 0x1D4030 },
1021 { .start = 0x1D4510, .end = 0x1D4550 },
1022 { .start = 0x1D8030, .end = 0x1D8030 },
1023 { .start = 0x1D8510, .end = 0x1D8550 },
1026 * The rest of these ranges are specific to Xe_HP and beyond, but
1027 * are reserved/unused ranges on earlier gen12 platforms, so they can
1028 * be safely added to the gen12 table.
1030 { .start = 0x1E0030, .end = 0x1E0030 },
1031 { .start = 0x1E0510, .end = 0x1E0550 },
1032 { .start = 0x1E4030, .end = 0x1E4030 },
1033 { .start = 0x1E4510, .end = 0x1E4550 },
1034 { .start = 0x1E8030, .end = 0x1E8030 },
1035 { .start = 0x1E8510, .end = 0x1E8550 },
1036 { .start = 0x1F0030, .end = 0x1F0030 },
1037 { .start = 0x1F0510, .end = 0x1F0550 },
1038 { .start = 0x1F4030, .end = 0x1F4030 },
1039 { .start = 0x1F4510, .end = 0x1F4550 },
1040 { .start = 0x1F8030, .end = 0x1F8030 },
1041 { .start = 0x1F8510, .end = 0x1F8550 },
1044 static const struct i915_range dg2_shadowed_regs[] = {
1045 { .start = 0x2030, .end = 0x2030 },
1046 { .start = 0x2510, .end = 0x2550 },
1047 { .start = 0xA008, .end = 0xA00C },
1048 { .start = 0xA188, .end = 0xA188 },
1049 { .start = 0xA278, .end = 0xA278 },
1050 { .start = 0xA540, .end = 0xA56C },
1051 { .start = 0xC4C8, .end = 0xC4C8 },
1052 { .start = 0xC4E0, .end = 0xC4E0 },
1053 { .start = 0xC600, .end = 0xC600 },
1054 { .start = 0xC658, .end = 0xC658 },
1055 { .start = 0x22030, .end = 0x22030 },
1056 { .start = 0x22510, .end = 0x22550 },
1057 { .start = 0x1C0030, .end = 0x1C0030 },
1058 { .start = 0x1C0510, .end = 0x1C0550 },
1059 { .start = 0x1C4030, .end = 0x1C4030 },
1060 { .start = 0x1C4510, .end = 0x1C4550 },
1061 { .start = 0x1C8030, .end = 0x1C8030 },
1062 { .start = 0x1C8510, .end = 0x1C8550 },
1063 { .start = 0x1D0030, .end = 0x1D0030 },
1064 { .start = 0x1D0510, .end = 0x1D0550 },
1065 { .start = 0x1D4030, .end = 0x1D4030 },
1066 { .start = 0x1D4510, .end = 0x1D4550 },
1067 { .start = 0x1D8030, .end = 0x1D8030 },
1068 { .start = 0x1D8510, .end = 0x1D8550 },
1069 { .start = 0x1E0030, .end = 0x1E0030 },
1070 { .start = 0x1E0510, .end = 0x1E0550 },
1071 { .start = 0x1E4030, .end = 0x1E4030 },
1072 { .start = 0x1E4510, .end = 0x1E4550 },
1073 { .start = 0x1E8030, .end = 0x1E8030 },
1074 { .start = 0x1E8510, .end = 0x1E8550 },
1075 { .start = 0x1F0030, .end = 0x1F0030 },
1076 { .start = 0x1F0510, .end = 0x1F0550 },
1077 { .start = 0x1F4030, .end = 0x1F4030 },
1078 { .start = 0x1F4510, .end = 0x1F4550 },
1079 { .start = 0x1F8030, .end = 0x1F8030 },
1080 { .start = 0x1F8510, .end = 0x1F8550 },
1083 static int mmio_range_cmp(u32 key, const struct i915_range *range)
1085 if (key < range->start)
1087 else if (key > range->end)
1093 static bool is_shadowed(struct intel_uncore *uncore, u32 offset)
1095 if (drm_WARN_ON(&uncore->i915->drm, !uncore->shadowed_reg_table))
1098 return BSEARCH(offset,
1099 uncore->shadowed_reg_table,
1100 uncore->shadowed_reg_table_entries,
1104 static enum forcewake_domains
1105 gen6_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg)
1107 return FORCEWAKE_RENDER;
1110 static const struct intel_forcewake_range __gen6_fw_ranges[] = {
1111 GEN_FW_RANGE(0x0, 0x3ffff, FORCEWAKE_RENDER),
1114 /* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
1115 static const struct intel_forcewake_range __chv_fw_ranges[] = {
1116 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
1117 GEN_FW_RANGE(0x4000, 0x4fff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1118 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1119 GEN_FW_RANGE(0x8000, 0x82ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1120 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1121 GEN_FW_RANGE(0x8500, 0x85ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1122 GEN_FW_RANGE(0x8800, 0x88ff, FORCEWAKE_MEDIA),
1123 GEN_FW_RANGE(0x9000, 0xafff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1124 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1125 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
1126 GEN_FW_RANGE(0xe000, 0xe7ff, FORCEWAKE_RENDER),
1127 GEN_FW_RANGE(0xf000, 0xffff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1128 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1129 GEN_FW_RANGE(0x1a000, 0x1bfff, FORCEWAKE_MEDIA),
1130 GEN_FW_RANGE(0x1e800, 0x1e9ff, FORCEWAKE_MEDIA),
1131 GEN_FW_RANGE(0x30000, 0x37fff, FORCEWAKE_MEDIA),
1134 #define __fwtable_reg_write_fw_domains(uncore, offset) \
1136 enum forcewake_domains __fwd = 0; \
1137 const u32 __offset = (offset); \
1138 if (NEEDS_FORCE_WAKE((__offset)) && !is_shadowed(uncore, __offset)) \
1139 __fwd = find_fw_domain(uncore, __offset); \
1143 /* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
1144 static const struct intel_forcewake_range __gen9_fw_ranges[] = {
1145 GEN_FW_RANGE(0x0, 0xaff, FORCEWAKE_GT),
1146 GEN_FW_RANGE(0xb00, 0x1fff, 0), /* uncore range */
1147 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1148 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_GT),
1149 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1150 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT),
1151 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1152 GEN_FW_RANGE(0x8000, 0x812f, FORCEWAKE_GT),
1153 GEN_FW_RANGE(0x8130, 0x813f, FORCEWAKE_MEDIA),
1154 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1155 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_GT),
1156 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1157 GEN_FW_RANGE(0x8500, 0x87ff, FORCEWAKE_GT),
1158 GEN_FW_RANGE(0x8800, 0x89ff, FORCEWAKE_MEDIA),
1159 GEN_FW_RANGE(0x8a00, 0x8bff, FORCEWAKE_GT),
1160 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1161 GEN_FW_RANGE(0x8d00, 0x93ff, FORCEWAKE_GT),
1162 GEN_FW_RANGE(0x9400, 0x97ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
1163 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_GT),
1164 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1165 GEN_FW_RANGE(0xb480, 0xcfff, FORCEWAKE_GT),
1166 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
1167 GEN_FW_RANGE(0xd800, 0xdfff, FORCEWAKE_GT),
1168 GEN_FW_RANGE(0xe000, 0xe8ff, FORCEWAKE_RENDER),
1169 GEN_FW_RANGE(0xe900, 0x11fff, FORCEWAKE_GT),
1170 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1171 GEN_FW_RANGE(0x14000, 0x19fff, FORCEWAKE_GT),
1172 GEN_FW_RANGE(0x1a000, 0x1e9ff, FORCEWAKE_MEDIA),
1173 GEN_FW_RANGE(0x1ea00, 0x243ff, FORCEWAKE_GT),
1174 GEN_FW_RANGE(0x24400, 0x247ff, FORCEWAKE_RENDER),
1175 GEN_FW_RANGE(0x24800, 0x2ffff, FORCEWAKE_GT),
1176 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
1179 /* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
1180 static const struct intel_forcewake_range __gen11_fw_ranges[] = {
1181 GEN_FW_RANGE(0x0, 0x1fff, 0), /* uncore range */
1182 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1183 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_GT),
1184 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1185 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT),
1186 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1187 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT),
1188 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1189 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_GT),
1190 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1191 GEN_FW_RANGE(0x8500, 0x87ff, FORCEWAKE_GT),
1192 GEN_FW_RANGE(0x8800, 0x8bff, 0),
1193 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1194 GEN_FW_RANGE(0x8d00, 0x94cf, FORCEWAKE_GT),
1195 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER),
1196 GEN_FW_RANGE(0x9560, 0x95ff, 0),
1197 GEN_FW_RANGE(0x9600, 0xafff, FORCEWAKE_GT),
1198 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1199 GEN_FW_RANGE(0xb480, 0xdeff, FORCEWAKE_GT),
1200 GEN_FW_RANGE(0xdf00, 0xe8ff, FORCEWAKE_RENDER),
1201 GEN_FW_RANGE(0xe900, 0x16dff, FORCEWAKE_GT),
1202 GEN_FW_RANGE(0x16e00, 0x19fff, FORCEWAKE_RENDER),
1203 GEN_FW_RANGE(0x1a000, 0x23fff, FORCEWAKE_GT),
1204 GEN_FW_RANGE(0x24000, 0x2407f, 0),
1205 GEN_FW_RANGE(0x24080, 0x2417f, FORCEWAKE_GT),
1206 GEN_FW_RANGE(0x24180, 0x242ff, FORCEWAKE_RENDER),
1207 GEN_FW_RANGE(0x24300, 0x243ff, FORCEWAKE_GT),
1208 GEN_FW_RANGE(0x24400, 0x24fff, FORCEWAKE_RENDER),
1209 GEN_FW_RANGE(0x25000, 0x3ffff, FORCEWAKE_GT),
1210 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1211 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0),
1212 GEN_FW_RANGE(0x1c4000, 0x1c7fff, 0),
1213 GEN_FW_RANGE(0x1c8000, 0x1cffff, FORCEWAKE_MEDIA_VEBOX0),
1214 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2),
1215 GEN_FW_RANGE(0x1d4000, 0x1dbfff, 0)
1219 * *Must* be sorted by offset ranges! See intel_fw_table_check().
1221 * Note that the spec lists several reserved/unused ranges that don't
1222 * actually contain any registers. In the table below we'll combine those
1223 * reserved ranges with either the preceding or following range to keep the
1224 * table small and lookups fast.
1226 static const struct intel_forcewake_range __gen12_fw_ranges[] = {
1227 GEN_FW_RANGE(0x0, 0x1fff, 0), /*
1228 0x0 - 0xaff: reserved
1229 0xb00 - 0x1fff: always on */
1230 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1231 GEN_FW_RANGE(0x2700, 0x27ff, FORCEWAKE_GT),
1232 GEN_FW_RANGE(0x2800, 0x2aff, FORCEWAKE_RENDER),
1233 GEN_FW_RANGE(0x2b00, 0x2fff, FORCEWAKE_GT),
1234 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1235 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_GT), /*
1237 0x4900 - 0x51ff: reserved */
1238 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER), /*
1239 0x5200 - 0x53ff: render
1240 0x5400 - 0x54ff: reserved
1241 0x5500 - 0x7fff: render */
1242 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT),
1243 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1244 GEN_FW_RANGE(0x8160, 0x81ff, 0), /*
1245 0x8160 - 0x817f: reserved
1246 0x8180 - 0x81ff: always on */
1247 GEN_FW_RANGE(0x8200, 0x82ff, FORCEWAKE_GT),
1248 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1249 GEN_FW_RANGE(0x8500, 0x94cf, FORCEWAKE_GT), /*
1251 0x8800 - 0x8fff: reserved
1253 0x9480 - 0x94cf: reserved */
1254 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER),
1255 GEN_FW_RANGE(0x9560, 0x97ff, 0), /*
1256 0x9560 - 0x95ff: always on
1257 0x9600 - 0x97ff: reserved */
1258 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_GT),
1259 GEN_FW_RANGE(0xb000, 0xb3ff, FORCEWAKE_RENDER),
1260 GEN_FW_RANGE(0xb400, 0xcfff, FORCEWAKE_GT), /*
1262 0xb480 - 0xbfff: reserved
1263 0xc000 - 0xcfff: gt */
1264 GEN_FW_RANGE(0xd000, 0xd7ff, 0),
1265 GEN_FW_RANGE(0xd800, 0xd8ff, FORCEWAKE_RENDER),
1266 GEN_FW_RANGE(0xd900, 0xdbff, FORCEWAKE_GT),
1267 GEN_FW_RANGE(0xdc00, 0xefff, FORCEWAKE_RENDER), /*
1268 0xdc00 - 0xddff: render
1269 0xde00 - 0xde7f: reserved
1270 0xde80 - 0xe8ff: render
1271 0xe900 - 0xefff: reserved */
1272 GEN_FW_RANGE(0xf000, 0x147ff, FORCEWAKE_GT), /*
1274 0x10000 - 0x147ff: reserved */
1275 GEN_FW_RANGE(0x14800, 0x1ffff, FORCEWAKE_RENDER), /*
1276 0x14800 - 0x14fff: render
1277 0x15000 - 0x16dff: reserved
1278 0x16e00 - 0x1bfff: render
1279 0x1c000 - 0x1ffff: reserved */
1280 GEN_FW_RANGE(0x20000, 0x20fff, FORCEWAKE_MEDIA_VDBOX0),
1281 GEN_FW_RANGE(0x21000, 0x21fff, FORCEWAKE_MEDIA_VDBOX2),
1282 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_GT),
1283 GEN_FW_RANGE(0x24000, 0x2417f, 0), /*
1284 0x24000 - 0x2407f: always on
1285 0x24080 - 0x2417f: reserved */
1286 GEN_FW_RANGE(0x24180, 0x249ff, FORCEWAKE_GT), /*
1287 0x24180 - 0x241ff: gt
1288 0x24200 - 0x249ff: reserved */
1289 GEN_FW_RANGE(0x24a00, 0x251ff, FORCEWAKE_RENDER), /*
1290 0x24a00 - 0x24a7f: render
1291 0x24a80 - 0x251ff: reserved */
1292 GEN_FW_RANGE(0x25200, 0x255ff, FORCEWAKE_GT), /*
1293 0x25200 - 0x252ff: gt
1294 0x25300 - 0x255ff: reserved */
1295 GEN_FW_RANGE(0x25600, 0x2567f, FORCEWAKE_MEDIA_VDBOX0),
1296 GEN_FW_RANGE(0x25680, 0x259ff, FORCEWAKE_MEDIA_VDBOX2), /*
1297 0x25680 - 0x256ff: VD2
1298 0x25700 - 0x259ff: reserved */
1299 GEN_FW_RANGE(0x25a00, 0x25a7f, FORCEWAKE_MEDIA_VDBOX0),
1300 GEN_FW_RANGE(0x25a80, 0x2ffff, FORCEWAKE_MEDIA_VDBOX2), /*
1301 0x25a80 - 0x25aff: VD2
1302 0x25b00 - 0x2ffff: reserved */
1303 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_GT),
1304 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1305 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0), /*
1306 0x1c0000 - 0x1c2bff: VD0
1307 0x1c2c00 - 0x1c2cff: reserved
1308 0x1c2d00 - 0x1c2dff: VD0
1309 0x1c2e00 - 0x1c3eff: reserved
1310 0x1c3f00 - 0x1c3fff: VD0 */
1311 GEN_FW_RANGE(0x1c4000, 0x1c7fff, 0),
1312 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0), /*
1313 0x1c8000 - 0x1ca0ff: VE0
1314 0x1ca100 - 0x1cbeff: reserved
1315 0x1cbf00 - 0x1cbfff: VE0 */
1316 GEN_FW_RANGE(0x1cc000, 0x1cffff, FORCEWAKE_MEDIA_VDBOX0), /*
1317 0x1cc000 - 0x1ccfff: VD0
1318 0x1cd000 - 0x1cffff: reserved */
1319 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2), /*
1320 0x1d0000 - 0x1d2bff: VD2
1321 0x1d2c00 - 0x1d2cff: reserved
1322 0x1d2d00 - 0x1d2dff: VD2
1323 0x1d2e00 - 0x1d3eff: reserved
1324 0x1d3f00 - 0x1d3fff: VD2 */
1328 * Graphics IP version 12.55 brings a slight change to the 0xd800 range,
1329 * switching it from the GT domain to the render domain.
1331 * *Must* be sorted by offset ranges! See intel_fw_table_check().
1333 #define XEHP_FWRANGES(FW_RANGE_D800) \
1334 GEN_FW_RANGE(0x0, 0x1fff, 0), /* \
1335 0x0 - 0xaff: reserved \
1336 0xb00 - 0x1fff: always on */ \
1337 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER), \
1338 GEN_FW_RANGE(0x2700, 0x4aff, FORCEWAKE_GT), \
1339 GEN_FW_RANGE(0x4b00, 0x51ff, 0), /* \
1340 0x4b00 - 0x4fff: reserved \
1341 0x5000 - 0x51ff: always on */ \
1342 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER), \
1343 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_GT), \
1344 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER), \
1345 GEN_FW_RANGE(0x8160, 0x81ff, 0), /* \
1346 0x8160 - 0x817f: reserved \
1347 0x8180 - 0x81ff: always on */ \
1348 GEN_FW_RANGE(0x8200, 0x82ff, FORCEWAKE_GT), \
1349 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER), \
1350 GEN_FW_RANGE(0x8500, 0x8cff, FORCEWAKE_GT), /* \
1351 0x8500 - 0x87ff: gt \
1352 0x8800 - 0x8c7f: reserved \
1353 0x8c80 - 0x8cff: gt (DG2 only) */ \
1354 GEN_FW_RANGE(0x8d00, 0x8fff, FORCEWAKE_RENDER), /* \
1355 0x8d00 - 0x8dff: render (DG2 only) \
1356 0x8e00 - 0x8fff: reserved */ \
1357 GEN_FW_RANGE(0x9000, 0x94cf, FORCEWAKE_GT), /* \
1358 0x9000 - 0x947f: gt \
1359 0x9480 - 0x94cf: reserved */ \
1360 GEN_FW_RANGE(0x94d0, 0x955f, FORCEWAKE_RENDER), \
1361 GEN_FW_RANGE(0x9560, 0x967f, 0), /* \
1362 0x9560 - 0x95ff: always on \
1363 0x9600 - 0x967f: reserved */ \
1364 GEN_FW_RANGE(0x9680, 0x97ff, FORCEWAKE_RENDER), /* \
1365 0x9680 - 0x96ff: render (DG2 only) \
1366 0x9700 - 0x97ff: reserved */ \
1367 GEN_FW_RANGE(0x9800, 0xcfff, FORCEWAKE_GT), /* \
1368 0x9800 - 0xb4ff: gt \
1369 0xb500 - 0xbfff: reserved \
1370 0xc000 - 0xcfff: gt */ \
1371 GEN_FW_RANGE(0xd000, 0xd7ff, 0), \
1372 GEN_FW_RANGE(0xd800, 0xd87f, FW_RANGE_D800), \
1373 GEN_FW_RANGE(0xd880, 0xdbff, FORCEWAKE_GT), \
1374 GEN_FW_RANGE(0xdc00, 0xdcff, FORCEWAKE_RENDER), \
1375 GEN_FW_RANGE(0xdd00, 0xde7f, FORCEWAKE_GT), /* \
1376 0xdd00 - 0xddff: gt \
1377 0xde00 - 0xde7f: reserved */ \
1378 GEN_FW_RANGE(0xde80, 0xe8ff, FORCEWAKE_RENDER), /* \
1379 0xde80 - 0xdfff: render \
1380 0xe000 - 0xe0ff: reserved \
1381 0xe100 - 0xe8ff: render */ \
1382 GEN_FW_RANGE(0xe900, 0xffff, FORCEWAKE_GT), /* \
1383 0xe900 - 0xe9ff: gt \
1384 0xea00 - 0xefff: reserved \
1385 0xf000 - 0xffff: gt */ \
1386 GEN_FW_RANGE(0x10000, 0x12fff, 0), /* \
1387 0x10000 - 0x11fff: reserved \
1388 0x12000 - 0x127ff: always on \
1389 0x12800 - 0x12fff: reserved */ \
1390 GEN_FW_RANGE(0x13000, 0x131ff, FORCEWAKE_MEDIA_VDBOX0), /* DG2 only */ \
1391 GEN_FW_RANGE(0x13200, 0x13fff, FORCEWAKE_MEDIA_VDBOX2), /* \
1392 0x13200 - 0x133ff: VD2 (DG2 only) \
1393 0x13400 - 0x13fff: reserved */ \
1394 GEN_FW_RANGE(0x14000, 0x141ff, FORCEWAKE_MEDIA_VDBOX0), /* XEHPSDV only */ \
1395 GEN_FW_RANGE(0x14200, 0x143ff, FORCEWAKE_MEDIA_VDBOX2), /* XEHPSDV only */ \
1396 GEN_FW_RANGE(0x14400, 0x145ff, FORCEWAKE_MEDIA_VDBOX4), /* XEHPSDV only */ \
1397 GEN_FW_RANGE(0x14600, 0x147ff, FORCEWAKE_MEDIA_VDBOX6), /* XEHPSDV only */ \
1398 GEN_FW_RANGE(0x14800, 0x14fff, FORCEWAKE_RENDER), \
1399 GEN_FW_RANGE(0x15000, 0x16dff, FORCEWAKE_GT), /* \
1400 0x15000 - 0x15fff: gt (DG2 only) \
1401 0x16000 - 0x16dff: reserved */ \
1402 GEN_FW_RANGE(0x16e00, 0x1ffff, FORCEWAKE_RENDER), \
1403 GEN_FW_RANGE(0x20000, 0x21fff, FORCEWAKE_MEDIA_VDBOX0), /* \
1404 0x20000 - 0x20fff: VD0 (XEHPSDV only) \
1405 0x21000 - 0x21fff: reserved */ \
1406 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_GT), \
1407 GEN_FW_RANGE(0x24000, 0x2417f, 0), /* \
1408 0x24000 - 0x2407f: always on \
1409 0x24080 - 0x2417f: reserved */ \
1410 GEN_FW_RANGE(0x24180, 0x249ff, FORCEWAKE_GT), /* \
1411 0x24180 - 0x241ff: gt \
1412 0x24200 - 0x249ff: reserved */ \
1413 GEN_FW_RANGE(0x24a00, 0x251ff, FORCEWAKE_RENDER), /* \
1414 0x24a00 - 0x24a7f: render \
1415 0x24a80 - 0x251ff: reserved */ \
1416 GEN_FW_RANGE(0x25200, 0x25fff, FORCEWAKE_GT), /* \
1417 0x25200 - 0x252ff: gt \
1418 0x25300 - 0x25fff: reserved */ \
1419 GEN_FW_RANGE(0x26000, 0x2ffff, FORCEWAKE_RENDER), /* \
1420 0x26000 - 0x27fff: render \
1421 0x28000 - 0x29fff: reserved \
1422 0x2a000 - 0x2ffff: undocumented */ \
1423 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_GT), \
1424 GEN_FW_RANGE(0x40000, 0x1bffff, 0), \
1425 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0), /* \
1426 0x1c0000 - 0x1c2bff: VD0 \
1427 0x1c2c00 - 0x1c2cff: reserved \
1428 0x1c2d00 - 0x1c2dff: VD0 \
1429 0x1c2e00 - 0x1c3eff: VD0 (DG2 only) \
1430 0x1c3f00 - 0x1c3fff: VD0 */ \
1431 GEN_FW_RANGE(0x1c4000, 0x1c7fff, FORCEWAKE_MEDIA_VDBOX1), /* \
1432 0x1c4000 - 0x1c6bff: VD1 \
1433 0x1c6c00 - 0x1c6cff: reserved \
1434 0x1c6d00 - 0x1c6dff: VD1 \
1435 0x1c6e00 - 0x1c7fff: reserved */ \
1436 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0), /* \
1437 0x1c8000 - 0x1ca0ff: VE0 \
1438 0x1ca100 - 0x1cbfff: reserved */ \
1439 GEN_FW_RANGE(0x1cc000, 0x1ccfff, FORCEWAKE_MEDIA_VDBOX0), \
1440 GEN_FW_RANGE(0x1cd000, 0x1cdfff, FORCEWAKE_MEDIA_VDBOX2), \
1441 GEN_FW_RANGE(0x1ce000, 0x1cefff, FORCEWAKE_MEDIA_VDBOX4), \
1442 GEN_FW_RANGE(0x1cf000, 0x1cffff, FORCEWAKE_MEDIA_VDBOX6), \
1443 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2), /* \
1444 0x1d0000 - 0x1d2bff: VD2 \
1445 0x1d2c00 - 0x1d2cff: reserved \
1446 0x1d2d00 - 0x1d2dff: VD2 \
1447 0x1d2e00 - 0x1d3dff: VD2 (DG2 only) \
1448 0x1d3e00 - 0x1d3eff: reserved \
1449 0x1d3f00 - 0x1d3fff: VD2 */ \
1450 GEN_FW_RANGE(0x1d4000, 0x1d7fff, FORCEWAKE_MEDIA_VDBOX3), /* \
1451 0x1d4000 - 0x1d6bff: VD3 \
1452 0x1d6c00 - 0x1d6cff: reserved \
1453 0x1d6d00 - 0x1d6dff: VD3 \
1454 0x1d6e00 - 0x1d7fff: reserved */ \
1455 GEN_FW_RANGE(0x1d8000, 0x1dffff, FORCEWAKE_MEDIA_VEBOX1), /* \
1456 0x1d8000 - 0x1da0ff: VE1 \
1457 0x1da100 - 0x1dffff: reserved */ \
1458 GEN_FW_RANGE(0x1e0000, 0x1e3fff, FORCEWAKE_MEDIA_VDBOX4), /* \
1459 0x1e0000 - 0x1e2bff: VD4 \
1460 0x1e2c00 - 0x1e2cff: reserved \
1461 0x1e2d00 - 0x1e2dff: VD4 \
1462 0x1e2e00 - 0x1e3eff: reserved \
1463 0x1e3f00 - 0x1e3fff: VD4 */ \
1464 GEN_FW_RANGE(0x1e4000, 0x1e7fff, FORCEWAKE_MEDIA_VDBOX5), /* \
1465 0x1e4000 - 0x1e6bff: VD5 \
1466 0x1e6c00 - 0x1e6cff: reserved \
1467 0x1e6d00 - 0x1e6dff: VD5 \
1468 0x1e6e00 - 0x1e7fff: reserved */ \
1469 GEN_FW_RANGE(0x1e8000, 0x1effff, FORCEWAKE_MEDIA_VEBOX2), /* \
1470 0x1e8000 - 0x1ea0ff: VE2 \
1471 0x1ea100 - 0x1effff: reserved */ \
1472 GEN_FW_RANGE(0x1f0000, 0x1f3fff, FORCEWAKE_MEDIA_VDBOX6), /* \
1473 0x1f0000 - 0x1f2bff: VD6 \
1474 0x1f2c00 - 0x1f2cff: reserved \
1475 0x1f2d00 - 0x1f2dff: VD6 \
1476 0x1f2e00 - 0x1f3eff: reserved \
1477 0x1f3f00 - 0x1f3fff: VD6 */ \
1478 GEN_FW_RANGE(0x1f4000, 0x1f7fff, FORCEWAKE_MEDIA_VDBOX7), /* \
1479 0x1f4000 - 0x1f6bff: VD7 \
1480 0x1f6c00 - 0x1f6cff: reserved \
1481 0x1f6d00 - 0x1f6dff: VD7 \
1482 0x1f6e00 - 0x1f7fff: reserved */ \
1483 GEN_FW_RANGE(0x1f8000, 0x1fa0ff, FORCEWAKE_MEDIA_VEBOX3),
1485 static const struct intel_forcewake_range __xehp_fw_ranges[] = {
1486 XEHP_FWRANGES(FORCEWAKE_GT)
1489 static const struct intel_forcewake_range __dg2_fw_ranges[] = {
1490 XEHP_FWRANGES(FORCEWAKE_RENDER)
1494 ilk_dummy_write(struct intel_uncore *uncore)
1496 /* WaIssueDummyWriteToWakeupFromRC6:ilk Issue a dummy write to wake up
1497 * the chip from rc6 before touching it for real. MI_MODE is masked,
1498 * hence harmless to write 0 into. */
1499 __raw_uncore_write32(uncore, RING_MI_MODE(RENDER_RING_BASE), 0);
1503 __unclaimed_reg_debug(struct intel_uncore *uncore,
1504 const i915_reg_t reg,
1508 if (drm_WARN(&uncore->i915->drm,
1509 check_for_unclaimed_mmio(uncore) && !before,
1510 "Unclaimed %s register 0x%x\n",
1511 read ? "read from" : "write to",
1512 i915_mmio_reg_offset(reg)))
1513 /* Only report the first N failures */
1514 uncore->i915->params.mmio_debug--;
1518 unclaimed_reg_debug(struct intel_uncore *uncore,
1519 const i915_reg_t reg,
1523 if (likely(!uncore->i915->params.mmio_debug))
1526 /* interrupts are disabled and re-enabled around uncore->lock usage */
1527 lockdep_assert_held(&uncore->lock);
1530 spin_lock(&uncore->debug->lock);
1532 __unclaimed_reg_debug(uncore, reg, read, before);
1535 spin_unlock(&uncore->debug->lock);
1538 #define __vgpu_read(x) \
1540 vgpu_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1541 u##x val = __raw_uncore_read##x(uncore, reg); \
1542 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1550 #define GEN2_READ_HEADER(x) \
1552 assert_rpm_wakelock_held(uncore->rpm);
1554 #define GEN2_READ_FOOTER \
1555 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1558 #define __gen2_read(x) \
1560 gen2_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1561 GEN2_READ_HEADER(x); \
1562 val = __raw_uncore_read##x(uncore, reg); \
1566 #define __gen5_read(x) \
1568 gen5_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
1569 GEN2_READ_HEADER(x); \
1570 ilk_dummy_write(uncore); \
1571 val = __raw_uncore_read##x(uncore, reg); \
1587 #undef GEN2_READ_FOOTER
1588 #undef GEN2_READ_HEADER
1590 #define GEN6_READ_HEADER(x) \
1591 u32 offset = i915_mmio_reg_offset(reg); \
1592 unsigned long irqflags; \
1594 assert_rpm_wakelock_held(uncore->rpm); \
1595 spin_lock_irqsave(&uncore->lock, irqflags); \
1596 unclaimed_reg_debug(uncore, reg, true, true)
1598 #define GEN6_READ_FOOTER \
1599 unclaimed_reg_debug(uncore, reg, true, false); \
1600 spin_unlock_irqrestore(&uncore->lock, irqflags); \
1601 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1604 static noinline void ___force_wake_auto(struct intel_uncore *uncore,
1605 enum forcewake_domains fw_domains)
1607 struct intel_uncore_forcewake_domain *domain;
1610 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
1612 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp)
1613 fw_domain_arm_timer(domain);
1615 fw_domains_get(uncore, fw_domains);
1618 static inline void __force_wake_auto(struct intel_uncore *uncore,
1619 enum forcewake_domains fw_domains)
1621 GEM_BUG_ON(!fw_domains);
1623 /* Turn on all requested but inactive supported forcewake domains. */
1624 fw_domains &= uncore->fw_domains;
1625 fw_domains &= ~uncore->fw_domains_active;
1628 ___force_wake_auto(uncore, fw_domains);
1631 #define __gen_fwtable_read(x) \
1633 fwtable_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) \
1635 enum forcewake_domains fw_engine; \
1636 GEN6_READ_HEADER(x); \
1637 fw_engine = __fwtable_reg_read_fw_domains(uncore, offset); \
1639 __force_wake_auto(uncore, fw_engine); \
1640 val = __raw_uncore_read##x(uncore, reg); \
1644 static enum forcewake_domains
1645 fwtable_reg_read_fw_domains(struct intel_uncore *uncore, i915_reg_t reg) {
1646 return __fwtable_reg_read_fw_domains(uncore, i915_mmio_reg_offset(reg));
1649 __gen_fwtable_read(8)
1650 __gen_fwtable_read(16)
1651 __gen_fwtable_read(32)
1652 __gen_fwtable_read(64)
1654 #undef __gen_fwtable_read
1655 #undef GEN6_READ_FOOTER
1656 #undef GEN6_READ_HEADER
1658 #define GEN2_WRITE_HEADER \
1659 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1660 assert_rpm_wakelock_held(uncore->rpm); \
1662 #define GEN2_WRITE_FOOTER
1664 #define __gen2_write(x) \
1666 gen2_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1667 GEN2_WRITE_HEADER; \
1668 __raw_uncore_write##x(uncore, reg, val); \
1669 GEN2_WRITE_FOOTER; \
1672 #define __gen5_write(x) \
1674 gen5_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1675 GEN2_WRITE_HEADER; \
1676 ilk_dummy_write(uncore); \
1677 __raw_uncore_write##x(uncore, reg, val); \
1678 GEN2_WRITE_FOOTER; \
1691 #undef GEN2_WRITE_FOOTER
1692 #undef GEN2_WRITE_HEADER
1694 #define GEN6_WRITE_HEADER \
1695 u32 offset = i915_mmio_reg_offset(reg); \
1696 unsigned long irqflags; \
1697 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1698 assert_rpm_wakelock_held(uncore->rpm); \
1699 spin_lock_irqsave(&uncore->lock, irqflags); \
1700 unclaimed_reg_debug(uncore, reg, false, true)
1702 #define GEN6_WRITE_FOOTER \
1703 unclaimed_reg_debug(uncore, reg, false, false); \
1704 spin_unlock_irqrestore(&uncore->lock, irqflags)
1706 #define __gen6_write(x) \
1708 gen6_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1709 GEN6_WRITE_HEADER; \
1710 if (NEEDS_FORCE_WAKE(offset)) \
1711 __gen6_gt_wait_for_fifo(uncore); \
1712 __raw_uncore_write##x(uncore, reg, val); \
1713 GEN6_WRITE_FOOTER; \
1719 #define __gen_fwtable_write(x) \
1721 fwtable_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1722 enum forcewake_domains fw_engine; \
1723 GEN6_WRITE_HEADER; \
1724 fw_engine = __fwtable_reg_write_fw_domains(uncore, offset); \
1726 __force_wake_auto(uncore, fw_engine); \
1727 __raw_uncore_write##x(uncore, reg, val); \
1728 GEN6_WRITE_FOOTER; \
1731 static enum forcewake_domains
1732 fwtable_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg)
1734 return __fwtable_reg_write_fw_domains(uncore, i915_mmio_reg_offset(reg));
1737 __gen_fwtable_write(8)
1738 __gen_fwtable_write(16)
1739 __gen_fwtable_write(32)
1741 #undef __gen_fwtable_write
1742 #undef GEN6_WRITE_FOOTER
1743 #undef GEN6_WRITE_HEADER
1745 #define __vgpu_write(x) \
1747 vgpu_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
1748 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
1749 __raw_uncore_write##x(uncore, reg, val); \
1755 #define ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, x) \
1757 (uncore)->funcs.mmio_writeb = x##_write8; \
1758 (uncore)->funcs.mmio_writew = x##_write16; \
1759 (uncore)->funcs.mmio_writel = x##_write32; \
1762 #define ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x) \
1764 (uncore)->funcs.mmio_readb = x##_read8; \
1765 (uncore)->funcs.mmio_readw = x##_read16; \
1766 (uncore)->funcs.mmio_readl = x##_read32; \
1767 (uncore)->funcs.mmio_readq = x##_read64; \
1770 #define ASSIGN_WRITE_MMIO_VFUNCS(uncore, x) \
1772 ASSIGN_RAW_WRITE_MMIO_VFUNCS((uncore), x); \
1773 (uncore)->funcs.write_fw_domains = x##_reg_write_fw_domains; \
1776 #define ASSIGN_READ_MMIO_VFUNCS(uncore, x) \
1778 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x); \
1779 (uncore)->funcs.read_fw_domains = x##_reg_read_fw_domains; \
1782 static int __fw_domain_init(struct intel_uncore *uncore,
1783 enum forcewake_domain_id domain_id,
1787 struct intel_uncore_forcewake_domain *d;
1789 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
1790 GEM_BUG_ON(uncore->fw_domain[domain_id]);
1792 if (i915_inject_probe_failure(uncore->i915))
1795 d = kzalloc(sizeof(*d), GFP_KERNEL);
1799 drm_WARN_ON(&uncore->i915->drm, !i915_mmio_reg_valid(reg_set));
1800 drm_WARN_ON(&uncore->i915->drm, !i915_mmio_reg_valid(reg_ack));
1804 d->reg_set = uncore->regs + i915_mmio_reg_offset(reg_set);
1805 d->reg_ack = uncore->regs + i915_mmio_reg_offset(reg_ack);
1809 BUILD_BUG_ON(FORCEWAKE_RENDER != (1 << FW_DOMAIN_ID_RENDER));
1810 BUILD_BUG_ON(FORCEWAKE_GT != (1 << FW_DOMAIN_ID_GT));
1811 BUILD_BUG_ON(FORCEWAKE_MEDIA != (1 << FW_DOMAIN_ID_MEDIA));
1812 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX0));
1813 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX1));
1814 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX2 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX2));
1815 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX3 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX3));
1816 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX4 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX4));
1817 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX5 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX5));
1818 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX6 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX6));
1819 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX7 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX7));
1820 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX0));
1821 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX1));
1822 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX2 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX2));
1823 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX3 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX3));
1825 d->mask = BIT(domain_id);
1827 hrtimer_init(&d->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1828 d->timer.function = intel_uncore_fw_release_timer;
1830 uncore->fw_domains |= BIT(domain_id);
1834 uncore->fw_domain[domain_id] = d;
1839 static void fw_domain_fini(struct intel_uncore *uncore,
1840 enum forcewake_domain_id domain_id)
1842 struct intel_uncore_forcewake_domain *d;
1844 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
1846 d = fetch_and_zero(&uncore->fw_domain[domain_id]);
1850 uncore->fw_domains &= ~BIT(domain_id);
1851 drm_WARN_ON(&uncore->i915->drm, d->wake_count);
1852 drm_WARN_ON(&uncore->i915->drm, hrtimer_cancel(&d->timer));
1856 static void intel_uncore_fw_domains_fini(struct intel_uncore *uncore)
1858 struct intel_uncore_forcewake_domain *d;
1861 for_each_fw_domain(d, uncore, tmp)
1862 fw_domain_fini(uncore, d->id);
1865 static const struct intel_uncore_fw_get uncore_get_fallback = {
1866 .force_wake_get = fw_domains_get_with_fallback
1869 static const struct intel_uncore_fw_get uncore_get_normal = {
1870 .force_wake_get = fw_domains_get_normal,
1873 static const struct intel_uncore_fw_get uncore_get_thread_status = {
1874 .force_wake_get = fw_domains_get_with_thread_status
1877 static int intel_uncore_fw_domains_init(struct intel_uncore *uncore)
1879 struct drm_i915_private *i915 = uncore->i915;
1882 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
1884 #define fw_domain_init(uncore__, id__, set__, ack__) \
1885 (ret ?: (ret = __fw_domain_init((uncore__), (id__), (set__), (ack__))))
1887 if (GRAPHICS_VER(i915) >= 11) {
1888 /* we'll prune the domains of missing engines later */
1889 intel_engine_mask_t emask = INTEL_INFO(i915)->platform_engine_mask;
1892 uncore->fw_get_funcs = &uncore_get_fallback;
1893 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1894 FORCEWAKE_RENDER_GEN9,
1895 FORCEWAKE_ACK_RENDER_GEN9);
1896 fw_domain_init(uncore, FW_DOMAIN_ID_GT,
1898 FORCEWAKE_ACK_GT_GEN9);
1900 for (i = 0; i < I915_MAX_VCS; i++) {
1901 if (!__HAS_ENGINE(emask, _VCS(i)))
1904 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VDBOX0 + i,
1905 FORCEWAKE_MEDIA_VDBOX_GEN11(i),
1906 FORCEWAKE_ACK_MEDIA_VDBOX_GEN11(i));
1908 for (i = 0; i < I915_MAX_VECS; i++) {
1909 if (!__HAS_ENGINE(emask, _VECS(i)))
1912 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VEBOX0 + i,
1913 FORCEWAKE_MEDIA_VEBOX_GEN11(i),
1914 FORCEWAKE_ACK_MEDIA_VEBOX_GEN11(i));
1916 } else if (IS_GRAPHICS_VER(i915, 9, 10)) {
1917 uncore->fw_get_funcs = &uncore_get_fallback;
1918 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1919 FORCEWAKE_RENDER_GEN9,
1920 FORCEWAKE_ACK_RENDER_GEN9);
1921 fw_domain_init(uncore, FW_DOMAIN_ID_GT,
1923 FORCEWAKE_ACK_GT_GEN9);
1924 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
1925 FORCEWAKE_MEDIA_GEN9, FORCEWAKE_ACK_MEDIA_GEN9);
1926 } else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
1927 uncore->fw_get_funcs = &uncore_get_normal;
1928 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1929 FORCEWAKE_VLV, FORCEWAKE_ACK_VLV);
1930 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
1931 FORCEWAKE_MEDIA_VLV, FORCEWAKE_ACK_MEDIA_VLV);
1932 } else if (IS_HASWELL(i915) || IS_BROADWELL(i915)) {
1933 uncore->fw_get_funcs = &uncore_get_thread_status;
1934 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1935 FORCEWAKE_MT, FORCEWAKE_ACK_HSW);
1936 } else if (IS_IVYBRIDGE(i915)) {
1939 /* IVB configs may use multi-threaded forcewake */
1941 /* A small trick here - if the bios hasn't configured
1942 * MT forcewake, and if the device is in RC6, then
1943 * force_wake_mt_get will not wake the device and the
1944 * ECOBUS read will return zero. Which will be
1945 * (correctly) interpreted by the test below as MT
1946 * forcewake being disabled.
1948 uncore->fw_get_funcs = &uncore_get_thread_status;
1950 /* We need to init first for ECOBUS access and then
1951 * determine later if we want to reinit, in case of MT access is
1952 * not working. In this stage we don't know which flavour this
1953 * ivb is, so it is better to reset also the gen6 fw registers
1954 * before the ecobus check.
1957 __raw_uncore_write32(uncore, FORCEWAKE, 0);
1958 __raw_posting_read(uncore, ECOBUS);
1960 ret = __fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1961 FORCEWAKE_MT, FORCEWAKE_MT_ACK);
1965 spin_lock_irq(&uncore->lock);
1966 fw_domains_get_with_thread_status(uncore, FORCEWAKE_RENDER);
1967 ecobus = __raw_uncore_read32(uncore, ECOBUS);
1968 fw_domains_put(uncore, FORCEWAKE_RENDER);
1969 spin_unlock_irq(&uncore->lock);
1971 if (!(ecobus & FORCEWAKE_MT_ENABLE)) {
1972 drm_info(&i915->drm, "No MT forcewake available on Ivybridge, this can result in issues\n");
1973 drm_info(&i915->drm, "when using vblank-synced partial screen updates.\n");
1974 fw_domain_fini(uncore, FW_DOMAIN_ID_RENDER);
1975 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1976 FORCEWAKE, FORCEWAKE_ACK);
1978 } else if (GRAPHICS_VER(i915) == 6) {
1979 uncore->fw_get_funcs = &uncore_get_thread_status;
1980 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1981 FORCEWAKE, FORCEWAKE_ACK);
1984 #undef fw_domain_init
1986 /* All future platforms are expected to require complex power gating */
1987 drm_WARN_ON(&i915->drm, !ret && uncore->fw_domains == 0);
1991 intel_uncore_fw_domains_fini(uncore);
1996 #define ASSIGN_FW_DOMAINS_TABLE(uncore, d) \
1998 (uncore)->fw_domains_table = \
1999 (struct intel_forcewake_range *)(d); \
2000 (uncore)->fw_domains_table_entries = ARRAY_SIZE((d)); \
2003 #define ASSIGN_SHADOW_TABLE(uncore, d) \
2005 (uncore)->shadowed_reg_table = d; \
2006 (uncore)->shadowed_reg_table_entries = ARRAY_SIZE((d)); \
2009 static int i915_pmic_bus_access_notifier(struct notifier_block *nb,
2010 unsigned long action, void *data)
2012 struct intel_uncore *uncore = container_of(nb,
2013 struct intel_uncore, pmic_bus_access_nb);
2016 case MBI_PMIC_BUS_ACCESS_BEGIN:
2018 * forcewake all now to make sure that we don't need to do a
2019 * forcewake later which on systems where this notifier gets
2020 * called requires the punit to access to the shared pmic i2c
2021 * bus, which will be busy after this notification, leading to:
2022 * "render: timed out waiting for forcewake ack request."
2025 * The notifier is unregistered during intel_runtime_suspend(),
2026 * so it's ok to access the HW here without holding a RPM
2027 * wake reference -> disable wakeref asserts for the time of
2030 disable_rpm_wakeref_asserts(uncore->rpm);
2031 intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
2032 enable_rpm_wakeref_asserts(uncore->rpm);
2034 case MBI_PMIC_BUS_ACCESS_END:
2035 intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
2042 int intel_uncore_setup_mmio(struct intel_uncore *uncore)
2044 struct drm_i915_private *i915 = uncore->i915;
2045 struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
2049 mmio_bar = GRAPHICS_VER(i915) == 2 ? 1 : 0;
2051 * Before gen4, the registers and the GTT are behind different BARs.
2052 * However, from gen4 onwards, the registers and the GTT are shared
2053 * in the same BAR, so we want to restrict this ioremap from
2054 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
2055 * the register BAR remains the same size for all the earlier
2056 * generations up to Ironlake.
2057 * For dgfx chips register range is expanded to 4MB.
2059 if (GRAPHICS_VER(i915) < 5)
2060 mmio_size = 512 * 1024;
2061 else if (IS_DGFX(i915))
2062 mmio_size = 4 * 1024 * 1024;
2064 mmio_size = 2 * 1024 * 1024;
2066 uncore->regs = pci_iomap(pdev, mmio_bar, mmio_size);
2067 if (uncore->regs == NULL) {
2068 drm_err(&i915->drm, "failed to map registers\n");
2075 void intel_uncore_cleanup_mmio(struct intel_uncore *uncore)
2077 struct pci_dev *pdev = to_pci_dev(uncore->i915->drm.dev);
2079 pci_iounmap(pdev, uncore->regs);
2082 void intel_uncore_init_early(struct intel_uncore *uncore,
2083 struct intel_gt *gt)
2085 spin_lock_init(&uncore->lock);
2086 uncore->i915 = gt->i915;
2088 uncore->rpm = >->i915->runtime_pm;
2089 uncore->debug = >->i915->mmio_debug;
2092 static void uncore_raw_init(struct intel_uncore *uncore)
2094 GEM_BUG_ON(intel_uncore_has_forcewake(uncore));
2096 if (intel_vgpu_active(uncore->i915)) {
2097 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, vgpu);
2098 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, vgpu);
2099 } else if (GRAPHICS_VER(uncore->i915) == 5) {
2100 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen5);
2101 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen5);
2103 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen2);
2104 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen2);
2108 static int uncore_forcewake_init(struct intel_uncore *uncore)
2110 struct drm_i915_private *i915 = uncore->i915;
2113 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
2115 ret = intel_uncore_fw_domains_init(uncore);
2118 forcewake_early_sanitize(uncore, 0);
2120 ASSIGN_READ_MMIO_VFUNCS(uncore, fwtable);
2122 if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 55)) {
2123 ASSIGN_FW_DOMAINS_TABLE(uncore, __dg2_fw_ranges);
2124 ASSIGN_SHADOW_TABLE(uncore, dg2_shadowed_regs);
2125 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2126 } else if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 50)) {
2127 ASSIGN_FW_DOMAINS_TABLE(uncore, __xehp_fw_ranges);
2128 ASSIGN_SHADOW_TABLE(uncore, gen12_shadowed_regs);
2129 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2130 } else if (GRAPHICS_VER(i915) >= 12) {
2131 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen12_fw_ranges);
2132 ASSIGN_SHADOW_TABLE(uncore, gen12_shadowed_regs);
2133 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2134 } else if (GRAPHICS_VER(i915) == 11) {
2135 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen11_fw_ranges);
2136 ASSIGN_SHADOW_TABLE(uncore, gen11_shadowed_regs);
2137 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2138 } else if (IS_GRAPHICS_VER(i915, 9, 10)) {
2139 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen9_fw_ranges);
2140 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2141 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2142 } else if (IS_CHERRYVIEW(i915)) {
2143 ASSIGN_FW_DOMAINS_TABLE(uncore, __chv_fw_ranges);
2144 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2145 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2146 } else if (GRAPHICS_VER(i915) == 8) {
2147 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen6_fw_ranges);
2148 ASSIGN_SHADOW_TABLE(uncore, gen8_shadowed_regs);
2149 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
2150 } else if (IS_VALLEYVIEW(i915)) {
2151 ASSIGN_FW_DOMAINS_TABLE(uncore, __vlv_fw_ranges);
2152 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen6);
2153 } else if (IS_GRAPHICS_VER(i915, 6, 7)) {
2154 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen6_fw_ranges);
2155 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen6);
2158 uncore->pmic_bus_access_nb.notifier_call = i915_pmic_bus_access_notifier;
2159 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
2164 int intel_uncore_init_mmio(struct intel_uncore *uncore)
2166 struct drm_i915_private *i915 = uncore->i915;
2170 * The boot firmware initializes local memory and assesses its health.
2171 * If memory training fails, the punit will have been instructed to
2172 * keep the GT powered down; we won't be able to communicate with it
2173 * and we should not continue with driver initialization.
2175 if (IS_DGFX(i915) &&
2176 !(__raw_uncore_read32(uncore, GU_CNTL) & LMEM_INIT)) {
2177 drm_err(&i915->drm, "LMEM not initialized by firmware\n");
2181 if (GRAPHICS_VER(i915) > 5 && !intel_vgpu_active(i915))
2182 uncore->flags |= UNCORE_HAS_FORCEWAKE;
2184 if (!intel_uncore_has_forcewake(uncore)) {
2185 uncore_raw_init(uncore);
2187 ret = uncore_forcewake_init(uncore);
2192 /* make sure fw funcs are set if and only if we have fw*/
2193 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->fw_get_funcs);
2194 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.read_fw_domains);
2195 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.write_fw_domains);
2197 if (HAS_FPGA_DBG_UNCLAIMED(i915))
2198 uncore->flags |= UNCORE_HAS_FPGA_DBG_UNCLAIMED;
2200 if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
2201 uncore->flags |= UNCORE_HAS_DBG_UNCLAIMED;
2203 if (IS_GRAPHICS_VER(i915, 6, 7))
2204 uncore->flags |= UNCORE_HAS_FIFO;
2206 /* clear out unclaimed reg detection bit */
2207 if (intel_uncore_unclaimed_mmio(uncore))
2208 drm_dbg(&i915->drm, "unclaimed mmio detected on uncore init, clearing\n");
2214 * We might have detected that some engines are fused off after we initialized
2215 * the forcewake domains. Prune them, to make sure they only reference existing
2218 void intel_uncore_prune_engine_fw_domains(struct intel_uncore *uncore,
2219 struct intel_gt *gt)
2221 enum forcewake_domains fw_domains = uncore->fw_domains;
2222 enum forcewake_domain_id domain_id;
2225 if (!intel_uncore_has_forcewake(uncore) || GRAPHICS_VER(uncore->i915) < 11)
2228 for (i = 0; i < I915_MAX_VCS; i++) {
2229 domain_id = FW_DOMAIN_ID_MEDIA_VDBOX0 + i;
2231 if (HAS_ENGINE(gt, _VCS(i)))
2235 * Starting with XeHP, the power well for an even-numbered
2236 * VDBOX is also used for shared units within the
2237 * media slice such as SFC. So even if the engine
2238 * itself is fused off, we still need to initialize
2239 * the forcewake domain if any of the other engines
2240 * in the same media slice are present.
2242 if (GRAPHICS_VER_FULL(uncore->i915) >= IP_VER(12, 50) && i % 2 == 0) {
2243 if ((i + 1 < I915_MAX_VCS) && HAS_ENGINE(gt, _VCS(i + 1)))
2246 if (HAS_ENGINE(gt, _VECS(i / 2)))
2250 if (fw_domains & BIT(domain_id))
2251 fw_domain_fini(uncore, domain_id);
2254 for (i = 0; i < I915_MAX_VECS; i++) {
2255 domain_id = FW_DOMAIN_ID_MEDIA_VEBOX0 + i;
2257 if (HAS_ENGINE(gt, _VECS(i)))
2260 if (fw_domains & BIT(domain_id))
2261 fw_domain_fini(uncore, domain_id);
2265 void intel_uncore_fini_mmio(struct intel_uncore *uncore)
2267 if (intel_uncore_has_forcewake(uncore)) {
2268 iosf_mbi_punit_acquire();
2269 iosf_mbi_unregister_pmic_bus_access_notifier_unlocked(
2270 &uncore->pmic_bus_access_nb);
2271 intel_uncore_forcewake_reset(uncore);
2272 intel_uncore_fw_domains_fini(uncore);
2273 iosf_mbi_punit_release();
2278 * __intel_wait_for_register_fw - wait until register matches expected state
2279 * @uncore: the struct intel_uncore
2280 * @reg: the register to read
2281 * @mask: mask to apply to register value
2282 * @value: expected value
2283 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
2284 * @slow_timeout_ms: slow timeout in millisecond
2285 * @out_value: optional placeholder to hold registry value
2287 * This routine waits until the target register @reg contains the expected
2288 * @value after applying the @mask, i.e. it waits until ::
2290 * (intel_uncore_read_fw(uncore, reg) & mask) == value
2292 * Otherwise, the wait will timeout after @slow_timeout_ms milliseconds.
2293 * For atomic context @slow_timeout_ms must be zero and @fast_timeout_us
2294 * must be not larger than 20,0000 microseconds.
2296 * Note that this routine assumes the caller holds forcewake asserted, it is
2297 * not suitable for very long waits. See intel_wait_for_register() if you
2298 * wish to wait without holding forcewake for the duration (i.e. you expect
2299 * the wait to be slow).
2301 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
2303 int __intel_wait_for_register_fw(struct intel_uncore *uncore,
2307 unsigned int fast_timeout_us,
2308 unsigned int slow_timeout_ms,
2312 #define done (((reg_value = intel_uncore_read_fw(uncore, reg)) & mask) == value)
2315 /* Catch any overuse of this function */
2316 might_sleep_if(slow_timeout_ms);
2317 GEM_BUG_ON(fast_timeout_us > 20000);
2318 GEM_BUG_ON(!fast_timeout_us && !slow_timeout_ms);
2321 if (fast_timeout_us && fast_timeout_us <= 20000)
2322 ret = _wait_for_atomic(done, fast_timeout_us, 0);
2323 if (ret && slow_timeout_ms)
2324 ret = wait_for(done, slow_timeout_ms);
2327 *out_value = reg_value;
2334 * __intel_wait_for_register - wait until register matches expected state
2335 * @uncore: the struct intel_uncore
2336 * @reg: the register to read
2337 * @mask: mask to apply to register value
2338 * @value: expected value
2339 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
2340 * @slow_timeout_ms: slow timeout in millisecond
2341 * @out_value: optional placeholder to hold registry value
2343 * This routine waits until the target register @reg contains the expected
2344 * @value after applying the @mask, i.e. it waits until ::
2346 * (intel_uncore_read(uncore, reg) & mask) == value
2348 * Otherwise, the wait will timeout after @timeout_ms milliseconds.
2350 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
2352 int __intel_wait_for_register(struct intel_uncore *uncore,
2356 unsigned int fast_timeout_us,
2357 unsigned int slow_timeout_ms,
2361 intel_uncore_forcewake_for_reg(uncore, reg, FW_REG_READ);
2365 might_sleep_if(slow_timeout_ms);
2367 spin_lock_irq(&uncore->lock);
2368 intel_uncore_forcewake_get__locked(uncore, fw);
2370 ret = __intel_wait_for_register_fw(uncore,
2372 fast_timeout_us, 0, ®_value);
2374 intel_uncore_forcewake_put__locked(uncore, fw);
2375 spin_unlock_irq(&uncore->lock);
2377 if (ret && slow_timeout_ms)
2378 ret = __wait_for(reg_value = intel_uncore_read_notrace(uncore,
2380 (reg_value & mask) == value,
2381 slow_timeout_ms * 1000, 10, 1000);
2383 /* just trace the final value */
2384 trace_i915_reg_rw(false, reg, reg_value, sizeof(reg_value), true);
2387 *out_value = reg_value;
2392 bool intel_uncore_unclaimed_mmio(struct intel_uncore *uncore)
2396 spin_lock_irq(&uncore->debug->lock);
2397 ret = check_for_unclaimed_mmio(uncore);
2398 spin_unlock_irq(&uncore->debug->lock);
2404 intel_uncore_arm_unclaimed_mmio_detection(struct intel_uncore *uncore)
2408 spin_lock_irq(&uncore->debug->lock);
2410 if (unlikely(uncore->debug->unclaimed_mmio_check <= 0))
2413 if (unlikely(check_for_unclaimed_mmio(uncore))) {
2414 if (!uncore->i915->params.mmio_debug) {
2415 drm_dbg(&uncore->i915->drm,
2416 "Unclaimed register detected, "
2417 "enabling oneshot unclaimed register reporting. "
2418 "Please use i915.mmio_debug=N for more information.\n");
2419 uncore->i915->params.mmio_debug++;
2421 uncore->debug->unclaimed_mmio_check--;
2426 spin_unlock_irq(&uncore->debug->lock);
2432 * intel_uncore_forcewake_for_reg - which forcewake domains are needed to access
2434 * @uncore: pointer to struct intel_uncore
2435 * @reg: register in question
2436 * @op: operation bitmask of FW_REG_READ and/or FW_REG_WRITE
2438 * Returns a set of forcewake domains required to be taken with for example
2439 * intel_uncore_forcewake_get for the specified register to be accessible in the
2440 * specified mode (read, write or read/write) with raw mmio accessors.
2442 * NOTE: On Gen6 and Gen7 write forcewake domain (FORCEWAKE_RENDER) requires the
2443 * callers to do FIFO management on their own or risk losing writes.
2445 enum forcewake_domains
2446 intel_uncore_forcewake_for_reg(struct intel_uncore *uncore,
2447 i915_reg_t reg, unsigned int op)
2449 enum forcewake_domains fw_domains = 0;
2451 drm_WARN_ON(&uncore->i915->drm, !op);
2453 if (!intel_uncore_has_forcewake(uncore))
2456 if (op & FW_REG_READ)
2457 fw_domains = uncore->funcs.read_fw_domains(uncore, reg);
2459 if (op & FW_REG_WRITE)
2460 fw_domains |= uncore->funcs.write_fw_domains(uncore, reg);
2462 drm_WARN_ON(&uncore->i915->drm, fw_domains & ~uncore->fw_domains);
2467 u32 intel_uncore_read_with_mcr_steering_fw(struct intel_uncore *uncore,
2469 int slice, int subslice)
2471 u32 mcr_mask, mcr_ss, mcr, old_mcr, val;
2473 lockdep_assert_held(&uncore->lock);
2475 if (GRAPHICS_VER(uncore->i915) >= 11) {
2476 mcr_mask = GEN11_MCR_SLICE_MASK | GEN11_MCR_SUBSLICE_MASK;
2477 mcr_ss = GEN11_MCR_SLICE(slice) | GEN11_MCR_SUBSLICE(subslice);
2479 mcr_mask = GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK;
2480 mcr_ss = GEN8_MCR_SLICE(slice) | GEN8_MCR_SUBSLICE(subslice);
2483 old_mcr = mcr = intel_uncore_read_fw(uncore, GEN8_MCR_SELECTOR);
2487 intel_uncore_write_fw(uncore, GEN8_MCR_SELECTOR, mcr);
2489 val = intel_uncore_read_fw(uncore, reg);
2492 mcr |= old_mcr & mcr_mask;
2494 intel_uncore_write_fw(uncore, GEN8_MCR_SELECTOR, mcr);
2499 u32 intel_uncore_read_with_mcr_steering(struct intel_uncore *uncore,
2500 i915_reg_t reg, int slice, int subslice)
2502 enum forcewake_domains fw_domains;
2505 fw_domains = intel_uncore_forcewake_for_reg(uncore, reg,
2507 fw_domains |= intel_uncore_forcewake_for_reg(uncore,
2509 FW_REG_READ | FW_REG_WRITE);
2511 spin_lock_irq(&uncore->lock);
2512 intel_uncore_forcewake_get__locked(uncore, fw_domains);
2514 val = intel_uncore_read_with_mcr_steering_fw(uncore, reg, slice, subslice);
2516 intel_uncore_forcewake_put__locked(uncore, fw_domains);
2517 spin_unlock_irq(&uncore->lock);
2522 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2523 #include "selftests/mock_uncore.c"
2524 #include "selftests/intel_uncore.c"