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

This simplifies both handlers such that when the handler needs to redirect the original trap, it's readily available. Signed-off-by: Bo Gan <ganboing@gmail.com> Reviewed-by: Anup Patel <anup@brainfault.org>
25 lines
526 B
C
25 lines
526 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_TRAP_LDST_H__
|
|
#define __SBI_TRAP_LDST_H__
|
|
|
|
#include <sbi/sbi_types.h>
|
|
#include <sbi/sbi_trap.h>
|
|
|
|
struct sbi_trap_regs;
|
|
|
|
int sbi_misaligned_load_handler(struct sbi_trap_regs *regs,
|
|
const struct sbi_trap_info *orig_trap);
|
|
|
|
int sbi_misaligned_store_handler(struct sbi_trap_regs *regs,
|
|
const struct sbi_trap_info *orig_trap);
|
|
|
|
#endif
|