2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-10-03 19:26:37 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2020-11-11 23:29:56 +00:00
|
|
|
#include <efi_loader.h>
|
2019-11-14 19:57:41 +00:00
|
|
|
#include <irq_func.h>
|
2020-11-11 23:29:56 +00:00
|
|
|
#include <os.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2020-11-11 23:29:56 +00:00
|
|
|
#include <asm-generic/signal.h>
|
|
|
|
#include <asm/u-boot-sandbox.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2011-10-03 19:26:37 +00:00
|
|
|
|
|
|
|
int interrupt_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void enable_interrupts(void)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int disable_interrupts(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2020-11-11 23:29:56 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|