summaryrefslogtreecommitdiff
path: root/arch/sandbox/lib/interrupts.c
blob: 4d7cbff802c63a15ccb5ed0ca065d1e9bf1f3482 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2011 The Chromium OS Authors.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <common.h>
#include <efi_loader.h>
#include <irq_func.h>
#include <os.h>
#include <asm/global_data.h>
#include <asm-generic/signal.h>
#include <asm/u-boot-sandbox.h>

DECLARE_GLOBAL_DATA_PTR;

int interrupt_init(void)
{
	return 0;
}

void enable_interrupts(void)
{
	return;
}
int disable_interrupts(void)
{
	return 0;
}

void os_signal_action(int sig, unsigned long pc)
{
	efi_restore_gd();

	switch (sig) {
	case SIGILL:
		printf("\nIllegal instruction\n");
		break;
	case SIGBUS:
		printf("\nBus error\n");
		break;
	case SIGSEGV:
		printf("\nSegmentation violation\n");
		break;
	default:
		break;
	}
	printf("pc = 0x%lx, ", pc);
	printf("pc_reloc = 0x%lx\n\n", pc - gd->reloc_off);
	efi_print_image_infos((void *)pc);

	if (IS_ENABLED(CONFIG_SANDBOX_CRASH_RESET)) {
		printf("resetting ...\n\n");
		sandbox_reset();
	} else {
		sandbox_exit();
	}
}