* [PATCH 1/3] platform/x86: asus-armoury: add support for GV302XV
2026-01-12 21:50 [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Denis Benato
@ 2026-01-12 21:50 ` Denis Benato
2026-01-12 21:50 ` [PATCH 2/3] platform/x86: asus-armoury: add support for FA401UV Denis Benato
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Denis Benato @ 2026-01-12 21:50 UTC (permalink / raw)
To: linux-kernel
Cc: platform-driver-x86, Hans de Goede, Ilpo Järvinen,
Luke D . Jones, Mateusz Schyboll, Denis Benato, Denis Benato
Add TDP data for laptop model GV302XV.
Signed-off-by: Denis Benato <denis.benato@linux.dev>
---
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/asus-armoury.h
index bc8fb54c4af0..5bcb7d266604 100644
--- a/drivers/platform/x86/asus-armoury.h
+++ b/drivers/platform/x86/asus-armoury.h
@@ -1251,6 +1251,33 @@ static const struct dmi_system_id power_limits[] = {
},
},
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "GV302XV"),
+ },
+ .driver_data = &(struct power_data) {
+ .ac_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 15,
+ .ppt_pl1_spl_max = 55,
+ .ppt_pl2_sppt_min = 25,
+ .ppt_pl2_sppt_max = 60,
+ .ppt_pl3_fppt_min = 35,
+ .ppt_pl3_fppt_max = 65,
+ .nv_temp_target_min = 75,
+ .nv_temp_target_max = 87,
+ },
+ .dc_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 15,
+ .ppt_pl1_spl_max = 35,
+ .ppt_pl2_sppt_min = 25,
+ .ppt_pl2_sppt_max = 35,
+ .ppt_pl3_fppt_min = 35,
+ .ppt_pl3_fppt_max = 65,
+ .nv_temp_target_min = 75,
+ .nv_temp_target_max = 87,
+ },
+ },
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_NAME, "GV601R"),
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3] platform/x86: asus-armoury: add support for FA401UV
2026-01-12 21:50 [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Denis Benato
2026-01-12 21:50 ` [PATCH 1/3] platform/x86: asus-armoury: add support for GV302XV Denis Benato
@ 2026-01-12 21:50 ` Denis Benato
2026-01-12 21:50 ` [PATCH 3/3] platform/x86: asus-armoury: add support for FA617XT Denis Benato
2026-01-15 14:27 ` [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Ilpo Järvinen
3 siblings, 0 replies; 5+ messages in thread
From: Denis Benato @ 2026-01-12 21:50 UTC (permalink / raw)
To: linux-kernel
Cc: platform-driver-x86, Hans de Goede, Ilpo Järvinen,
Luke D . Jones, Mateusz Schyboll, Denis Benato, Denis Benato
Add TDP data for laptop model FA401UV.
Signed-off-by: Denis Benato <denis.benato@linux.dev>
---
drivers/platform/x86/asus-armoury.h | 31 +++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asus-armoury.h
index 5bcb7d266604..2e3dd3b17b40 100644
--- a/drivers/platform/x86/asus-armoury.h
+++ b/drivers/platform/x86/asus-armoury.h
@@ -346,6 +346,37 @@ struct power_data {
* _def is not required and will be assumed to be default == max if missing.
*/
static const struct dmi_system_id power_limits[] = {
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "FA401UV"),
+ },
+ .driver_data = &(struct power_data) {
+ .ac_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 15,
+ .ppt_pl1_spl_max = 80,
+ .ppt_pl2_sppt_min = 35,
+ .ppt_pl2_sppt_max = 80,
+ .ppt_pl3_fppt_min = 35,
+ .ppt_pl3_fppt_max = 80,
+ .nv_dynamic_boost_min = 5,
+ .nv_dynamic_boost_max = 25,
+ .nv_temp_target_min = 75,
+ .nv_temp_target_max = 87,
+ .nv_tgp_min = 55,
+ .nv_tgp_max = 75,
+ },
+ .dc_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 25,
+ .ppt_pl1_spl_max = 35,
+ .ppt_pl2_sppt_min = 31,
+ .ppt_pl2_sppt_max = 44,
+ .ppt_pl3_fppt_min = 45,
+ .ppt_pl3_fppt_max = 65,
+ .nv_temp_target_min = 75,
+ .nv_temp_target_max = 87,
+ },
+ },
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_NAME, "FA401W"),
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 3/3] platform/x86: asus-armoury: add support for FA617XT
2026-01-12 21:50 [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Denis Benato
2026-01-12 21:50 ` [PATCH 1/3] platform/x86: asus-armoury: add support for GV302XV Denis Benato
2026-01-12 21:50 ` [PATCH 2/3] platform/x86: asus-armoury: add support for FA401UV Denis Benato
@ 2026-01-12 21:50 ` Denis Benato
2026-01-15 14:27 ` [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Ilpo Järvinen
3 siblings, 0 replies; 5+ messages in thread
From: Denis Benato @ 2026-01-12 21:50 UTC (permalink / raw)
To: linux-kernel
Cc: platform-driver-x86, Hans de Goede, Ilpo Järvinen,
Luke D . Jones, Mateusz Schyboll, Denis Benato, Denis Benato
Add TDP data for laptop model FA617XT.
Signed-off-by: Denis Benato <denis.benato@linux.dev>
---
drivers/platform/x86/asus-armoury.h | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asus-armoury.h
index 2e3dd3b17b40..2f49cee21a39 100644
--- a/drivers/platform/x86/asus-armoury.h
+++ b/drivers/platform/x86/asus-armoury.h
@@ -732,6 +732,25 @@ static const struct dmi_system_id power_limits[] = {
},
},
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "FA617XT"),
+ },
+ .driver_data = &(struct power_data) {
+ .ac_data = &(struct power_limits) {
+ .ppt_apu_sppt_min = 15,
+ .ppt_apu_sppt_max = 80,
+ .ppt_platform_sppt_min = 30,
+ .ppt_platform_sppt_max = 145,
+ },
+ .dc_data = &(struct power_limits) {
+ .ppt_apu_sppt_min = 25,
+ .ppt_apu_sppt_max = 35,
+ .ppt_platform_sppt_min = 45,
+ .ppt_platform_sppt_max = 100,
+ },
+ },
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_NAME, "FX507VI"),
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT
2026-01-12 21:50 [PATCH 0/3] asus-armoury: add support for GV302XV, FA401UV, FA617XT Denis Benato
` (2 preceding siblings ...)
2026-01-12 21:50 ` [PATCH 3/3] platform/x86: asus-armoury: add support for FA617XT Denis Benato
@ 2026-01-15 14:27 ` Ilpo Järvinen
3 siblings, 0 replies; 5+ messages in thread
From: Ilpo Järvinen @ 2026-01-15 14:27 UTC (permalink / raw)
To: linux-kernel, Denis Benato
Cc: platform-driver-x86, Hans de Goede, Luke D . Jones,
Mateusz Schyboll, Denis Benato
On Mon, 12 Jan 2026 22:50:35 +0100, Denis Benato wrote:
> This patch series adds support for three new Asus laptop models
> to the asus-armoury driver:
>
> - GV302XV
> - FA401UV
> - FA617XT
>
> [...]
Thank you for your contribution, it has been applied to my local
review-ilpo-fixes branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my
local branch there, which might take a while.
The list of commits applied:
[1/3] platform/x86: asus-armoury: add support for GV302XV
commit: e11e3e801193d149d0e322e0764778477337d731
[2/3] platform/x86: asus-armoury: add support for FA401UV
commit: a06bb57b2e71d57c11054ba90b956c39210fcd67
[3/3] platform/x86: asus-armoury: add support for FA617XT
commit: 8ba4e0598d127f46f9ac74b8c54456a470ce685e
--
i.
^ permalink raw reply [flat|nested] 5+ messages in thread