These series fixes the problems encoding APIC ID for AMD EPYC cpu models. https://bugzilla.redhat.com/show_bug.cgi?id=1728166
This is the first pass to give an idea of the changes required to address the issue. Please feel free to comment. Currently, apic id is decoded based on sockets/dies/cores/threads. This appears to work for most standard configurations for AMD and other vendors. But this decoding does not follow AMD's APIC ID enumeration. In some cases this causes CPU topology inconstancy. While booting guest Kernel is trying to validate topology. It finds the topology not aligning to EPYC models. To fix the problem we need to build the topology as per the Processor Programming Reference (PPR) for AMD Family 17h Model 01h, Revision B1 Processors. It is available at https://www.amd.com/en/support/tech-docs Here is the text from the PPR. 2.1.10.2.1.3 ApicId Enumeration Requirements Operating systems are expected to use Core::X86::Cpuid::SizeId[ApicIdCoreIdSize], the number of least significant bits in the Initial APIC ID that indicate core ID within a processor, in constructing per-core CPUID masks. Core::X86::Cpuid::SizeId[ApicIdCoreIdSize] determines the maximum number of cores (MNC) that the processor could theoretically support, not the actual number of cores that are actually implemented or enabled on the processor, as indicated by Core::X86::Cpuid::SizeId[NC]. Each Core::X86::Apic::ApicId[ApicId] register is preset as follows: • ApicId[6] = Socket ID. • ApicId[5:4] = Node ID. • ApicId[3] = Logical CCX L3 complex ID • ApicId[2:0]= (SMT) ? {LogicalCoreID[1:0],ThreadId} : {1'b0,LogicalCoreID[1:0]}. """ Babu Moger (5): hw/boards: Add sockets in CpuTopology structure hw/i386: Add AMD EPYC topology encoding i386: Use topology functions from topology.h hw/i386: Generate apicid based on cpu_type i386: Fix pkg_id offset EPYC hw/core/machine.c | 1 + hw/i386/pc.c | 82 ++++++++++++++++--- include/hw/boards.h | 2 + include/hw/i386/topology.h | 140 ++++++++++++++++++++++++++++++++ target/i386/cpu.c | 160 +++++++++---------------------------- vl.c | 1 + 6 files changed, 251 insertions(+), 135 deletions(-) -- 2.20.1