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 F12501519A6; Tue, 29 Apr 2025 18:13:44 +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=1745950425; cv=none; b=YBayWU2gQpAxTgJuNt13UNZy7TUiZ3Hgcj3kVV9OHUFfFUoa+nBpYcIwAI5Oc/zXB7+2hr9K17qpcQTr1yucR+EFm+rV92WcAFzXoAlVI43UUxcN5S+8F/fAA/mz/rYKCIAzVIR9TXRTqt8PnpiYXbhTX0hqzgnnUMCN8XlODmE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1745950425; c=relaxed/simple; bh=KQA/2FGJZU544z83ofAhdz9otrIdbaguL/cOlPRMQ6Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=I9r/OSa07RhtgUTiJ3OfFDe6Jr/vjAEPqAkvdv7dJZz3a+mkA1SueXjeNToBi7IqroBNsSn6f0lkSTeAaXv37Ut44i9/uzgqvzZvm2f/6UdpKssMTPv9RTLeUXQJVEY5kjuiIB5Y0ti+nJAS0iBQicoF1+xQXY6KbvZmswyBmgU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ArOjmwLt; 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="ArOjmwLt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79883C4CEE3; Tue, 29 Apr 2025 18:13:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1745950424; bh=KQA/2FGJZU544z83ofAhdz9otrIdbaguL/cOlPRMQ6Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ArOjmwLtUxg4AKERk6PYhMyDgwWZQxdis2+PFpujUC8dlL2tN/b7rSgSu0dGsJpX6 UNTGRYpRH3obGdeVT/lNTZDk1IX6LFu3NwdfjjJr6WJKnnHc3+i+4DCrqfPGFbjABO 5nA6NmFp0Itq3J/DylA8cp0fL0lAp1W6b1jI6dR0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Tomas Winkler , Alexander Usyskin Subject: [PATCH 6.6 091/204] mei: me: add panther lake H DID Date: Tue, 29 Apr 2025 18:42:59 +0200 Message-ID: <20250429161103.156810145@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250429161059.396852607@linuxfoundation.org> References: <20250429161059.396852607@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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Usyskin commit 86ce5c0a1dec02e21b4c864b2bc0cc5880a2c13c upstream. Add Panther Lake H 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/20250408130005.1358140-1-alexander.usyskin@intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/misc/mei/hw-me-regs.h | 1 + drivers/misc/mei/pci-me.c | 1 + 2 files changed, 2 insertions(+) --- a/drivers/misc/mei/hw-me-regs.h +++ b/drivers/misc/mei/hw-me-regs.h @@ -117,6 +117,7 @@ #define MEI_DEV_ID_LNL_M 0xA870 /* Lunar Lake Point M */ +#define MEI_DEV_ID_PTL_H 0xE370 /* Panther Lake H */ #define MEI_DEV_ID_PTL_P 0xE470 /* Panther Lake P */ /* --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -124,6 +124,7 @@ 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_H, MEI_ME_PCH15_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_PTL_P, MEI_ME_PCH15_CFG)}, /* required last entry */