mirror of
https://github.com/anrieff/libcpuid
synced 2024-12-16 16:35:45 +00:00
DB: add Intel Raport lake Refresh
Related to InstLatx64/InstLatx64@2a34937e15
This commit is contained in:
parent
43ee47f965
commit
e0cf171cd8
4 changed files with 5664 additions and 0 deletions
|
@ -66,6 +66,7 @@ enum _intel_model_t {
|
|||
_11xxx, /* Core i[3579] 11xxx */
|
||||
_12xxx, /* Core i[3579] 12xxx */
|
||||
_13xxx, /* Core i[3579] 13xxx */
|
||||
_14xxx, /* Core i[3579] 14xxx */
|
||||
_x1xx, /* Xeon Bronze/Silver/Gold/Platinum x1xx */
|
||||
_x2xx, /* Xeon Bronze/Silver/Gold/Platinum x2xx */
|
||||
_x3xx, /* Xeon Bronze/Silver/Gold/Platinum x3xx */
|
||||
|
@ -516,6 +517,14 @@ const struct match_entry_t cpudb_intel[] = {
|
|||
{ 6, 10, -1, -1, 186, -1, -1, -1, NC, CORE_|_I_|_9|_H , _13xxx, "Raptor Lake-H (Core i9)" },
|
||||
{ 6, 10, -1, -1, 186, -1, -1, -1, NC, CORE_|_I_|_7|_H , _13xxx, "Raptor Lake-H (Core i7)" },
|
||||
{ 6, 10, -1, -1, 186, -1, -1, -1, NC, CORE_|_I_|_5|_H , _13xxx, "Raptor Lake-H (Core i5)" },
|
||||
/* Raptor Lake Refresh CPUs (2023, 14th Core i gen, Intel 7) => https://en.wikipedia.org/wiki/Raptor_Lake#List_of_14th_generation_Raptor_Lake_processors */
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_9 , _14xxx, "Raptor Lake-S (Core i9)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_7 , _14xxx, "Raptor Lake-S (Core i7)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_5 , _14xxx, "Raptor Lake-S (Core i5)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_3 , _14xxx, "Raptor Lake-S (Core i3)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_9|_H|_X, _14xxx, "Raptor Lake-HX (Core i9)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_7|_H|_X, _14xxx, "Raptor Lake-HX (Core i7)" },
|
||||
{ 6, 7, -1, -1, 183, -1, -1, -1, NC, CORE_|_I_|_5|_H|_X, _14xxx, "Raptor Lake-HX (Core i5)" },
|
||||
|
||||
/* Sapphire Rapids CPUs (2023, 4th Xeon Scalable gen, Intel 7) => https://en.wikichip.org/wiki/intel/microarchitectures/sapphire_rapids */
|
||||
{ 6, 15, -1, -1, 143, -1, -1, -1, NC, XEON_|_W_|_9 , _x4xx, "Sapphire Rapids-WS (Xeon w9)" },
|
||||
|
@ -905,6 +914,7 @@ static intel_model_t get_model_code(struct cpu_id_t* data)
|
|||
if ((bs[i] == '1') && (bs[i+1] == '1')) return _11xxx;
|
||||
if ((bs[i] == '1') && (bs[i+1] == '2')) return _12xxx;
|
||||
if ((bs[i] == '1') && (bs[i+1] == '3')) return _13xxx;
|
||||
if ((bs[i] == '1') && (bs[i+1] == '4')) return _14xxx;
|
||||
return UNKNOWN;
|
||||
}
|
||||
else if ((i = match_pattern(bs, "Xeon(R) [WBSGP]")) != 0) {
|
||||
|
|
1434
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i5.test
Normal file
1434
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i5.test
Normal file
File diff suppressed because it is too large
Load diff
1978
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i7.test
Normal file
1978
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i7.test
Normal file
File diff suppressed because it is too large
Load diff
2242
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i9.test
Normal file
2242
tests/intel/x86-64/raptor-cove/raptor-lake-s-refresh-core-i9.test
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue