* [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models
@ 2026-02-26 14:19 Denis Benato
2026-02-26 14:19 ` [PATCH 1/2] platform/x86: asus-armoury: add support for GX650RX Denis Benato
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Denis Benato @ 2026-02-26 14:19 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
Hi,
this patch series includes PPT data for two new models: GX650RX and FA401UM.
Cheers,
Denis
Denis Benato (2):
platform/x86: asus-armoury: add support for GX650RX
platform/x86: asus-armoury: add support for FA401UM
drivers/platform/x86/asus-armoury.h | 61 +++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
--
2.53.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] platform/x86: asus-armoury: add support for GX650RX
2026-02-26 14:19 [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Denis Benato
@ 2026-02-26 14:19 ` Denis Benato
2026-02-26 14:19 ` [PATCH 2/2] platform/x86: asus-armoury: add support for FA401UM Denis Benato
2026-02-27 11:38 ` [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Denis Benato @ 2026-02-26 14:19 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 GX650RX.
Signed-off-by: Denis Benato <denis.benato@linux.dev>
---
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/asus-armoury.h
index 001c011fdd56..f9d9136aec7b 100644
--- a/drivers/platform/x86/asus-armoury.h
+++ b/drivers/platform/x86/asus-armoury.h
@@ -1457,6 +1457,38 @@ static const struct dmi_system_id power_limits[] = {
},
},
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "GX650RX"),
+ },
+ .driver_data = &(struct power_data) {
+ .ac_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 28,
+ .ppt_pl1_spl_def = 70,
+ .ppt_pl1_spl_max = 90,
+ .ppt_pl2_sppt_min = 28,
+ .ppt_pl2_sppt_def = 70,
+ .ppt_pl2_sppt_max = 100,
+ .ppt_pl3_fppt_min = 28,
+ .ppt_pl3_fppt_def = 110,
+ .ppt_pl3_fppt_max = 125,
+ .nv_dynamic_boost_min = 5,
+ .nv_dynamic_boost_max = 25,
+ .nv_temp_target_min = 76,
+ .nv_temp_target_max = 87,
+ },
+ .dc_data = &(struct power_limits) {
+ .ppt_pl1_spl_min = 28,
+ .ppt_pl1_spl_max = 50,
+ .ppt_pl2_sppt_min = 28,
+ .ppt_pl2_sppt_max = 50,
+ .ppt_pl3_fppt_min = 28,
+ .ppt_pl3_fppt_max = 65,
+ .nv_temp_target_min = 76,
+ .nv_temp_target_max = 87,
+ },
+ },
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_NAME, "G513I"),
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] platform/x86: asus-armoury: add support for FA401UM
2026-02-26 14:19 [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Denis Benato
2026-02-26 14:19 ` [PATCH 1/2] platform/x86: asus-armoury: add support for GX650RX Denis Benato
@ 2026-02-26 14:19 ` Denis Benato
2026-02-27 11:38 ` [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Denis Benato @ 2026-02-26 14:19 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 FA401UM.
Signed-off-by: Denis Benato <denis.benato@linux.dev>
---
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/asus-armoury.h
index f9d9136aec7b..208f6fe16168 100644
--- a/drivers/platform/x86/asus-armoury.h
+++ b/drivers/platform/x86/asus-armoury.h
@@ -346,6 +346,35 @@ 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, "FA401UM"),
+ },
+ .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 = 15,
+ .nv_temp_target_min = 75,
+ .nv_temp_target_max = 87,
+ },
+ .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, "FA401UV"),
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models
2026-02-26 14:19 [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Denis Benato
2026-02-26 14:19 ` [PATCH 1/2] platform/x86: asus-armoury: add support for GX650RX Denis Benato
2026-02-26 14:19 ` [PATCH 2/2] platform/x86: asus-armoury: add support for FA401UM Denis Benato
@ 2026-02-27 11:38 ` Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Ilpo Järvinen @ 2026-02-27 11:38 UTC (permalink / raw)
To: linux-kernel, Denis Benato
Cc: platform-driver-x86, Hans de Goede, Luke D . Jones,
Mateusz Schyboll, Denis Benato
On Thu, 26 Feb 2026 15:19:42 +0100, Denis Benato wrote:
> this patch series includes PPT data for two new models: GX650RX and FA401UM.
>
> Cheers,
> Denis
>
> Denis Benato (2):
> platform/x86: asus-armoury: add support for GX650RX
> platform/x86: asus-armoury: add support for FA401UM
>
> [...]
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/2] platform/x86: asus-armoury: add support for GX650RX
commit: 622cc8d078e5d7586f0e40dd7aea515a946da48c
[2/2] platform/x86: asus-armoury: add support for FA401UM
commit: c55b84fa567ed33bc651675bcaf8d53bd12d910a
--
i.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-02-27 11:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26 14:19 [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Denis Benato
2026-02-26 14:19 ` [PATCH 1/2] platform/x86: asus-armoury: add support for GX650RX Denis Benato
2026-02-26 14:19 ` [PATCH 2/2] platform/x86: asus-armoury: add support for FA401UM Denis Benato
2026-02-27 11:38 ` [PATCH 0/2] platform/x86: asus-armoury: ppt data for two models Ilpo Järvinen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.