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 8C4D029A1; Tue, 17 Feb 2026 20:53:14 +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=1771361594; cv=none; b=ZV698vCJDUn/3JnG5Cfa4fL2p4lQutOVVbfz+M1vfjeQznlMkfTFHS8HzBsln48nEuWuwKyuKSVeY5R1wzX5/pKKctfdSYxaN0D1wJAUT/79g5mXyK3OpEfgGNrxNI+iBb1AMEyj42T9Hueo3EseKFJajWzSVazkZLEsZtZrpZo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771361594; c=relaxed/simple; bh=NJgEb67H9q2qmjrPjkvYuqkZrqQSD6OvbRTJu5IB4R0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=ulki8PeiPTeY2+2oY9N2IJiMp6tJTfbLE7b95iaF1tZGVPFiWwoFQwKCzxYzP/ReHQiFjzo/+q/C8eqm9ktjy7KYGg907nrNXMIwPAo4rweZJ784bQhF/bUobRXHCqRESzFBuaYYrd0GQTGI5oqG4UTNWnUH2JF3yMinJxJh99I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UqOVZiA0; 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="UqOVZiA0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EE3EFC4CEF7; Tue, 17 Feb 2026 20:53:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1771361594; bh=NJgEb67H9q2qmjrPjkvYuqkZrqQSD6OvbRTJu5IB4R0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UqOVZiA0HX1LkgfuxB3994qEds9uv8qVoJsvgre4+F06VtMc+Vy9RUvBK968wYiVB jV65YDWN0nBGn9Ku4gCqF6xMIfmqYYVa6RFPTURwSFwKcAi9g2phF50IFvbHgvBWAQ S3FDyi0SM4TUHWdFNI7OdbrKryQKmZF9llz6oX5g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, gongqi <550230171hxy@gmail.com>, =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.12 18/42] platform/x86/amd/pmc: Add quirk for MECHREVO Wujie 15X Pro Date: Tue, 17 Feb 2026 21:32:09 +0100 Message-ID: <20260217200006.701284929@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260217200005.998240758@linuxfoundation.org> References: <20260217200005.998240758@linuxfoundation.org> User-Agent: quilt/0.69 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: gongqi <550230171hxy@gmail.com> [ Upstream commit 2b4e00d8e70ca8736fda82447be6a4e323c6d1f5 ] The MECHREVO Wujie 15X Pro suffers from spurious IRQ issues related to the AMD PMC. Add it to the quirk list to use the spurious_8042 fix. Signed-off-by: gongqi <550230171hxy@gmail.com> Link: https://patch.msgid.link/20260122155501.376199-4-550230171hxy@gmail.com Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/amd/pmc/pmc-quirks.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/platform/x86/amd/pmc/pmc-quirks.c b/drivers/platform/x86/amd/pmc/pmc-quirks.c index a5031339dac8c..a6006b4ec2cc0 100644 --- a/drivers/platform/x86/amd/pmc/pmc-quirks.c +++ b/drivers/platform/x86/amd/pmc/pmc-quirks.c @@ -296,6 +296,13 @@ static const struct dmi_system_id fwbug_list[] = { DMI_MATCH(DMI_BOARD_NAME, "XxKK4NAx_XxSP4NAx"), } }, + { + .ident = "MECHREVO Wujie 15X Pro", + .driver_data = &quirk_spurious_8042, + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "WUJIE Series-X5SP4NAG"), + } + }, {} }; -- 2.51.0