We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8b153 commit 10bf0a0Copy full SHA for 10bf0a0
include/cpuinfo.h
@@ -386,6 +386,9 @@ enum cpuinfo_uarch {
386
/** Intel/Marvell XScale series. */
387
cpuinfo_uarch_xscale = 0x00100600,
388
389
+ /** Intel Meteor Lake microarchitecture (Core Ultra 1st gen) */
390
+ cpuinfo_uarch_meteor_lake = 0x00100700,
391
+
392
/** AMD K5. */
393
cpuinfo_uarch_k5 = 0x00200100,
394
/** AMD K6 and alike. */
src/x86/uarch.c
@@ -167,6 +167,8 @@ enum cpuinfo_uarch cpuinfo_x86_decode_uarch(
167
case 0x7D: // Ice Lake-Y
168
case 0x7E: // Ice Lake-U
169
return cpuinfo_uarch_sunny_cove;
170
+ case 0xAA: // Meteor Lake
171
+ return cpuinfo_uarch_meteor_lake;
172
173
/* Low-power cores */
174
case 0x1C: // Diamondville,
0 commit comments