mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +00:00
warmboot: make remaining TODOs explicit
This commit is contained in:
parent
95a9e1e215
commit
34c16e211f
3 changed files with 13 additions and 1 deletions
|
@ -28,6 +28,10 @@ bool fuse_check_downgrade_status(void) {
|
|||
return false;
|
||||
}
|
||||
|
||||
void fuse_disable_programming(void) {
|
||||
FUSE_REGS->FUSE_DIS_PGM = 1;
|
||||
}
|
||||
|
||||
static fuse_bypass_data_t g_fuse_bypass_entries[NUM_FUSE_BYPASS_ENTRIES] = {
|
||||
/* No entries here. */
|
||||
};
|
||||
|
|
|
@ -197,4 +197,6 @@ bool fuse_check_downgrade_status(void);
|
|||
|
||||
void fuse_configure_fuse_bypass(void);
|
||||
|
||||
void fuse_disable_programming(void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include "lp0.h"
|
||||
#include "secmon.h"
|
||||
#include "se.h"
|
||||
#include "fuse.h"
|
||||
#include "pmc.h"
|
||||
|
||||
/* "private" functions. */
|
||||
|
@ -47,7 +48,12 @@ void secmon_restore_to_tzram(const uint32_t target_firmware) {
|
|||
/* Make security engine require secure busmaster. */
|
||||
se_get_regs()->_0x4 = 0;
|
||||
|
||||
/* TODO: stuff */
|
||||
/* TODO: se_verify_keys_unreadable(); */
|
||||
|
||||
/* TODO: pmc_lockout_wb_scratch_registers(); */
|
||||
|
||||
/* Disable fuse programming. */
|
||||
fuse_disable_programming();
|
||||
}
|
||||
|
||||
void secmon_decrypt_saved_image(void *dst, const void *src, size_t size) {
|
||||
|
|
Loading…
Reference in a new issue