All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian A. Ehrhardt" <lk@c--e.de>
To: Paul Menzel <pmenzel@molgen.mpg.de>
Cc: "Jörg Rödel" <joro@8bytes.org>, "Will Deacon" <will@kernel.org>,
	iommu@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: Dell XPS 13 9360: DMAR errors `DRHD: handling fault status reg 2` and `[INTR-REMAP] Request device [f0:1f.0] fault index 0x0`
Date: Fri, 19 Jan 2024 18:57:46 +0100	[thread overview]
Message-ID: <Zaq4Gv2SWhd12Lx0@cae.in-ulm.de> (raw)
In-Reply-To: <9a24c335-8ec5-48c9-9bdd-b0dac5ecbca8@molgen.mpg.de>


Hi Paul,

On Fri, Jan 19, 2024 at 01:59:29PM +0100, Paul Menzel wrote:
> On a Dell XPS 13 9360 Linux 6.6.8, 6.6.11 and 6.7 (and earlier versions) log
> the lines below when resuming from ACPI S3 (deep):
> 
>     [    0.000000] Linux version 6.7-amd64 (debian-kernel@lists.debian.org)
> (x86_64-linux-gnu-gcc-13 (Debian 13.2.0-9) 13.2.0, GNU ld (GNU Binutils for
> Debian) 2.41.50.20231227) #1 SMP PREEMPT_DYNAMIC Debian 6.7-1~exp1
> (2024-01-08)
>     [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.7-amd64
> root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer
> mem_sleep_default=deep log_buf_len=8M
>     […]
>     [    0.000000] DMI: Dell Inc. XPS 13 9360/0596KF, BIOS 2.21.0 06/02/2022
>     […]
>     [   99.711230] PM: suspend entry (deep)
>     […]
>     [   99.722101] printk: Suspending console(s) (use no_console_suspend to
> debug)
>     [  100.285178] ACPI: EC: interrupt blocked
>     [  100.319908] ACPI: PM: Preparing to enter system sleep state S3
>     [  100.331793] ACPI: EC: event blocked
>     [  100.331798] ACPI: EC: EC stopped
>     [  100.331800] ACPI: PM: Saving platform NVS memory
>     [  100.335224] Disabling non-boot CPUs ...
>     [  100.337412] smpboot: CPU 1 is now offline
>     [  100.341065] smpboot: CPU 2 is now offline
>     [  100.346441] smpboot: CPU 3 is now offline
>     [  100.353086] ACPI: PM: Low-level resume complete
>     [  100.353129] ACPI: EC: EC started
>     [  100.353129] ACPI: PM: Restoring platform NVS memory
>     [  100.355219] Enabling non-boot CPUs ...
>     [  100.355244] smpboot: Booting Node 0 Processor 1 APIC 0x2
>     [  100.355954] CPU1 is up
>     [  100.355972] smpboot: Booting Node 0 Processor 2 APIC 0x1
>     [  100.356698] CPU2 is up
>     [  100.356716] smpboot: Booting Node 0 Processor 3 APIC 0x3
>     [  100.357371] CPU3 is up
>     [  100.360217] ACPI: PM: Waking up from system sleep state S3
>     [  100.668380] ACPI: EC: interrupt unblocked
>     [  100.668598] pcieport 0000:00:1c.0: Intel SPT PCH root port ACS
> workaround enabled
>     [  100.668606] pcieport 0000:00:1c.4: Intel SPT PCH root port ACS
> workaround enabled
>     [  100.668643] pcieport 0000:00:1d.0: Intel SPT PCH root port ACS
> workaround enabled
>     [  100.690996] DMAR: DRHD: handling fault status reg 2
>     [  100.691001] DMAR: [INTR-REMAP] Request device [f0:1f.0] fault index
> 0x0 [fault reason 0x25] Blocked a compatibility format interrupt request
> 
> But I am unable to find the device f0:1f.0:

This is probably an ACPI enumerated device. These are platform
devices that pose as a PCI device for the purpose of interrupt
remapping but do not enumerate via PCI. The PCI ID assigned to
these hidden devices is enumerated via ANDD entries in the
DMAR table. You can decode this table with from
/sys/firmware/acpi/tables/DMAR with iasl to verify.

Your dmesg shows two ANDD records for your I2C controllers,
so somehwo the I2C controller is sending interrups that DMAR
doesn't like (probably because the I2C controller is not yet
resumed properly).

Thus my guess is that this is an issue with the suspend/resume hooks
of the I2C controllers not with the IOMMU.

      regards   Christian


  parent reply	other threads:[~2024-01-19 17:57 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-19 12:59 Dell XPS 13 9360: DMAR errors `DRHD: handling fault status reg 2` and `[INTR-REMAP] Request device [f0:1f.0] fault index 0x0` Paul Menzel
2024-01-19 15:11 ` Jörg Rödel
2024-01-19 17:57 ` Christian A. Ehrhardt [this message]
2024-01-22 12:16   ` Paul Menzel
2024-01-22 13:22     ` Christian A. Ehrhardt
2024-01-22 12:53 ` Baolu Lu
2024-01-22 13:45   ` Christian A. Ehrhardt
2024-01-25  9:37     ` Ethan Zhao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Zaq4Gv2SWhd12Lx0@cae.in-ulm.de \
    --to=lk@c--e.de \
    --cc=iommu@lists.linux.dev \
    --cc=joro@8bytes.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmenzel@molgen.mpg.de \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.