blob: c2b69480e1a8836d53e493a27afc16c570ceba2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/**
* @file panic.c
* Kernel panic handler implementation.
*/
#include <kmi/power.h>
#include <kmi/debug.h>
void kernel_panic(void *pc, void *addr, long cause)
{
/* could be useful to print out register values as well? */
error("kernel paniced at pc: %p with address %p and cause %lx\n",
pc, addr, cause);
info("attempting to reboot\n");
poweroff(COLD_REBOOT);
/* spin if poweroff failed for some reason */
error("reboot failed, spinning in place\n");
while (1);
}
|