Attention is currently required from: Jérémy Compostella.
Naresh Solanki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85639?usp=email )
Change subject: arch/x86/cpu: Add element id to struct cpu_cache_info ......................................................................
arch/x86/cpu: Add element id to struct cpu_cache_info
Add variable 'id' to track cache ID.
Change-Id: I29002931b559a05756419e0c4ec5c78586d3c3a5 Signed-off-by: Naresh Solanki naresh.solanki@9elements.com --- M src/arch/x86/include/arch/cpu.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/39/85639/1
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index 8bc6a18..c42530b 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -277,6 +277,7 @@ size_t physical_partitions; size_t num_cores_shared; bool fully_associative; + uint8_t id; };
enum cpu_type cpu_check_deterministic_cache_cpuid_supported(void);