mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-26 19:52:11 +00:00
bdk: vic: ease stress to APB when enabling VIC clk
This commit is contained in:
parent
1bef259571
commit
c0cc9c9f4f
1 changed files with 6 additions and 0 deletions
|
@ -536,9 +536,15 @@ int vic_compose()
|
||||||
|
|
||||||
int vic_init()
|
int vic_init()
|
||||||
{
|
{
|
||||||
|
// Ease the stress to APB.
|
||||||
|
bpmp_freq_t prev_fid = bpmp_clk_rate_set(BPMP_CLK_NORMAL);
|
||||||
|
|
||||||
clock_enable_host1x();
|
clock_enable_host1x();
|
||||||
clock_enable_vic();
|
clock_enable_vic();
|
||||||
|
|
||||||
|
// Restore sys clock.
|
||||||
|
bpmp_clk_rate_set(prev_fid);
|
||||||
|
|
||||||
// Load Fetch Control Engine microcode.
|
// Load Fetch Control Engine microcode.
|
||||||
for (u32 i = 0; i < sizeof(vic_fce_ucode) / sizeof(u32); i++)
|
for (u32 i = 0; i < sizeof(vic_fce_ucode) / sizeof(u32); i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue