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 6E2AD233D99; Mon, 10 Mar 2025 18:24:17 +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=1741631057; cv=none; b=YDBI8d/Atev97k6mLC6gSAl+2aseb0SkQa6li2azs4Db4141UYPtG0wS5zgFg3wFeNXYofAeKoT64D4U/KfU92XFOAxIFXxN9Se55r3eeKuDgoloQy76UOT5/+sATRB+sG0rEe0xeGhO3ZtPwyUVvGwNw+IikBB1qVV4MB9X4Ww= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741631057; c=relaxed/simple; bh=HHlmhKsGdJ64DdXvO8yOsMo50slfjU74PCRj5KY5S98=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QGFSf9eI8NDsoH75wPZy6USxvl9FH/TrjfPWygXGSl8pLspXPKdny+YutmgYGMfru9MwWBh7FeZleJtg2dP509tN5Nfk5y2mnPnPX7jz1NZPLClX79Jv62YvchVTPdqQYyFAzLwidupFr3LqesViNwFhga0QDmf6JNmQANV5bLk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=sTtYDrR/; 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="sTtYDrR/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ECB89C4CEE5; Mon, 10 Mar 2025 18:24:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1741631057; bh=HHlmhKsGdJ64DdXvO8yOsMo50slfjU74PCRj5KY5S98=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sTtYDrR/DK3wxocAYAmudXqlXEuccPQ8gguMB9meAtMZ6o/K1G0Ea1su3H5kgqPw1 grkx6gtKBf+T/KPBlZFQijBi6wu6cKdCYQZmQNCD0MljnB5hLtEPTP33O2vBg94jF9 GphXepUcMQGI5BhZ2tnNl7ms6NHlKwBv4beDq2L8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Tomas Winkler , Alexander Usyskin Subject: [PATCH 5.15 597/620] mei: me: add panther lake P DID Date: Mon, 10 Mar 2025 18:07:23 +0100 Message-ID: <20250310170609.101462776@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250310170545.553361750@linuxfoundation.org> References: <20250310170545.553361750@linuxfoundation.org> User-Agent: quilt/0.68 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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Usyskin commit a8e8ffcc3afce2ee5fb70162aeaef3f03573ee1e upstream. Add Panther Lake P device id. Cc: stable Co-developed-by: Tomas Winkler Signed-off-by: Tomas Winkler Signed-off-by: Alexander Usyskin Link: https://lore.kernel.org/r/20250209110550.1582982-1-alexander.usyskin@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 @@ -117,6 +117,8 @@ #define MEI_DEV_ID_LNL_M 0xA870 /* Lunar Lake Point M */ +#define MEI_DEV_ID_PTL_P 0xE470 /* Panther Lake P */ + /* * MEI HW Section */ --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -123,6 +123,8 @@ static const struct pci_device_id mei_me {MEI_PCI_DEVICE(MEI_DEV_ID_LNL_M, MEI_ME_PCH15_CFG)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_PTL_P, MEI_ME_PCH15_CFG)}, + /* required last entry */ {0, } };