From nobody Thu Jun 18 21:23:32 2026 Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [95.215.58.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 3435D405C5C for ; Sun, 17 May 2026 22:00:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.174 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055220; cv=none; b=ZbEz+4AEf4qGDU73TUvSZ9vcvA70F4iEs4L3CQIP3CKVce5znYDl9Gy+9zaWvfiqdFHUyqj5c4RZyiZrm7CttJ5pplIZbvUBGj5F5TQlabL7HtE0oDuqEj8B72HH8xDSkWpZ0E1Ic0UHTi9m0I7+wduMyLAfp3GltH9okijZ1P8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055220; c=relaxed/simple; bh=y0uOAzU7M4KAU8fNgXGlNoTxNhKJ97eroUNiy5/5dBU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nrXJjr33I8TlMHMZvnBIv1kK6wGVMBexzOHnUgx0yEW8Rzr9yiNJS332Lg9bVEvlKAhLosOmG51gWxo0hUXJ9fgOXF8yYce+KmNMyZhPlwdfhMS/dhVoOIZqZtXk0rP9dG9BDatBM8C9xzSuAzkswO2dVYsiVtFnKMuPVa/MLR8= 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=O5FkaY7y; arc=none smtp.client-ip=95.215.58.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="O5FkaY7y" 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=1779055217; 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=n2QxtIJQo1Plzyc23tVfi39Ogv3/Ro2TZ6IsP/jzUuw=; b=O5FkaY7yeIDvW3Io8O8iUN5VuZKbj3R1rNK8Pxb3tZpNJXTcXyApK6YDbq4t0BRz+oGcob WL9XvXI+sla6hLptEEQYKkdFOamnhsgftPMiNkGE2xL5Hohmw1BvHM2qajmeOJgClkO9ug gH7NI848T3XaOlGjESFWQxxedfkpFY8= 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: add support for FX607VU Date: Sun, 17 May 2026 22:00:02 +0000 Message-ID: <20260517220005.4594-2-denis.benato@linux.dev> In-Reply-To: <20260517220005.4594-1-denis.benato@linux.dev> References: <20260517220005.4594-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 FX607VU. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index c30d2b451e01..bd394ef94264 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -886,6 +886,33 @@ static const struct dmi_system_id power_limits[] =3D { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "FX607VU"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 28, + .ppt_pl1_spl_def =3D 115, + .ppt_pl1_spl_max =3D 135, + .ppt_pl2_sppt_min =3D 28, + .ppt_pl2_sppt_max =3D 135, + .nv_dynamic_boost_min =3D 5, + .nv_dynamic_boost_max =3D 25, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 25, + .ppt_pl1_spl_max =3D 45, + .ppt_pl2_sppt_min =3D 35, + .ppt_pl2_sppt_max =3D 60, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "GA401Q"), --=20 2.47.3 From nobody Thu Jun 18 21:23:32 2026 Received: from out-172.mta1.migadu.com (out-172.mta1.migadu.com [95.215.58.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 EE9ED233134 for ; Sun, 17 May 2026 22:00:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055224; cv=none; b=B99evi3OdG/keG83KWP2Sw4nqOv4LSVr5iLygVtUcVc2q5NgfVc9NAL5vthLCaF7aE3hOL59fMQXXSdGIXRwda3k6uRyfLWyzlibPK9SXKdbo1EF2mJ1OgZr49Pg0H6dsVfr0WUohRPb9ofmMPE6akD0tJ+4gFVJYVzxhyYy6BI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055224; c=relaxed/simple; bh=vlU3cqkNhf9IqK1KgK/3FJ7JQp59mSFoy3FiD0IlNck=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=r95p2aHc6Do6+wo+aTksmPLFkXDPamnX5x3D3JoS1d75ot5eGuYEKNMg6G9lz3bRiy/FD10Ztyj/xBAiZ0w3QzJLYvWZYGZGmyYkjUyZ05vv9pM1TqEAbvkUqy4xT+dPJJZb5m18lY1UcthhQwlv584CY8jCqxxPd+jewJRr8D8= 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=C4HPac6c; arc=none smtp.client-ip=95.215.58.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="C4HPac6c" 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=1779055220; 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=unt4mUxh2QaPXPAwJnYvbbGQmpdogoStSROGGGvohHI=; b=C4HPac6cOChn0MZ8eAfx0rb0H/KcVdk5iMELCuHaUPuj4lLTyBDZdFZVdWz82+x62YZ3Kf jRJwsOe1FkdkxOXRMPr5D3XtkaVG+tr6fb6mKhhs80O3VmnCZDME73qTEnbo5Xq5XnG9Su 1jK9dBXghABGfit8TEGfBbUjv/nzFd8= 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 G614FR Date: Sun, 17 May 2026 22:00:03 +0000 Message-ID: <20260517220005.4594-3-denis.benato@linux.dev> In-Reply-To: <20260517220005.4594-1-denis.benato@linux.dev> References: <20260517220005.4594-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 G614FR. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index bd394ef94264..6c8f46d289d8 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1786,6 +1786,40 @@ static const struct dmi_system_id power_limits[] =3D= { .requires_fan_curve =3D true, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "G614FR"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 30, + .ppt_pl1_spl_max =3D 120, + .ppt_pl2_sppt_min =3D 65, + .ppt_pl2_sppt_def =3D 140, + .ppt_pl2_sppt_max =3D 162, + .ppt_pl3_fppt_min =3D 65, + .ppt_pl3_fppt_def =3D 140, + .ppt_pl3_fppt_max =3D 162, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + .nv_dynamic_boost_min =3D 5, + .nv_dynamic_boost_max =3D 25, + .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 65, + .ppt_pl2_sppt_min =3D 25, + .ppt_pl2_sppt_max =3D 65, + .ppt_pl3_fppt_min =3D 35, + .ppt_pl3_fppt_max =3D 75, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "G614J"), --=20 2.47.3 From nobody Thu Jun 18 21:23:32 2026 Received: from out-183.mta1.migadu.com (out-183.mta1.migadu.com [95.215.58.183]) (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 94973258CD7 for ; Sun, 17 May 2026 22:00:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.183 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055226; cv=none; b=hIqSUknVlt63m6bJ5lGQFJwUhFYKsL4E86fznE6S0sslwCs+0q0MWlr88sOoYzcy0od8MB5XUMiwuNdBW+7I7Bdhff580YLEG+/jT1PnVGYA5Ad9xG8k1lipcRh4WC61Ba+Z870ol4q0IzIya1gPpZ3qGrhFEYrNsY5JGbxLxJ0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055226; c=relaxed/simple; bh=imBci71fP7NKEgdDpOjamKBb+78fJjLTgCTNumWSu30=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=o/XkHe4c2bRd/50+KfK0fqKjlLa5jAJ5JmisnM7RLYnJBHJjqOTMrnY1amtpGL5aFeTI6XX29RyOce1L348Xz1r4ryEBc+B0ofnVhrt3gVyw+EX7bhWPM6+KuULh3mskZgvGL4TIsNR4DcRs2dWNTVqd00w1QsEq0U/cJoVXk38= 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=EbECt2t0; arc=none smtp.client-ip=95.215.58.183 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="EbECt2t0" 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=1779055222; 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=8vbpLW7wCPywcwqku0IsbuuOpJGYTcYVX7JOmiFCfvw=; b=EbECt2t0pQU+Ln2rvLwxnuPGwyOSYfXzyoZ3YuSAow3qDeDs8EbeoQSg2yo6prW71o2yY8 mVDT6dIVhZjUr+NB+cOhLMUkOn+RX3SivOyzrmID2iq587PEGDMIk6wJ49iDvu63bvIuJm 13dttWdBR3mQLawYQFUJrxsPJuGil3o= 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: add support for FA401EA Date: Sun, 17 May 2026 22:00:04 +0000 Message-ID: <20260517220005.4594-4-denis.benato@linux.dev> In-Reply-To: <20260517220005.4594-1-denis.benato@linux.dev> References: <20260517220005.4594-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 FA401EA. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asu= s-armoury.h index 6c8f46d289d8..71df2ca061a7 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -346,6 +346,29 @@ struct power_data { * _def is not required and will be assumed to be default =3D=3D max if mi= ssing. */ static const struct dmi_system_id power_limits[] =3D { + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "FA401EA"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 15, + .ppt_pl1_spl_max =3D 95, + .ppt_pl2_sppt_min =3D 35, + .ppt_pl2_sppt_max =3D 100, + .ppt_pl3_fppt_min =3D 35, + .ppt_pl3_fppt_max =3D 115, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 15, + .ppt_pl1_spl_max =3D 71, + .ppt_pl2_sppt_min =3D 35, + .ppt_pl2_sppt_max =3D 71, + .ppt_pl3_fppt_min =3D 35, + .ppt_pl3_fppt_max =3D 71, + }, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "FA401UM"), --=20 2.47.3 From nobody Thu Jun 18 21:23:32 2026 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.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 EA00C330D36 for ; Sun, 17 May 2026 22:00:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055227; cv=none; b=FXsRdjH8ilopGl7/OHfXO5MjItL52PfaNxnZkA/heJFeicC+EXQcWCaAH8+Ninexziblnicux+8xQdlhFMV8C3l1y6PVnnnPShDnSQ5HpmEQNZQ1fF+g25sZ+utLBr8RS5nNWwSKFL4uI+yIUs9oX4+5phem/yX5RWdsVnbT/cI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779055227; c=relaxed/simple; bh=1qN0gHXtSKMZPa3afXa0YKl03Dx5LmgVxGjhuktDwVo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fsK4CDRd80cJs+tI7OEZmldgEyIzAQzxtw4VcNDgdLB5ojNRexR6dmZLce2wBMZ8maSXArYw+iFHvyWs3zRTqJGBc3/QBGsueNeI3E2pLB1+hicgXfAWc/2SNS6mkhlhzeVge25uRWK1OyS9oMoanr94221UA9p8hd30RxmaVEc= 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=qgOBxP96; arc=none smtp.client-ip=95.215.58.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="qgOBxP96" 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=1779055224; 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=gojl9DQlCyY+4puBz7dpyhz7k2ck75fqbxNsifRxlOA=; b=qgOBxP96bIi+woxACpE/V9TQPb2daTVGxEP9RC54v/GsFCdrGplrybCVI4iVLxm0gJFsd1 hGaDBDQQ0724PRV+x3FfvbkVnhyKOPdSVo0h9B80CMPq+FPZP//qdqnRcthxakmAY5tqa1 ODQi6MBqbzMsrL5a64C4iaiGRD0voFs= 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 GU605CP Date: Sun, 17 May 2026 22:00:05 +0000 Message-ID: <20260517220005.4594-5-denis.benato@linux.dev> In-Reply-To: <20260517220005.4594-1-denis.benato@linux.dev> References: <20260517220005.4594-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 GU605CP. 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 71df2ca061a7..692978b61959 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1303,6 +1303,35 @@ static const struct dmi_system_id power_limits[] =3D= { }, }, }, + { + .matches =3D { + DMI_MATCH(DMI_BOARD_NAME, "GU605CP"), + }, + .driver_data =3D &(struct power_data) { + .ac_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 45, + .ppt_pl1_spl_max =3D 75, + .ppt_pl2_sppt_min =3D 56, + .ppt_pl2_sppt_max =3D 95, + .nv_dynamic_boost_min =3D 5, + .nv_dynamic_boost_max =3D 15, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + .nv_tgp_min =3D 55, + .nv_tgp_def =3D 75, + .nv_tgp_max =3D 95, + }, + .dc_data =3D &(struct power_limits) { + .ppt_pl1_spl_min =3D 25, + .ppt_pl1_spl_max =3D 75, + .ppt_pl2_sppt_min =3D 32, + .ppt_pl2_sppt_max =3D 95, + .nv_temp_target_min =3D 75, + .nv_temp_target_max =3D 87, + }, + .requires_fan_curve =3D true, + }, + }, { .matches =3D { DMI_MATCH(DMI_BOARD_NAME, "GU605CR"), --=20 2.47.3