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 D6A9529E110; Mon, 27 Oct 2025 19:13:35 +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=1761592415; cv=none; b=PPS/7yebr6px1M4gqtxFREeSCBVf3P+4vHxzm8pC/Fd+wx0VMkuB7xFzYkZu5fACeEkxva6d3tub9lRQq2DdAto3CquawPWdYLX7vIhcKuTkV8BKFQyGQtJp8T/ATHejZwFWKbG+qmmgPRFHv4NtbOIZPCOerW8I5oYbL2sjPRg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761592415; c=relaxed/simple; bh=B8mKU6tfWwF5fA7NJHy7O2jRjL0lpIpq3M+U+oYxXsA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=C4TEqqGcbLA84stfjIeYryEvConKXBth2MLJVAZw3QGahTpnRe6ah7AuhwfWmKUSYKGYeTKa6Eq6Q56S8vJxXKL5X/8tgTIr/OkqTJ6Ew+H1n0PzokbbNF6PHwkCndbr/19eRQJlOX/YdU/8/6cJX8Hg2C/mJrC48nYCYLIAAag= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=crz8tLXE; 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="crz8tLXE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6869EC4CEF1; Mon, 27 Oct 2025 19:13:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1761592415; bh=B8mKU6tfWwF5fA7NJHy7O2jRjL0lpIpq3M+U+oYxXsA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=crz8tLXEZ2uZUeMINv9O9oz0FejL7hXjW/InCyaEPEY+IsytjJNcxRWQJotkXn/uX HkMwD+lE96tCjY1VeMOSjDAZpRH+UDnUzYo9TQC6KLp6YkScm7v+Xnzm2C9C4e0u5K RLgDcusIXOW0QYIcNhR46+rG/SPgA1HSGa+sQrfA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Tomas Winkler , Alexander Usyskin Subject: [PATCH 6.1 111/157] mei: me: add wildcat lake P DID Date: Mon, 27 Oct 2025 19:36:12 +0100 Message-ID: <20251027183504.228701866@linuxfoundation.org> X-Mailer: git-send-email 2.51.1 In-Reply-To: <20251027183501.227243846@linuxfoundation.org> References: <20251027183501.227243846@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Usyskin commit 410d6c2ad4d1a88efa0acbb9966693725b564933 upstream. Add Wildcat Lake P device id. Cc: stable@vger.kernel.org Co-developed-by: Tomas Winkler Signed-off-by: Tomas Winkler Signed-off-by: Alexander Usyskin Link: https://patch.msgid.link/20251016125912.2146136-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 @@ -120,6 +120,8 @@ #define MEI_DEV_ID_PTL_H 0xE370 /* Panther Lake H */ #define MEI_DEV_ID_PTL_P 0xE470 /* Panther Lake P */ +#define MEI_DEV_ID_WCL_P 0x4D70 /* Wildcat Lake P */ + /* * MEI HW Section */ --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -127,6 +127,8 @@ static const struct pci_device_id mei_me {MEI_PCI_DEVICE(MEI_DEV_ID_PTL_H, MEI_ME_PCH15_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_PTL_P, MEI_ME_PCH15_CFG)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_WCL_P, MEI_ME_PCH15_CFG)}, + /* required last entry */ {0, } };