mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

The AMO instructions are very critical for Linux so allow low-end RISC-V implementations without Zaamo to boot Linux by emulating AMO instructions using Zalrsc when OpenSBI is compiled without Zaamo. Signed-off-by: Chao-ying Fu <cfu@mips.com> Signed-off-by: Anup Patel <apatel@ventanamicro.com> Link: https://lore.kernel.org/r/20250519121207.976949-1-apatel@ventanamicro.com Signed-off-by: Anup Patel <anup@brainfault.org>
24 lines
500 B
C
24 lines
500 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
#ifndef __SBI_ILLEGAl_INSN_H__
|
|
#define __SBI_ILLEGAl_INSN_H__
|
|
|
|
#include <sbi/sbi_types.h>
|
|
|
|
struct sbi_trap_context;
|
|
|
|
typedef int (*illegal_insn_func)(ulong insn, struct sbi_trap_regs *regs);
|
|
|
|
int truly_illegal_insn(ulong insn, struct sbi_trap_regs *regs);
|
|
|
|
int sbi_illegal_insn_handler(struct sbi_trap_context *tcntx);
|
|
|
|
#endif
|