Messages in this thread Patch in this message |  | | From | Tony Luck <> | | Subject | [PATCH] x86/cpu: Add CPU model numbers for Novalake | | Date | Fri, 1 Aug 2025 09:00:27 -0700 |
| |
Novalake has both desktop and mobile versions.
Signed-off-by: Tony Luck <tony.luck@intel.com> ---
Note this patch is on top of earlier Wildcatlake patch: Link: https://lore.kernel.org/all/20250730150437.4701-1-tony.luck@intel.com/
arch/x86/include/asm/intel-family.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/arch/x86/include/asm/intel-family.h b/arch/x86/include/asm/intel-family.h index 5367dcbf5b30..e345dbdf933e 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -152,6 +152,9 @@ #define INTEL_WILDCATLAKE_L IFM(6, 0xD5) +#define INTEL_NOVALAKE IFM(18, 0x01) +#define INTEL_NOVALAKE_L IFM(18, 0x03) + /* "Small Core" Processors (Atom/E-Core) */ #define INTEL_ATOM_BONNELL IFM(6, 0x1C) /* Diamondville, Pineview */ -- 2.50.1
|  |