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:
parent
37462ab492
commit
7542db9879
3 changed files with 29 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue