From: Korakit Seemakhupt <korakit@google.com>
To: binbin.wu@linux.intel.com
Cc: bp@alien8.de, dave.hansen@linux.intel.com,
dionnaglaze@google.com, hpa@zytor.com, jgross@suse.com,
jiewen.yao@intel.com, jxgao@google.com,
kirill.shutemov@linux.intel.com, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org, mingo@redhat.com,
nik.borisov@suse.com, pbonzini@redhat.com, pgonda@google.com,
rick.p.edgecombe@intel.com, seanjc@google.com,
tglx@linutronix.de, thomas.lendacky@amd.com,
vkuznets@redhat.com, x86@kernel.org, vannapurve@google.com
Subject: Re: [PATCH 0/2] x86/kvm: Force legacy PCI hole as WB under SNP/TDX
Date: Fri, 15 Aug 2025 23:55:52 +0000 [thread overview]
Message-ID: <20250815235552.969779-1-korakit@google.com> (raw)
In-Reply-To: <ad616489-1546-4f6a-9242-a719952e19b6@linux.intel.com>
>> On 5/28/2025 11:33 PM, Sean Christopherson wrote:
>>
>> Summary, with the questions at the end.
>>
>> Recent upstream kernels running in GCE SNP/TDX VMs fail to probe the TPM due to
>> the TPM driver's ioremap (with UC) failing because the kernel has already mapped
>> the range using a cachaeable mapping (WB).
>>
>> ioremap error for 0xfed40000-0xfed45000, requested 0x2, got 0x0
>> tpm_tis MSFT0101:00: probe with driver tpm_tis failed with error -12
>>
>> The "guilty" commit is 8e690b817e38 ("x86/kvm: Override default caching mode for
>> SEV-SNP and TDX"), which as the subject suggests, forces the kernel's MTRR memtype
>> to WB. With SNP and TDX, the virtual MTRR state is (a) controlled by the VMM and
>> thus is untrusted, and (b) _should_ be irrelevant because no known hypervisor
>> actually honors the memtypes programmed into the virtual MTRRs.
>>
>> It turns out that the kernel has been relying on the MTRRs to force the TPM TIS
>> region (and potentially other regions) to be UC, so that the kernel ACPI driver's
>> attempts to map of SystemMemory entries as cacheable get forced to UC. With MTRRs
>> forced WB, x86_acpi_os_ioremap() succeeds in creating a WB mapping, which in turn
>> causes the ioremap infrastructure to reject the TPM driver's UC mapping.
>>
>> IIUC, the TPM entry(s) in the ACPI tables for GCE VMs are derived (built?) from
>> EDK2's TPM ASL. And (again, IIUC), this code in SecurityPkg/Tcg/Tcg2Acpi/Tpm.asl[1]
>>
>> //
>> // Operational region for TPM access
>> //
>> OperationRegion (TPMR, SystemMemory, 0xfed40000, 0x5000)
>>
>> generates the problematic SystemMemory entry that triggers the ACPI driver's
>> auto-mapping logic.
>>
>> QEMU-based VMs don't suffer the same fate, as QEMU intentionally[2] doesn't use
>> EDK2's AML for the TPM, and QEMU doesn't define a SystemMemory entry, just a
>> Memory32Fixed entry.
>>
>> Presumably this an EDK2 bug? If it's not an EDK2 bug, then how is the kernel's
>> ACPI driver supposed to know that some ranges of SystemMemory must be mapped UC?
>
> On 7/30/2025 3:34 PM, Binbin Wu: Wrote
>
> According to the ACPI spec 6.6, an operation region of SystemMemory has no
> interface to specify the cacheable attribute.
>
> One solution could be using MTRRs to communicate the memory attribute of legacy
> PCI hole to the kernel. But during the PUCK meeting last week, Sean mentioned
> that "long-term, firmware should not be using MTRRs to communicate anything to
> the kernel." So this solution is not preferred.
>
> If not MTRRs, there should be an alternative way to do the job.
> 1. ACPI table
> According to the ACPI spec, neither operation region nor 32-Bit Fixed Memory
> Range Descriptor can specify the cacheable attribute.
> "Address Space Resource Descriptors" could be used to describe a memory range
> and the they can specify the cacheable attribute via "Type Specific Flags".
> One of the Address Space Resource Descriptors could be added to the ACPI
> table as a hint when the kernel do the mapping for operation region.
> (There is "System Physical Address (SPA) Range Structure", which also can
> specify the cacheable attribute. But it's should be used for NVDIMMs.)
> 2. EFI memory map descriptor
> EFI memory descriptor can specify the cacheable attribute. Firmware can add
> a EFI memory descriptor for the TPM TIS device as a hint when the kernel do
> the mapping for operation region.
>
> Operation region of SystemMemory is still needed if a "Control Method" of APCI
> needs to access a field, e.g., the method _STA. Checking another descriptor for
> cacheable attribute, either "Address Space Resource Descriptor" or "EFI memory
> map descriptor" during the ACPI code doing the mapping for operation region
> makes the code complicated.
>
> Another thing is if long-term firmware should not be using MTRRs to to
> communicate anything to the kernel. It seems it's safer to use ioremap() instead
> of ioremap_cache() for MMIO resource when the kernel do the mapping for the
> operation region access?
Even after changing the ACPI memory resource descriptor from 32-Bit Fixed
Memory to DWordMemory with caching parameter set to uncached, the ACPI stack still
tries to ioremap the memory as cachable.
However, forcing the Operation Region to be PCI_Config instead of SystemMemory
in the ACPI table seems to allow the vTPM device initilization to succeed as
it avoids the vTPM region from getting ioremapped by the ACPI stack.
We have also verified that forcing the ACPI stack to use ioremap() instead of
ioremap_cache() also allows vTPM to initialize properly. The reference change
I made is below.
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index dae6a73be40e..2771d3f66d0a 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1821,7 +1821,7 @@ u64 x86_default_get_root_pointer(void)
#ifdef CONFIG_XEN_PV
void __iomem *x86_acpi_os_ioremap(acpi_physical_address phys, acpi_size size)
{
- return ioremap_cache(phys, size);
+ return ioremap(phys, size);
}
next prev parent reply other threads:[~2025-08-15 23:55 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-09 16:54 Jianxiong Gao
2025-07-14 9:06 ` Binbin Wu
2025-07-14 11:24 ` Nikolay Borisov
2025-07-15 2:53 ` Binbin Wu
2025-07-16 9:51 ` Binbin Wu
2025-07-23 14:34 ` Sean Christopherson
2025-07-24 3:16 ` Binbin Wu
2025-07-28 15:33 ` Sean Christopherson
2025-07-30 7:34 ` Binbin Wu
2025-08-15 23:55 ` Korakit Seemakhupt [this message]
2025-08-18 11:07 ` Binbin Wu
2025-08-20 3:07 ` Vishal Annapurve
2025-08-20 10:03 ` Binbin Wu
2025-08-20 11:13 ` Binbin Wu
2025-08-20 17:56 ` Sean Christopherson
2025-08-21 3:30 ` Binbin Wu
2025-08-21 5:23 ` Binbin Wu
2025-08-21 6:02 ` Jürgen Groß
2025-08-21 15:27 ` Sean Christopherson
2025-08-28 0:07 ` Sean Christopherson
-- strict thread matches above, loose matches on Subject: below --
2025-02-01 0:50 Sean Christopherson
2025-02-01 14:25 ` Dionna Amalie Glaze
2025-02-03 18:14 ` Edgecombe, Rick P
2025-02-03 20:33 ` Sean Christopherson
2025-02-03 23:01 ` Edgecombe, Rick P
2025-02-04 0:27 ` Sean Christopherson
2025-02-05 3:51 ` Edgecombe, Rick P
2025-02-05 7:49 ` Xu, Min M
2025-02-10 15:29 ` Binbin Wu
2025-07-08 14:24 ` Nikolay Borisov
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=20250815235552.969779-1-korakit@google.com \
--to=korakit@google.com \
--cc=binbin.wu@linux.intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=dionnaglaze@google.com \
--cc=hpa@zytor.com \
--cc=jgross@suse.com \
--cc=jiewen.yao@intel.com \
--cc=jxgao@google.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=nik.borisov@suse.com \
--cc=pbonzini@redhat.com \
--cc=pgonda@google.com \
--cc=rick.p.edgecombe@intel.com \
--cc=seanjc@google.com \
--cc=tglx@linutronix.de \
--cc=thomas.lendacky@amd.com \
--cc=vannapurve@google.com \
--cc=vkuznets@redhat.com \
--cc=x86@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®