[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[RFC PATCH 04/11] x86: Refactor early vendor lookup code to use x86_vendor_is()


  • To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • From: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
  • Date: Wed, 26 Nov 2025 17:44:06 +0100
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=tHPqWvJxK0uUNHK8HcO4zHOR5y6mLd6Htjzkis1gRm4=; b=yS7mPwl6mmrhzWkqWblpN5qYM+5gUUkjJbdPdf0ExYjoX4CJxA256AUfmLrMaryG9de5s74ucmxQXse0Ft3MjhY9pVLMnRLSi/9Yvi79jE1SIaoK38wvhAyMjHU6R2rE1m5oP3tYsfBdU2BRJ83MsKGoRrAm/urIQ+PuHTTGPnfEUmeXEHKUmM1iqhfvSTys556a+yQzo2hWxYORuhS751DjNW6fDlFzTCkeSkTUeFi/OzYGWa/Sw2u8ORp8BCfEqS2mTtNctYnKhKrRAaQ2N5zGdQu+/S1OB1DiOJ1/DiKkaIsZQvWWHwMatC54S/cQZh8SNN89ug4pcW+ijG2ryg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=NENgxrn8SeZHwfy5wXtGmHDt5l4pDJgtpPybHuafWpz4UTuXAMfrPy9MdtsLLExrFeXzEelG+JOIsqP/kSS+CLOmGjOVMWHnq7eDYKj7mYE9+g67RO9q14WGdptTPugvzxa9RYKw08E/UlH841sk9H5vU93QG7Tb+1LxjLwY2HD/p7Jr0Kq5Qh5Yez3tYaitoi9YmKYRTUZxVMs02BqhxSRCiMWAKP1ioAgEOuSc17ZOIY8ll+X8dLHt62Axk5lvhI4ScFdhuAKZr5mx2/coTXq6Q5dXxzKTUb/NJMbcen/HoAPwA40UXZLMRLxRom1lB/oaIsfh8eQ6lPlvRNKZdA==
  • Cc: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Jason Andryuk <jason.andryuk@xxxxxxx>, Xenia Ragiadakou <xenia.ragiadakou@xxxxxxx>, "Stefano Stabellini" <sstabellini@xxxxxxxxxx>
  • Delivery-date: Wed, 26 Nov 2025 16:45:31 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

Move the "unknown" vendor ahead of all others and have it NOT rely
on x86_vendor_is(), as that would yield incorrect values for the
single-vendor+no-fallback case when running in incorrect hardware
(because x86_vendor_is() becomes a folded constant of the single
compiled-in vendor).

This is one of the two places where x86_vendor_is() cannot be used,
along with the compatibility check on loaded guest CPU policies.

Signed-off-by: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
---
 xen/arch/x86/cpu/common.c | 31 +++++++++++++++++++++++--------
 1 file changed, 23 insertions(+), 8 deletions(-)

diff --git a/xen/arch/x86/cpu/common.c b/xen/arch/x86/cpu/common.c
index 393c30227f..c0c3606dd2 100644
--- a/xen/arch/x86/cpu/common.c
+++ b/xen/arch/x86/cpu/common.c
@@ -342,23 +342,38 @@ void __init early_cpu_init(bool verbose)
 
        c->x86_vendor = x86_cpuid_lookup_vendor(ebx, ecx, edx) &
                        X86_ENABLED_VENDORS;
-       switch (c->x86_vendor) {
-       case X86_VENDOR_INTEL:    intel_unlock_cpuid_leaves(c);
-                                 actual_cpu = intel_cpu_dev;    break;
-       case X86_VENDOR_AMD:      actual_cpu = amd_cpu_dev;      break;
-       case X86_VENDOR_CENTAUR:  actual_cpu = centaur_cpu_dev;  break;
-       case X86_VENDOR_SHANGHAI: actual_cpu = shanghai_cpu_dev; break;
-       case X86_VENDOR_HYGON:    actual_cpu = hygon_cpu_dev;    break;
-       default:
+
+       /*
+        * We can't rely on x86_vendor_is() here due to the single-vendor
+        * optimisation. It makes x86_vendor_is(x, y) rely on the constant `y`
+        * matching the single vendor Xen was compiled for and ignore the
+        * runtime variable `x`. In order to preserve sanity we must assert here
+        * that we never boot such a build in a CPU from another vendor, or
+        * major chaos would ensue.
+        */
+       if (c->x86_vendor == X86_VENDOR_UNKNOWN)
+       {
                if (verbose || !IS_ENABLED(CONFIG_UNKNOWN_CPU))
                        printk(XENLOG_ERR
                               "Unrecognised or unsupported CPU vendor 
'%.12s'\n",
                               c->x86_vendor_id);
+
                if (!IS_ENABLED(CONFIG_UNKNOWN_CPU))
                        panic("Cannot run in unknown/compiled-out CPU 
vendor.\n");
 
                actual_cpu = default_cpu;
        }
+       else if (x86_vendor_is(c->x86_vendor, X86_VENDOR_INTEL)) {
+               intel_unlock_cpuid_leaves(c);
+               actual_cpu = intel_cpu_dev;
+       } else if (x86_vendor_is(c->x86_vendor, X86_VENDOR_AMD))
+               actual_cpu = amd_cpu_dev;
+       else if (x86_vendor_is(c->x86_vendor, X86_VENDOR_CENTAUR))
+               actual_cpu = centaur_cpu_dev;
+       else if (x86_vendor_is(c->x86_vendor, X86_VENDOR_SHANGHAI))
+               actual_cpu = shanghai_cpu_dev;
+       else if (x86_vendor_is(c->x86_vendor, X86_VENDOR_HYGON))
+               actual_cpu = hygon_cpu_dev;
 
        cpuid(0x00000001, &eax, &ebx, &ecx, &edx);
        c->x86 = get_cpu_family(eax, &c->x86_model, &c->x86_mask);
-- 
2.43.0




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.