From nobody Sun Feb 8 04:11:58 2026 Received: from out-187.mta1.migadu.com (out-187.mta1.migadu.com [95.215.58.187]) (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 3AF4723EA81 for ; Mon, 29 Dec 2025 20:45:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.187 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767041108; cv=none; b=MQg6u6H803gEcR75c8UQSpoWONUV8S91ll38YJCYcN/OaJg2UDRFfd1SG4SzPQHESejkqib+B+RxcudeBHRmGKwBlZxHLJ3hJbzKUdGMsGEzfueZNyjlxu05+r58cMP3zKbEvWBfan0Y77txsRqBvn/v88jmY1eIlmQCjvXJuwk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767041108; c=relaxed/simple; bh=93AqE3fA+Vl4brEiffNkiHRyx8vfDQWZhBJdDVk+GkM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=AVq5emwyueHPrsSgCOwayC6siRaYL4zz2MrC8Fv/tRLdLYhuOPdjb5hIeg66nB2FfuQuzRxny7/U4vjLwSrGb4P8uO9NnnYgNgeeGsImwvWlwREp7VXq5xIz1dUQQrr85qGlDPV1o/ZZVP6VNdBGzxEhnbNhOQXmez+TOyT9hWk= 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=ptNB27Nn; arc=none smtp.client-ip=95.215.58.187 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="ptNB27Nn" 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=1767041103; 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=YV2sWj691PWBCNhNLlsMnvQ+FxH0XQWylA2wIHdYDis=; b=ptNB27NncFPDbc9oVc2hu4glSuAjL2CzIDI+2ei0z2oOgS418VEPL+genNUrn2Kchi/Any uQPD0MxFLWYLQNC5a+879KUrptVHVNx/51V02CMY6BovYh3CMIOGGFRZfN8jc445gLVYBN Rg6b2I41RLL0fTOH9iQqj5q2dfG5FVE= From: Denis Benato To: linux-kernel@vger.kernel.org Cc: platform-driver-x86@vger.kernel.org, "Hans de Goede" , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , "Luke D . Jones" , "Mateusz Schyboll" , "Denis Benato" , Denis Benato Subject: [PATCH] platform/x86: asus-armoury: add support for G835LW Date: Mon, 29 Dec 2025 21:44:58 +0100 Message-ID: <20251229204458.2658777-1-denis.benato@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 laptop model G835LW. Signed-off-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 a1bb2005c3f3..98e05e11eef1 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1426,6 +1426,35 @@ static const struct dmi_system_id power_limits[] =3D= { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "G835LW"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 28, + .ppt_pl1_spl_def =3D 140, + .ppt_pl1_spl_max =3D 175, + .ppt_pl2_sppt_min =3D 28, + .ppt_pl2_sppt_max =3D 175, + .nv_dynamic_boost_min =3D 5, + .nv_dynamic_boost_max =3D 25, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + .nv_tgp_min =3D 80, + .nv_tgp_max =3D 150, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 25, + .ppt_pl1_spl_max =3D 55, + .ppt_pl2_sppt_min =3D 25, + .ppt_pl2_sppt_max =3D 70, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "H7606W"), --=20 2.52.0