From nobody Fri Oct 3 11:27:50 2025 Received: from mail.tuxedocomputers.com (mail.tuxedocomputers.com [157.90.84.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E68633064BC; Mon, 1 Sep 2025 16:42:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=157.90.84.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756744957; cv=none; b=T8gbIrJBfhxVefXBZnq1Dh2AU7PW6+F0xIANbwZjs+kaGajKyRzGaPX1OMXifEMUN6v9jWzA7xiHGSz4TPqmfnfYn4uWOl+7WOuOpNfWG5wSV3OwaC8QIvliPkR63BcTl1E9nYzhHLxuwtAv6s9/drHXLpJ/6y/ye5iO+EeBwTY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756744957; c=relaxed/simple; bh=rwy4hJQt+vskzsTbZyc+BvIX5n0i4joe0ogOSuZi1JE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=GhODSo6cuywOxrH4XsD1pvp1PHqU8q4yRgDVZkUlBfW1ZzBbh4tsNmrDnrqzSf54XYDVty8uBx8XGReeoWmqv9y5NpDwjMAyZ/oBi4fre+YeLdJiRtzOExY6KO6bdNExDSO1+rUZnHQQ83BgRWVUlK58MHH0+2pDUgc1UDHHzYA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=tuxedocomputers.com; spf=pass smtp.mailfrom=tuxedocomputers.com; dkim=pass (1024-bit key) header.d=tuxedocomputers.com header.i=@tuxedocomputers.com header.b=L7SsYloe; arc=none smtp.client-ip=157.90.84.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=tuxedocomputers.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=tuxedocomputers.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=tuxedocomputers.com header.i=@tuxedocomputers.com header.b="L7SsYloe" Received: from wse-pc.fritz.box (p5de4594b.dip0.t-ipconnect.de [93.228.89.75]) (Authenticated sender: wse@tuxedocomputers.com) by mail.tuxedocomputers.com (Postfix) with ESMTPA id 2A8B82FC0086; Mon, 1 Sep 2025 18:42:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tuxedocomputers.com; s=default; t=1756744945; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=05H55qefxhrcHoKJSJs+OJG0LsEhUd9T0o+TmR6Tyeg=; b=L7SsYloePxU8nb89uhYOnmNbgQnYpOVUrZO/Pacq9OxdAtDLxd0Fbv/fez6nUGB5xCHBb/ xwH59raZo8tcv7xAWAJOuur7Z0ApLmGz8vyWDlil0f2ktxFtsJbOlL2kbfQTAE3vw4SbYa 8LimEhRa2Ft+z2dIXUqU+KiCZIW0Tww= Authentication-Results: mail.tuxedocomputers.com; auth=pass smtp.auth=wse@tuxedocomputers.com smtp.mailfrom=wse@tuxedocomputers.com From: Werner Sembach To: Shyam Sundar S K , Hans de Goede , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= Cc: Christoffer Sandberg , Werner Sembach , platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] platform/x86/amd/pmc: Add Stellaris Slim Gen6 AMD to spurious 8042 quirks list Date: Mon, 1 Sep 2025 18:42:11 +0200 Message-ID: <20250901164216.46740-1-wse@tuxedocomputers.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Christoffer Sandberg Prevents instant wakeup ~1s after suspend Signed-off-by: Christoffer Sandberg Signed-off-by: Werner Sembach --- 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/x= 86/amd/pmc/pmc-quirks.c index 7ffc659b27944..8b8944483b859 100644 --- a/drivers/platform/x86/amd/pmc/pmc-quirks.c +++ b/drivers/platform/x86/amd/pmc/pmc-quirks.c @@ -248,6 +248,13 @@ static const struct dmi_system_id fwbug_list[] =3D { DMI_MATCH(DMI_PRODUCT_NAME, "Lafite Pro V 14M"), } }, + { + .ident =3D "TUXEDO Stellaris Slim 15 AMD Gen6", + .driver_data =3D &quirk_spurious_8042, + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"), + } + }, {} }; =20 --=20 2.43.0