Skip to content

Commit

Permalink
OcCpuLib: Fixed Alder Lake SMBIOS CPU model information
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Nov 10, 2021
1 parent 6cef37f commit 13af8ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Expand Up @@ -6,6 +6,7 @@ OpenCore Changelog
- Explicitly restricted `ResizeAppleGpuBars` to 0 and -1
- Fixed OpenCanopy long labels fade-out over graphics background
- Fixed `ProvideConsoleGop` not disabling blit-only modes (e.g. on Z690)
- Fixed Alder Lake SMBIOS CPU model information

#### v0.7.5
- Revised OpenLinuxBoot documentation
Expand Down
1 change: 1 addition & 0 deletions Include/Intel/IndustryStandard/ProcessorInfo.h
Expand Up @@ -205,6 +205,7 @@ enum {
#define CPU_MODEL_COMETLAKE_U 0xA6
#define CPU_MODEL_ROCKETLAKE_S 0xA7 /* desktop RocketLake */
#define CPU_MODEL_TIGERLAKE_U 0x8C
#define CPU_MODEL_ALDERLAKE_S 0x97

#define AMD_CPU_FAMILY 0xF
#define AMD_CPU_EXT_FAMILY_15H 0x6
Expand Down
1 change: 1 addition & 0 deletions Library/OcCpuLib/AppleCpuSupport.c
Expand Up @@ -549,6 +549,7 @@ InternalDetectAppleProcessorType (
case CPU_MODEL_ICELAKE_U: // 0x7E FIXME - unknown, for now
case CPU_MODEL_ICELAKE_SP: // 0x9F FIXME - unknown, for now
case CPU_MODEL_TIGERLAKE_U: // 0x8C FIXME - unknown, for now
case CPU_MODEL_ALDERLAKE_S: // 0x97 FIXME - unknown, for now
if (AppleMajorType == AppleProcessorMajorM3) {
// MB101 (m3 7Y32)
return AppleProcessorTypeCoreM3Type7; // 0x0C07
Expand Down

0 comments on commit 13af8ec

Please sign in to comment.