2018-02-28 03:43:07 +00:00
|
|
|
#include <stdbool.h>
|
2018-02-25 19:00:50 +00:00
|
|
|
#include "utils.h"
|
2018-02-28 03:43:07 +00:00
|
|
|
#include "se.h"
|
|
|
|
#include "fuse.h"
|
|
|
|
#include "pmc.h"
|
|
|
|
#include "timers.h"
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-28 03:43:07 +00:00
|
|
|
|
|
|
|
__attribute__ ((noreturn)) void panic(uint32_t code) {
|
|
|
|
/* Set Panic Code for NX_BOOTLOADER. */
|
|
|
|
if (APBDEV_PMC_SCRATCH200_0 == 0) {
|
|
|
|
APBDEV_PMC_SCRATCH200_0 = code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Custom Panic Driver, which displays to screen without rebooting. */
|
|
|
|
/* For now, just use NX BOOTLOADER's panic. */
|
|
|
|
fuse_disable_programming();
|
|
|
|
APBDEV_PMC_CRYPTO_OP_0 = 1; /* Disable all SE operations. */
|
|
|
|
watchdog_reboot();
|
2018-02-25 19:00:50 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 03:43:07 +00:00
|
|
|
__attribute__ ((noreturn)) void generic_panic(void) {
|
|
|
|
panic(0xFF000006);
|
2018-02-25 19:00:50 +00:00
|
|
|
}
|
|
|
|
|
2018-03-05 01:23:16 +00:00
|
|
|
__attribute__ ((noreturn)) void panic_predefined(uint32_t which) {
|
|
|
|
static const uint32_t codes[0x10] = {COLOR_0, COLOR_1, COLOR_2, COLOR_3, COLOR_4, COLOR_5, COLOR_6, COLOR_7, COLOR_8, COLOR_9, COLOR_A, COLOR_B, COLOR_C, COLOR_D, COLOR_E, COLOR_F};
|
|
|
|
panic(codes[which & 0xF]);
|
|
|
|
}
|
|
|
|
|
2018-02-25 19:00:50 +00:00
|
|
|
__attribute__((noinline)) bool overlaps(uint64_t as, uint64_t ae, uint64_t bs, uint64_t be)
|
|
|
|
{
|
|
|
|
if(as <= bs && bs <= ae)
|
|
|
|
return true;
|
|
|
|
if(bs <= as && as <= be)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-07 12:00:19 +00:00
|
|
|
|
|
|
|
uintptr_t get_iram_address_for_debug(void) {
|
|
|
|
return MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_DEBUG_IRAM);
|
|
|
|
}
|