[uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
This commit is contained in:
59
u-boot-2021.10/arch/sandbox/lib/interrupts.c
Normal file
59
u-boot-2021.10/arch/sandbox/lib/interrupts.c
Normal file
@ -0,0 +1,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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user