From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 517EB4F88C; Tue, 14 May 2024 10:51:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715683898; cv=none; b=I+pVFgLn4NuKaVRzGQLMj+T4oNqNN2ocA3JdxfwqAHxwH6D3+1An9DNmqZmyrNtdOSBTuJAA67gtnkLloHDfMcpjVRahpZKaQ65elBMFygq7C2Nx/wKe4cDQpTolKtXowuOoniLzlfv53RgXhR5tjeZUQsjoRqrf+Aq0MgG1UWs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715683898; c=relaxed/simple; bh=jKCiEHGbhmLyn9XtL9wH5BzWZauxnXMdRts07boTwC4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Tf3MNk+kWwcuAW6aKKQfcDLB89WYl3eF9QWIhB4Kqc3kY1Y36n1O1Y0EIJtgWjHScuY3Mm6JjeN/pa0hTfmZTrjQXs9hmKOYJzVKpQocH24B5fdfYAc9/MVBngLzvIV2BvY8gpq9WQE5kXPygIbNtvrPeXLwFC3b101FopvTBU0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ibNZq5oR; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ibNZq5oR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 231A7C2BD10; Tue, 14 May 2024 10:51:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1715683897; bh=jKCiEHGbhmLyn9XtL9wH5BzWZauxnXMdRts07boTwC4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ibNZq5oRI7Z3DpViMcGCVQlY2wkWTfoUsyfP9QGv9C0m5bLZEuuHU0vAGqa9ZUmof idNhT+Fmb+imF4hzND2VTtHhcAWZ3UE2DsLDnzIwBQUEbNl6LEV9flonARnDKK66zY MtBc03a0RLQa33pp4oDY1SOtbMUzdPsZSitEJZYE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alexander Usyskin , Tomas Winkler Subject: [PATCH 6.8 292/336] mei: me: add lunar lake point M DID Date: Tue, 14 May 2024 12:18:16 +0200 Message-ID: <20240514101049.639846151@linuxfoundation.org> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240514101038.595152603@linuxfoundation.org> References: <20240514101038.595152603@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.8-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Usyskin commit 4108a30f1097eead0f6bd5d885e6bf093b4d460f upstream. Add Lunar (Point) Lake M device id. Cc: stable@vger.kernel.org Signed-off-by: Alexander Usyskin Signed-off-by: Tomas Winkler Link: https://lore.kernel.org/r/20240421135631.223362-1-tomas.winkler@intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/misc/mei/hw-me-regs.h | 2 ++ drivers/misc/mei/pci-me.c | 2 ++ 2 files changed, 4 insertions(+) --- a/drivers/misc/mei/hw-me-regs.h +++ b/drivers/misc/mei/hw-me-regs.h @@ -115,6 +115,8 @@ #define MEI_DEV_ID_ARL_S 0x7F68 /* Arrow Lake Point S */ #define MEI_DEV_ID_ARL_H 0x7770 /* Arrow Lake Point H */ +#define MEI_DEV_ID_LNL_M 0xA870 /* Lunar Lake Point M */ + /* * MEI HW Section */ --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -122,6 +122,8 @@ static const struct pci_device_id mei_me {MEI_PCI_DEVICE(MEI_DEV_ID_ARL_S, MEI_ME_PCH15_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_ARL_H, MEI_ME_PCH15_CFG)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_LNL_M, MEI_ME_PCH15_CFG)}, + /* required last entry */ {0, } };