- 
                Notifications
    You must be signed in to change notification settings 
- Fork 373
adding-new-intel-cpuids #334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -193,8 +193,31 @@ enum cpuinfo_uarch cpuinfo_x86_decode_uarch( | |
| case 0x96: // Elkhart Lake | ||
| case 0x9C: // Jacobsville | ||
| return cpuinfo_uarch_tremont; | ||
| case 0xBE: // Alder Lake-N | ||
| return cpuinfo_uarch_gracemont; | ||
| case 0x8F: // Sapphire Rapids (Golden Cove) | ||
| return cpuinfo_uarch_golden_cove; | ||
| case 0x97: // Alder Lake S (Golden Cove) | ||
| case 0x9A: // Alder Lake (Golden Cove) | ||
| case 0x9D: // Alder Lake P (Golden Cove) | ||
| case 0xB7: // Raptor Lake (Golden Cove) | ||
| case 0xBA: // Raptor Lake S (Golden Cove) | ||
| case 0xBF: // Raptor Lake HX (Golden Cove) | ||
| return cpuinfo_uarch_golden_cove; | ||
| case 0xBE: // Alder Lake N / Raptor Lake N (Golden Cove) | ||
| return cpuinfo_uarch_gracemont; | ||
| case 0xAD: // Granite Rapids (Redood Cove) | ||
| return cpuinfo_uarch_redwood_cove; | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove. ditto | ||
| case 0xAA: // Meteor Lake P/M (Redwood Cove) | ||
| case 0xAC: // Meteor Lake S (Redwood Cove) | ||
| case 0xAE: // Meteor Lake U/Y (Redwood Cove) | ||
| return cpuinfo_uarch_redwood_cove; | ||
| case 0xB5: // Arrow Lake U | ||
| case 0xC5: // Arrow Lake P | ||
| case 0xC6: // Arrow Lake S/HX | ||
| return cpuinfo_uarch_lion_cove; | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto | ||
| case 0xBD: // Lunar Lake, (Lion Cove) | ||
| return cpuinfo_uarch_lion_cove; | ||
| case 0xCC: // Panther Lake | ||
| return cpuinfo_uarch_cougar_cove; | ||
| case 0xAF: // Sierra Forest | ||
| return cpuinfo_uarch_crestmont; | ||
| case 0xDD: // Clearwater Forest | ||
|  | ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -76,6 +76,16 @@ static const char* uarch_to_string(enum cpuinfo_uarch uarch) { | |
| return "Broadwell"; | ||
| case cpuinfo_uarch_sky_lake: | ||
| return "Sky Lake"; | ||
| case cpuinfo_uarch_golden_cove: | ||
| return "Golden Cove"; | ||
| case cpuinfo_uarch_redwood_cove: | ||
| return "Redwood Cove"; | ||
| case cpuinfo_uarch_lion_cove: | ||
| return "Lion Cove"; | ||
| case cpuinfo_uarch_cougar_cove: | ||
| return "Cougar Cove"; | ||
| case cpuinfo_uarch_skymont: | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hmmm... there are no skymont stand alone soc? | ||
| return "Skymont"; | ||
| case cpuinfo_uarch_palm_cove: | ||
| return "Palm Cove"; | ||
| case cpuinfo_uarch_sunny_cove: | ||
|  | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove - all golden cove can share one return