From nobody Tue Apr 7 12:54:04 2026 Received: from out-173.mta0.migadu.com (out-173.mta0.migadu.com [91.218.175.173]) (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 88BB7303C93 for ; Fri, 13 Mar 2026 00:53:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.173 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773363234; cv=none; b=gNaS0SwLTTO1Qobg14q4AJ/aZEpnr/p7gDjvD0uXkHvTNYr1K6hT/xhgWCIvJs4EaDxCBpkHaEdQe/NBsQKjtyFyeLnvPAvY1cx+Yeb1XopYN0WmiY8HfmsrGtc5geL9REg6/Znf4OI5LjQa79V5gA3/V4rD6G9yTw+Gm8xXI3s= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773363234; c=relaxed/simple; bh=ajDEqv8hccJ6wqzUi2qyP8xwaYFhf+HDqnYwiD2xsvY=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=S77k22pMCWDI6GiykM2AWGWDRINgsYEY9AMiN9HwfxohN/uHO2CeJjFtp0AXHIlPWNyFtzzkENqKd0d2I/Fi8ft2aKrw7kos0LDpB3VQxCa6FImuOEUGGETq/Zx8o+2rEhKv/iY1ebiCoqwONFuxiBfLkldoDQjU6B2LwWUdxQ0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=suePiG96; arc=none smtp.client-ip=91.218.175.173 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="suePiG96" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1773363230; 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=IqPE1rybtLTJeZyQwal8dhsSAhOOb5wP74xvx7JCAt4=; b=suePiG96VvSvY6fQbI6qfpWdSWhMQPpUEgKOkNYdO06vA123EAUGrBoTePQj9MKa6SAAzX 0kEZQJ8//xK3cZlCPVlune9dfC/cC5IxVQ70MH6YnBsMSaJF1CzIbHKklkA1WRNZXUi4I8 pzXaiJOKEIuLHZ3x9HzWrO3OEjNRl9Y= From: Matthew Schwartz To: ilpo.jarvinen@linux.intel.com, Hans de Goede , Denis Benato Cc: platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org, Matthew Schwartz Subject: [PATCH] platform/x86: asus-armoury: add support for GZ302EA and GZ302EAC Date: Thu, 12 Mar 2026 17:49:39 -0700 Message-ID: <20260313004939.4103835-1-matthew.schwartz@linux.dev> 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 X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" Add TDP data for tablet models GZ302EA and GZ302EAC. Signed-off-by: Matthew Schwartz Reviewed-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index 208f6fe16168c..c8ef8a68ffcd0 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1518,6 +1518,35 @@ static const struct dmi_system_id power_limits[] =3D= { }, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "GZ302EA"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 28, + .ppt_pl1_spl_def =3D 60, + .ppt_pl1_spl_max =3D 80, + .ppt_pl2_sppt_min =3D 32, + .ppt_pl2_sppt_def =3D 75, + .ppt_pl2_sppt_max =3D 92, + .ppt_pl3_fppt_min =3D 45, + .ppt_pl3_fppt_def =3D 86, + .ppt_pl3_fppt_max =3D 93, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 28, + .ppt_pl1_spl_def =3D 45, + .ppt_pl1_spl_max =3D 80, + .ppt_pl2_sppt_min =3D 32, + .ppt_pl2_sppt_def =3D 52, + .ppt_pl2_sppt_max =3D 92, + .ppt_pl3_fppt_min =3D 45, + .ppt_pl3_fppt_def =3D 71, + .ppt_pl3_fppt_max =3D 93, + }, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "G513I"), --=20 2.53.0