From nobody Thu Oct 2 13:03:47 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 DF5FD2FFFB1; Tue, 16 Sep 2025 16:47:12 +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=1758041236; cv=none; b=XWlbZl9zOiYNHG3/zMrFNryFtSkvdfMYYat7rU31yX/4D2ouNNIIC0GF10xidgShfMgXuo7PIU3/T1JtExunor1+7faCbXkaSq0WigUl6qLMWamzgQXdgKrRwON7zTRMKm3OqAlUA6DCNIg2ZR/esbRHOdY2GDbVS/ZGej9B4Rk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758041236; c=relaxed/simple; bh=PdygDpqinwiu7NLHrrvG06Dc92n3RgdLT0rkuoGXPsk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=dUROxtib5/RIKgb1tnF97rlSqaiBHxSL7utkLIOHjSqHEZ04VUTvrrwPIqmZycN27M4s291EpUtjG5BG02uKnhv3xHZlh9UaKCXrmyMuruBZXsU82QkcQLdiiZE17nMSoQdgr/uz/Afv5puIJyVBzZA+KVX7qph9NLCKXambwOc= 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=LwC2ioLA; 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="LwC2ioLA" 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 A0BD82FC0047; Tue, 16 Sep 2025 18:47:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tuxedocomputers.com; s=default; t=1758041225; 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=R3S2dc7LozPZhcQ1Khc9koI/dHElluQu2d1WDUXt38g=; b=LwC2ioLAnWMG4O1H0Vp8pkgk/wnoOao1ziAW1VUzF/dqvzeSGn+/LN0skQXicCBB6W8u6m UQ56n4ElpsPGvKLcwuKVq3TOdbM0Rx/m/JpLcePLXovFPyeX7pMBw+Wvo6kAaWGH/FUnXo xD/OCjFA8ZDDDsW0qH/T3JCRJes35gM= 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 v2] platform/x86/amd/pmc: Add Stellaris Slim Gen6 AMD to spurious 8042 quirks list Date: Tue, 16 Sep 2025 18:46:49 +0200 Message-ID: <20250916164700.32896-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 18fb44139de25..837f23217637d 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"), + } + }, { .ident =3D "TUXEDO InfinityBook Pro 14/15 AMD Gen10", .driver_data =3D &quirk_spurious_8042, --=20 2.43.0