From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D805AC3A5A2 for ; Sun, 22 Sep 2019 19:22:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A315A20869 for ; Sun, 22 Sep 2019 19:22:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569180175; bh=U5Yzc058CKUXqtCAG/wb8P/YKKdVwl+o0hV2j/cpivM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=SLx3l4QPfimPMq6FtB8oFAlfInAycsyYGwtcLF9r9/mQ0MeXws0pFo5pWB7bZVsfr ODlgHEPXWlMClzUtzflrclX6STSEwcxSmB2XCHeY49F1A0xR8y1hyx1lM4Ic392EXc C+lP12iIt/XN/+6QzM7SLQlitgpNHTR6S6oN9N7A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731212AbfIVTWy (ORCPT ); Sun, 22 Sep 2019 15:22:54 -0400 Received: from mail.kernel.org ([198.145.29.99]:53580 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2394348AbfIVSxi (ORCPT ); Sun, 22 Sep 2019 14:53:38 -0400 Received: from sasha-vm.mshome.net (c-73-47-72-35.hsd1.nh.comcast.net [73.47.72.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3DB07208C2; Sun, 22 Sep 2019 18:53:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569178417; bh=U5Yzc058CKUXqtCAG/wb8P/YKKdVwl+o0hV2j/cpivM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bMeOEglSFmiTVOc5qXxOmpnxUZbsBuZbfXuKc9h+BBZuq602lbC/V8ylsViltEnJr plhHgSVeOMRej0AEBjgn/BwPa1kb8upgRhRXnt4g+hqq8+fT/JrGbeyxcD3WKHxoX0 s6Q9H/oN6IoKm2ijmgKGUca235Deg85y3jpX2sjA= From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Gayatri Kammela , Tony Luck , Linus Torvalds , Peter Zijlstra , Rahul Tanwar , Thomas Gleixner , Ingo Molnar , Sasha Levin Subject: [PATCH AUTOSEL 5.2 155/185] x86/cpu: Add Tiger Lake to Intel family Date: Sun, 22 Sep 2019 14:48:53 -0400 Message-Id: <20190922184924.32534-155-sashal@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190922184924.32534-1-sashal@kernel.org> References: <20190922184924.32534-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Gayatri Kammela [ Upstream commit 6e1c32c5dbb4b90eea8f964c2869d0bde050dbe0 ] Add the model numbers/CPUIDs of Tiger Lake mobile and desktop to the Intel family. Suggested-by: Tony Luck Signed-off-by: Gayatri Kammela Signed-off-by: Tony Luck Reviewed-by: Tony Luck Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Rahul Tanwar Cc: Thomas Gleixner Link: https://lkml.kernel.org/r/20190905193020.14707-2-tony.luck@intel.com Signed-off-by: Ingo Molnar Signed-off-by: Sasha Levin --- 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 f60ddd655c787..82a57d344b9bc 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -58,6 +58,9 @@ #define INTEL_FAM6_ICELAKE_MOBILE 0x7E #define INTEL_FAM6_ICELAKE_NNPI 0x9D +#define INTEL_FAM6_TIGERLAKE_L 0x8C +#define INTEL_FAM6_TIGERLAKE 0x8D + /* "Small Core" Processors (Atom) */ #define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ -- 2.20.1