From nobody Thu Apr 2 13:34:47 2026 Received: from out-177.mta1.migadu.com (out-177.mta1.migadu.com [95.215.58.177]) (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 AFCAB31ED80 for ; Sun, 29 Mar 2026 12:47:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774788474; cv=none; b=lbTlxUMR1GNcBTz7Xncpu3pS758JHR+CiTEe0o1iKk1mrZq1zc3r99zlVOpN0IfBvU8gP/8z26RTn7NJjfdAcz8+E0WmXF6dO68FYxeEmDaYYTClcf4t1MKeeW7ACvebifvaP9zcSG9f0uDZrSuTu9boUeyRtorTMBPoBll+JZw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774788474; c=relaxed/simple; bh=J9zMNnXSpZW/ml3J/W6Cl7PTkhgPx0w9QIJelnalxWA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=F+888ivsnIElhaOlip1ViUQg4kVRXjVm/bXrEFZ4lkIoJGs2oncuUfSANhB5mZB+hxtzW7RSIWhfOYfQDRtDcgbjV7URh8LQa6PkFIsBBqjoUc4hrWOekIB4ARYNU4CmuSqj5varvfSnYD2v6jFCr44TXpViETjiqkkeTLTnols= 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=fzVje7bA; arc=none smtp.client-ip=95.215.58.177 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="fzVje7bA" 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=1774788472; 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: in-reply-to:in-reply-to:references:references; bh=z7gtMib7F8MJDg6wPr5TLyiwjAcAjQzBl86Ji3i8gUI=; b=fzVje7bAIdFj2SLf5GBQD7dI3Uf2z3x/D7oaQ+mRLB+Cdz8Y64u7WoWi62OTU68sCfiLGD AR2p+qaZ9sc7+hVDxneqeP4OrR9jZ6W6MJn+d7r8if9eIm2JC36IX3SpYiuluEj0jG9w7B B9nC6u9YvuIUo88Kd8O5uJ3AkhP1pTo= 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 3/3] platform/x86: asus-armoury: add support for GU605MU Date: Sun, 29 Mar 2026 14:46:59 +0200 Message-ID: <20260329124659.3967495-4-denis.benato@linux.dev> In-Reply-To: <20260329124659.3967495-1-denis.benato@linux.dev> References: <20260329124659.3967495-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 GU605MU. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index a37abb37555c..b6a237c943dd 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1368,6 +1368,34 @@ static const struct dmi_system_id power_limits[] =3D= { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "GU605MU"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 28, + .ppt_pl1_spl_max =3D 90, + .ppt_pl2_sppt_min =3D 28, + .ppt_pl2_sppt_max =3D 135, + .nv_dynamic_boost_min =3D 5, + .nv_dynamic_boost_max =3D 20, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + .nv_tgp_min =3D 55, + .nv_tgp_max =3D 85, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 25, + .ppt_pl1_spl_max =3D 35, + .ppt_pl2_sppt_min =3D 38, + .ppt_pl2_sppt_max =3D 53, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "GU605M"), --=20 2.53.0