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 ECC292550A0; Tue, 29 Apr 2025 17:21:50 +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=1745947311; cv=none; b=asJOzCt4yD861zCRw1BB6XoQu+xbSnQ1+SN3p3qi0hlObV+SLFKtBIKRulUY975GP3prArkm1Zdfj3mLKtLAWIS4dTq5WAXG7ISTJY/1yZaXZx4DRiqQJSese3IZ3Ja1dNL5t8zYXY1a4WDTCALIVhpFg7vRQ8/GrKr8BvUAWbc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1745947311; c=relaxed/simple; bh=MFNTaKu+ALlxhciPkk5GPMA8+DgJD+DYM1xXrwSSc08=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pxkjnV2XwPXWcRWiH6TP9lJBfGFwxzcZaLxxnHgzOt/fm2jN5FKTJGCpXoXNIzwaTqKe9irAM0hjBlQQWuIHrjZTkgwnDI4tNMWt2vXMEPYeYozCgP7UZh2p2RtUS1yL668X7HDC/40M2mxsV3l5gotUlIKLMN6WAT2fnE/34/k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=0bTiH+7I; 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="0bTiH+7I" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 264D4C4CEE9; Tue, 29 Apr 2025 17:21:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1745947310; bh=MFNTaKu+ALlxhciPkk5GPMA8+DgJD+DYM1xXrwSSc08=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=0bTiH+7Ii3tl3hV7QlaidFVGWWSY+dZ9ttWDvc6YqMPULT9ZIkorYWeOC3R8NU5Th u/xfNIOkKRfGqbf5ujV3CTFWX9zkJALL0eA5jnalUvPccWaM1ZL9CTfPcFLN+MQhfQ qbqrqhmXD0f4P1cB6DIofwVkcoBiuMQtXI6S2x/I= 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.10 241/286] mei: me: add panther lake H DID Date: Tue, 29 Apr 2025 18:42:25 +0200 Message-ID: <20250429161117.839515027@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250429161107.848008295@linuxfoundation.org> References: <20250429161107.848008295@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.10-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 @@ -123,6 +123,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 */