mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-29 21:12:06 +00:00
nyx: update bpmp clock manage
- Test max clock on T210B01 also - Add 3rd mode with lower clock. Manually applied only. - Test max clock for 10s instead of 5s
This commit is contained in:
parent
64dac28073
commit
c9405680f2
2 changed files with 21 additions and 6 deletions
|
@ -2402,7 +2402,7 @@ static void _nyx_main_menu(lv_theme_t * th)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!n_cfg.bpmp_clock)
|
if (!n_cfg.bpmp_clock)
|
||||||
task_bpmp_clock = lv_task_create(first_time_bpmp_clock, 5000, LV_TASK_PRIO_LOWEST, NULL);
|
task_bpmp_clock = lv_task_create(first_time_bpmp_clock, 10000, LV_TASK_PRIO_LOWEST, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void nyx_load_and_run()
|
void nyx_load_and_run()
|
||||||
|
|
|
@ -387,18 +387,33 @@ void nyx_init_load_res()
|
||||||
// Load hekate/Nyx configuration.
|
// Load hekate/Nyx configuration.
|
||||||
_load_saved_configuration();
|
_load_saved_configuration();
|
||||||
|
|
||||||
// Initialize nyx cfg to lower clock for T210.
|
// Initialize nyx cfg to lower clock on first boot.
|
||||||
// In case of lower binned SoC, this can help with hangs.
|
// In case of lower binned SoC, this can help with hangs.
|
||||||
if (!n_cfg.bpmp_clock)
|
if (!n_cfg.bpmp_clock)
|
||||||
{
|
{
|
||||||
n_cfg.bpmp_clock = h_cfg.t210b01 ? 1 : 2; // Set lower clock for T210.
|
// Set lower clock and save it.
|
||||||
|
n_cfg.bpmp_clock = 2;
|
||||||
create_nyx_config_entry(false);
|
create_nyx_config_entry(false);
|
||||||
n_cfg.bpmp_clock = h_cfg.t210b01 ? 1 : 0; // Restore for T210 and keep for T210B01.
|
|
||||||
|
// Start at max clock and test it.
|
||||||
|
n_cfg.bpmp_clock = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Restore clock to max.
|
// Set selected clock.
|
||||||
if (n_cfg.bpmp_clock < 2)
|
switch (n_cfg.bpmp_clock)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
case 1:
|
||||||
bpmp_clk_rate_set(BPMP_CLK_DEFAULT_BOOST);
|
bpmp_clk_rate_set(BPMP_CLK_DEFAULT_BOOST);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
bpmp_clk_rate_set(BPMP_CLK_LOWER_BOOST);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
default:
|
||||||
|
bpmp_clk_rate_set(BPMP_CLK_LOWEST_BOOST);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Load Nyx resources.
|
// Load Nyx resources.
|
||||||
FIL fp;
|
FIL fp;
|
||||||
|
|
Loading…
Reference in a new issue