From nobody Sun Feb 8 04:12:14 2026 Received: from out-182.mta0.migadu.com (out-182.mta0.migadu.com [91.218.175.182]) (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 7BFAF30214B for ; Fri, 16 Jan 2026 18:06:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.182 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; cv=none; b=oian+yh4ipteYuNyEAHPR1VYxAVU7mQXsbcd9UtVX7UgRpzIagHVhwk7dOezUDC8zjnEat3mMCBgcCh8uxdpJrcJQbzD92F2LE5ZTABEhLuVPuezc0SvvQzs7uMHTt3qNcH/nBRMsZXrPJx8pGD/blF8aaF6cz05zxj1FRztWis= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; c=relaxed/simple; bh=936WuKCVuzUC/NCojUpi97EP/QU52zA1LikBBm9O6O0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=teqLIYdWRIvWrZEreMvJ/KbQsuS1oeFMznH+2rqECT76r6945oO9FTcC/kVdLSuc9FSeSEuY6sw7x124HqbZXGse5gXONTQyv4lEr3VYWpnI4nbKJX3IgvKxzTcbuVF147FVkcumMWP1ToFADCZjNYcY9v9aFPvd15d3pI7lIfM= 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=NVy+SQop; arc=none smtp.client-ip=91.218.175.182 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="NVy+SQop" 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=1768586808; 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=Tfi6ciixpcfoJFQG+W0Ph/lL7+MTU1iHJ25+3NZRZRU=; b=NVy+SQopP5KkuF4//mRQAlmoUd+dOaAOdyvYJkR11J7Skl/18H7hA+Nwd8d3ME58FwTQPL 3wMsCj5CRSFIuXjACSGcXD3hFmPjaITKnxgNcvVVpJahuC4o+UYerCI/+BJjGZfTAy7dr0 C13Nua36lgwxRtqQSzhcnwJYo+u3Y+M= 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 1/4] platform/x86: asus-armoury: fix ppt data for FA608UM Date: Fri, 16 Jan 2026 19:06:34 +0100 Message-ID: <20260116180637.859803-2-denis.benato@linux.dev> In-Reply-To: <20260116180637.859803-1-denis.benato@linux.dev> References: <20260116180637.859803-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" ppt_pl3_fppt_def and ppt_pl3_fppt_max are wrong: correct it. Fixes: a22d893f490d ("platform/x86: asus-armoury: add support for FA608UM") Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index 0063c64a7860..710eef74cdb7 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -611,8 +611,8 @@ static const struct dmi_system_id power_limits[] =3D { .ppt_pl2_sppt_def =3D 54, .ppt_pl2_sppt_max =3D 90, .ppt_pl3_fppt_min =3D 35, - .ppt_pl3_fppt_def =3D 90, - .ppt_pl3_fppt_max =3D 65, + .ppt_pl3_fppt_def =3D 65, + .ppt_pl3_fppt_max =3D 90, .nv_dynamic_boost_min =3D 10, .nv_dynamic_boost_max =3D 15, .nv_temp_target_min =3D 75, --=20 2.52.0 From nobody Sun Feb 8 04:12:14 2026 Received: from out-186.mta0.migadu.com (out-186.mta0.migadu.com [91.218.175.186]) (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 7267832FA2A for ; Fri, 16 Jan 2026 18:06:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.186 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; cv=none; b=p6gYuEM7cKD3Lx0vwXS6lWxyeUApkfWOsX3bUAqUNpVmJabj9ePYtXA4MRKyu0frSsupqWkmZ1nb+mELTSHJgmDWR7UZXDWWV77AgO1XKpzt6OPAG5dpistuvQf5evTEh8q4udvrSLs7yuCOoGGCOIjJA9wN6OSiCo1vCHkubok= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; c=relaxed/simple; bh=A6IfrlnavJEP6XcTlXdFsdwsx3ngNeZ42OVPcFkPLek=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ybmj4mPbewXbiAuHitTfkI3o4un6mflZcLwjITObXi3nbERRu+0K/OPQBntWZRODnK67IpBY2n3zUTJFFie4UhU7uL2lcSwk0EYct7BCrCwfg8/Hy9VK0dN2bZBRh0fwOwLkMNlHg6ck/ZvDBXuCDfVWS/oaGUiDEjVq7/WSECw= 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=uy/0Y6/S; arc=none smtp.client-ip=91.218.175.186 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="uy/0Y6/S" 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=1768586809; 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=0dQ99A/e0k4CWiLy0Eb8HzBcf28vluYoDz6iKGNg0jo=; b=uy/0Y6/SwJFTuhd0DcGv86IxMbkZT5PgGR1idTpRFLbMvw2BuAjtiPjYirljJnrv4Y86PE TwGzbdNMLsCSmfk7ylThkg91N2Ac+vNeJ8fVEcehR/2kqxOxU1An/UPrO0aDVzAeBqrB9b /jzAfM5pRz+at4Eki87o+zqvoYwRqfA= 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 2/4] platform/x86: asus-armoury: add support for G835L Date: Fri, 16 Jan 2026 19:06:35 +0100 Message-ID: <20260116180637.859803-3-denis.benato@linux.dev> In-Reply-To: <20260116180637.859803-1-denis.benato@linux.dev> References: <20260116180637.859803-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 G835L. 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 710eef74cdb7..3efb4b4d0d22 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1724,6 +1724,35 @@ static const struct dmi_system_id power_limits[] =3D= { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "G835LR"), + }, + .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 65, + .nv_tgp_max =3D 115, + }, + .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, "G835LW"), --=20 2.52.0 From nobody Sun Feb 8 04:12:14 2026 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 2719236AB73 for ; Fri, 16 Jan 2026 18:06:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; cv=none; b=XzUIsRklyzSDIOGtbBLCTAsKHni/ovZff/1JoHKM7/tvUMWAwrYbB815aFn+pxX4O+EMn7dRDZbtvkER/Ch/YD4pJy3k7SY0M7+PIvB2o1g70WwKuHr2hlBeu4xPnmFax/XXESdelYZ4w0UjTCQS3WvYjUgK2EoVmlE3VM7Eo4I= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586813; c=relaxed/simple; bh=HY8RuZXMA49ZG8ICGs1icY0NB293JtsalIPF0fLjs5I=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=AJ1//cLPXMm40ALayt9U0tUifOJ1zv6ZQblH5kePTSrTMqQ6+Q4xmLYakyrJTqykDTQ8FmAqX3eUvqSNdaOBiTBhhcEvlQaDT/1md4JuYxQbTVadAiHCdFfo7SX6fb5koh7HBEbyhYuR8M5LfSI+uzCy8MJzBUePfyj1ON9e0qI= 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=POmjq/An; arc=none smtp.client-ip=91.218.175.172 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="POmjq/An" 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=1768586810; 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=s0hSNEV5KJk3wiLdybmutG27O70kxLgs8kAwzk3rARk=; b=POmjq/AnJbnSnzP5H9TolJIL6vCJVvgmSEQLOgdrse1+By/8ZHMjO7Sr8CNRS8LWvePrFD TET90YSUzm1D4eYoRw2bHgPUO84CDBb3vyLLmdVX09KWETUYzMzS1j7vNCjIDuS0mi2rl6 1DaKS0KP83vOX7xw5EMCirLFVDX0xxQ= 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/4] platform/x86: asus-armoury: keep the list ordered alphabetically Date: Fri, 16 Jan 2026 19:06:36 +0100 Message-ID: <20260116180637.859803-4-denis.benato@linux.dev> In-Reply-To: <20260116180637.859803-1-denis.benato@linux.dev> References: <20260116180637.859803-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" Model GA403WM appears after GA403WR breaking the alphabetical order: swap theirs position. Fixes: f5fc40734b0f ("platform/x86: asus-armoury: add support for GA403WM") Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index 3efb4b4d0d22..c67942010869 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -957,7 +957,7 @@ static const struct dmi_system_id power_limits[] =3D { }, { .matches =3D { - DMI_MATCH(DMI_BOARD_NAME, "GA403WR"), + DMI_MATCH(DMI_BOARD_NAME, "GA403WM"), }, .driver_data =3D &(struct power_data) { .ac_data =3D &(struct power_limits) { @@ -968,11 +968,11 @@ static const struct dmi_system_id power_limits[] =3D { .ppt_pl3_fppt_min =3D 35, .ppt_pl3_fppt_max =3D 80, .nv_dynamic_boost_min =3D 0, - .nv_dynamic_boost_max =3D 25, + .nv_dynamic_boost_max =3D 15, .nv_temp_target_min =3D 75, .nv_temp_target_max =3D 87, - .nv_tgp_min =3D 80, - .nv_tgp_max =3D 95, + .nv_tgp_min =3D 55, + .nv_tgp_max =3D 85, }, .dc_data =3D &(struct power_limits) { .ppt_pl1_spl_min =3D 15, @@ -989,7 +989,7 @@ static const struct dmi_system_id power_limits[] =3D { }, { .matches =3D { - DMI_MATCH(DMI_BOARD_NAME, "GA403WM"), + DMI_MATCH(DMI_BOARD_NAME, "GA403WR"), }, .driver_data =3D &(struct power_data) { .ac_data =3D &(struct power_limits) { @@ -1000,11 +1000,11 @@ static const struct dmi_system_id power_limits[] = =3D { .ppt_pl3_fppt_min =3D 35, .ppt_pl3_fppt_max =3D 80, .nv_dynamic_boost_min =3D 0, - .nv_dynamic_boost_max =3D 15, + .nv_dynamic_boost_max =3D 25, .nv_temp_target_min =3D 75, .nv_temp_target_max =3D 87, - .nv_tgp_min =3D 55, - .nv_tgp_max =3D 85, + .nv_tgp_min =3D 80, + .nv_tgp_max =3D 95, }, .dc_data =3D &(struct power_limits) { .ppt_pl1_spl_min =3D 15, --=20 2.52.0 From nobody Sun Feb 8 04:12:14 2026 Received: from out-174.mta0.migadu.com (out-174.mta0.migadu.com [91.218.175.174]) (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 513323644C8 for ; Fri, 16 Jan 2026 18:06:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.174 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586814; cv=none; b=Tp2GkaWTPn56aZWYHAetgomhwiifTs9zCvtAli2Jo/Hmmfnz+zzP7t2upTgrDqKDV2leuIz+FxfyPvZ1pDnGzcLhnb6/0zVFrqPm34I9tbNEihz9irWnuFPTBLn00scjoqUBQRbXyjQqdiXXd6eQa4EM6m2E4UJWek7wnv2WF9I= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768586814; c=relaxed/simple; bh=RoWPFKLzE+SDliHaiIiA4oX6rSgKKCGeU3gzteaor8M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gJqTneEhqhOXIWbIfnby1NYBk4pv2Xrhpj3/85k2SEt3BV2DFPfnj1O4ZhsqEL0xF+TmaU8VHM2YswLThWcSSJL0XIjfalIOKyYUi/BcRYBUbVjLPpljJ8jd/8hYb4wdZVCFpidmkT31q3lubQWliPe6sd35MwfTdujPf7hUkU0= 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=NnV+tPe6; arc=none smtp.client-ip=91.218.175.174 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="NnV+tPe6" 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=1768586811; 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=9lglLgCVPJGmPNZbfk2HTQ4V2oX7/t68TyAOS/l/K7E=; b=NnV+tPe6on8bt8SBa7bFDWKyh7CqVcNH61tIFGe4kT6NoL8TXnnuPpVpyMnab9jkYYv5mq 1wmlLHHV5Pl7vVvcKR+vWMSj6ue6I2SS4EAO7k0aHgrqIjA/V/NGhZiKWbbYxuU7Sj7gUJ dzS8HyXRiyMOOgDkJK52N8HIltLTr2w= 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 4/4] platform/x86: asus-armoury: add support for GA403WW Date: Fri, 16 Jan 2026 19:06:37 +0100 Message-ID: <20260116180637.859803-5-denis.benato@linux.dev> In-Reply-To: <20260116180637.859803-1-denis.benato@linux.dev> References: <20260116180637.859803-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 GA403WW. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index c67942010869..6e9703bd5017 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1019,6 +1019,38 @@ static const struct dmi_system_id power_limits[] =3D= { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "GA403WW"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 15, + .ppt_pl1_spl_max =3D 80, + .ppt_pl2_sppt_min =3D 25, + .ppt_pl2_sppt_max =3D 80, + .ppt_pl3_fppt_min =3D 35, + .ppt_pl3_fppt_max =3D 80, + .nv_dynamic_boost_min =3D 0, + .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 95, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 15, + .ppt_pl1_spl_max =3D 35, + .ppt_pl2_sppt_min =3D 25, + .ppt_pl2_sppt_max =3D 35, + .ppt_pl3_fppt_min =3D 35, + .ppt_pl3_fppt_max =3D 65, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "GA503QR"), --=20 2.52.0