Skip to content

Commit 6a02651

Browse files
NeroReflexij-intel
authored andcommitted
platform/x86: asus-armoury: fix ppt data for FA507R
PPT data for FA507R was reported to be wrong by a user: change limits to make them equal to Armoury Crate limits. Fixes: 39ae6c5 ("platform/x86: asus-armoury: add ppt_* and nv_* tuning knobs") Signed-off-by: Denis Benato <denis.benato@linux.dev> Link: https://patch.msgid.link/20251229150755.1351495-1-denis.benato@linux.dev Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent 66e245d commit 6a02651

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

drivers/platform/x86/asus-armoury.h

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,12 +449,27 @@ static const struct dmi_system_id power_limits[] = {
449449
.ac_data = &(struct power_limits) {
450450
.ppt_pl1_spl_min = 15,
451451
.ppt_pl1_spl_max = 80,
452-
.ppt_pl2_sppt_min = 25,
452+
.ppt_pl2_sppt_min = 35,
453453
.ppt_pl2_sppt_max = 80,
454454
.ppt_pl3_fppt_min = 35,
455-
.ppt_pl3_fppt_max = 80
455+
.ppt_pl3_fppt_max = 80,
456+
.nv_dynamic_boost_min = 5,
457+
.nv_dynamic_boost_max = 25,
458+
.nv_temp_target_min = 75,
459+
.nv_temp_target_max = 87,
460+
},
461+
.dc_data = &(struct power_limits) {
462+
.ppt_pl1_spl_min = 15,
463+
.ppt_pl1_spl_def = 45,
464+
.ppt_pl1_spl_max = 65,
465+
.ppt_pl2_sppt_min = 35,
466+
.ppt_pl2_sppt_def = 54,
467+
.ppt_pl2_sppt_max = 65,
468+
.ppt_pl3_fppt_min = 35,
469+
.ppt_pl3_fppt_max = 65,
470+
.nv_temp_target_min = 75,
471+
.nv_temp_target_max = 87,
456472
},
457-
.dc_data = NULL,
458473
},
459474
},
460475
{

0 commit comments

Comments
 (0)