diff options
| author | Tony Luck <[email protected]> | 2024-09-23 17:37:50 +0000 |
|---|---|---|
| committer | Dave Hansen <[email protected]> | 2024-09-26 17:47:49 +0000 |
| commit | d1fb034b75a8a96fcb4bf01a7c0e1421eef833a3 (patch) | |
| tree | 940e480f59034652cc8363443a0a07f0e62e1e33 | |
| parent | x86/tdx: Fix "in-kernel MMIO" check (diff) | |
| download | kernel-d1fb034b75a8a96fcb4bf01a7c0e1421eef833a3.tar.gz kernel-d1fb034b75a8a96fcb4bf01a7c0e1421eef833a3.zip | |
x86/cpu: Add two Intel CPU model numbers
Pantherlake is a mobile CPU. Diamond Rapids next generation Xeon.
Signed-off-by: Tony Luck <[email protected]>
Signed-off-by: Dave Hansen <[email protected]>
Link: https://lore.kernel.org/all/20240923173750.16874-1-tony.luck%40intel.com
| -rw-r--r-- | arch/x86/include/asm/intel-family.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/intel-family.h b/arch/x86/include/asm/intel-family.h index f81a851c46dc..17d899da4650 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -191,6 +191,8 @@ #define INTEL_FAM6_LUNARLAKE_M 0xBD #define INTEL_LUNARLAKE_M IFM(6, 0xBD) +#define INTEL_PANTHERLAKE_L IFM(6, 0xCC) + /* "Small Core" Processors (Atom/E-Core) */ #define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ @@ -257,4 +259,7 @@ #define INTEL_FAM5_QUARK_X1000 0x09 /* Quark X1000 SoC */ #define INTEL_QUARK_X1000 IFM(5, 0x09) /* Quark X1000 SoC */ +/* Family 19 */ +#define INTEL_PANTHERCOVE_X IFM(19, 0x01) /* Diamond Rapids */ + #endif /* _ASM_X86_INTEL_FAMILY_H */ |
