1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-13 11:10:39 +00:00

Initial support for AMD Phoenix APU with hybrid architecture

This work may not work: extended CPU Topology leaf is required.
This commit is contained in:
The Tumultuous Unicorn Of Darkness 2023-03-25 19:17:44 +01:00
commit 7542db9879
No known key found for this signature in database
GPG key ID: 1E55EE2EFF18BC1A
3 changed files with 29 additions and 0 deletions

View file

@ -1157,6 +1157,9 @@ static cpu_purpose_t cpu_ident_purpose(struct cpu_raw_data_t* raw)
}
switch (vendor) {
case VENDOR_AMD:
purpose = cpuid_identify_purpose_amd(raw);
break;
case VENDOR_INTEL:
purpose = cpuid_identify_purpose_intel(raw);
break;