aboutsummaryrefslogtreecommitdiff
path: root/src/panic.c
blob: 03c0de8dac64069db7d1a2c8e7f2e8de36f43ee5 (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
25
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */

/**
 * @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);
}