Skip to content

Commit

Permalink
ShellPkg/SmbiosView: Support New ProcessorFamily for SMBIOS Type4
Browse files Browse the repository at this point in the history
The patch updates SmbiosView to support new ProcessorFamily for SMBIOS
Type4 based on SMBIOS 3.8.0.

Signed-off-by: Jason Lou <[email protected]>
Reviewed-by: Liming Gao <[email protected]>
Reviewed-by: Star Zeng <[email protected]>
Reviewed-by: Zhichao Gao <[email protected]>
Cc: Liming Gao <[email protected]>
Cc: Zhichao Gao <[email protected]>
  • Loading branch information
jasonlouyun authored and mergify[bot] committed Mar 4, 2024
1 parent 4772385 commit 3775122
Showing 1 changed file with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @file
Module for clarifying the content of the smbios structure element information.
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR>
Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
(C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
(C) Copyright 2015-2019 Hewlett Packard Enterprise Development LP<BR>
Expand Down Expand Up @@ -2678,6 +2678,38 @@ DisplayProcessorFamily2 (
Print (L"MultiCoreLoongson3D\n");
break;

case 0x300:
Print (L"IntelCore3\n");
break;

case 0x301:
Print (L"IntelCore5\n");
break;

case 0x302:
Print (L"IntelCore7\n");
break;

case 0x303:
Print (L"IntelCore9\n");
break;

case 0x304:
Print (L"IntelCoreUltra3\n");
break;

case 0x305:
Print (L"IntelCoreUltra5\n");
break;

case 0x306:
Print (L"IntelCoreUltra7\n");
break;

case 0x307:
Print (L"IntelCoreUltra9\n");
break;

default:
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_UNDEFINED_PROC_FAMILY), gShellDebug1HiiHandle);
}
Expand Down

0 comments on commit 3775122

Please sign in to comment.