mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-13 14:44:23 -04:00
fusee_cpp: implement bpmp overclock
This commit is contained in:
parent
1a8f886a6e
commit
4480e7a8a5
7 changed files with 191 additions and 16 deletions
|
@ -63,6 +63,9 @@ namespace ams::nxboot {
|
|||
/* Perform secure hardware initialization. */
|
||||
SecureInitialize(true);
|
||||
|
||||
/* Overclock the bpmp. */
|
||||
clkrst::SetBpmpClockRate(fuse::GetSocType() == fuse::SocType_Mariko ? clkrst::BpmpClockRate_589MHz : clkrst::BpmpClockRate_576MHz);
|
||||
|
||||
/* Initialize Sdram. */
|
||||
InitializeSdram();
|
||||
|
||||
|
@ -88,7 +91,12 @@ namespace ams::nxboot {
|
|||
/* Read our overlay file. */
|
||||
ReadFuseeSecondary();
|
||||
|
||||
/* Initialize display (splash screen will be visible from this point onwards). */
|
||||
InitializeDisplay();
|
||||
ShowDisplay();
|
||||
|
||||
/* TODO */
|
||||
WaitForReboot();
|
||||
|
||||
/* TODO */
|
||||
AMS_INFINITE_LOOP();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue