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 5111820B3E; Tue, 23 Apr 2024 21:42:09 +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=1713908529; cv=none; b=EjRklJ2/q19XVapZStDb6YHCoMa9qJwzSJY729doq6xxUIVMgwjD0c8nsDiEgouiJbaA86tq9QzD+EUhmJvEL2N5fJJq/qArddyNa1QeQ1F+QnIN8g4y9hIc60lB2UBKl7A0g8MkEgN22FD648M/NhvLrQ0DCs3HqaR2/VxoC0k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713908529; c=relaxed/simple; bh=7ib7w2ZJXey8FZpxrgiPEa2fEQ9Mnk5kznhUZi8IZdo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CsXsToomceovx0USvlaFBsDFm8wSs/r8EbZYkxV/nJjzcfU0twEvaqSOK+paspscCpGbTRJTCN+HjY2eqg7Ylom+uqSoMqgaBwkVzw6bGMIwjPIbfwMuQrdZD/VrfoF4I8cw4fGDNBJqgO65bDjlj6bjM+pfQ/XwwWqQ7Wi3qMM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=exyTYEKD; 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="exyTYEKD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7CEEC32781; Tue, 23 Apr 2024 21:42:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1713908529; bh=7ib7w2ZJXey8FZpxrgiPEa2fEQ9Mnk5kznhUZi8IZdo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=exyTYEKDalDMxlFtyxMmkJ82YgI5jD0e+GqODyMXkFp2N/y0OzaW7JaAAQv3669ff w8BD1avoVabV14Jwg6JXq9oGIb/frW34JLYnGxeypdRc8Iw17Ire97xf5CqHMLtmDx oblo0ejQsVmioPcxBjfAdBt78KwrHlmMyehRcpgk= 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 122/158] mei: me: disable RPL-S on SPS and IGN firmwares Date: Tue, 23 Apr 2024 14:39:04 -0700 Message-ID: <20240423213859.876060654@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240423213855.824778126@linuxfoundation.org> References: <20240423213855.824778126@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 0dc04112bee6fdd6eb847ccb32214703022c0269 upstream. Extend the quirk to disable MEI interface on Intel PCH Ignition (IGN) and SPS firmwares for RPL-S devices. These firmwares do not support the MEI protocol. Fixes: 3ed8c7d39cfe ("mei: me: add raptor lake point S DID") Cc: stable@vger.kernel.org Signed-off-by: Alexander Usyskin Signed-off-by: Tomas Winkler Link: https://lore.kernel.org/r/20240312051958.118478-1-tomas.winkler@intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/misc/mei/pci-me.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -116,7 +116,7 @@ static const struct pci_device_id mei_me {MEI_PCI_DEVICE(MEI_DEV_ID_ADP_P, MEI_ME_PCH15_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_ADP_N, MEI_ME_PCH15_CFG)}, - {MEI_PCI_DEVICE(MEI_DEV_ID_RPL_S, MEI_ME_PCH15_CFG)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_RPL_S, MEI_ME_PCH15_SPS_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_MTL_M, MEI_ME_PCH15_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_ARL_S, MEI_ME_PCH15_CFG)},