summaryrefslogtreecommitdiff
path: root/include/sbi/riscv_unpriv.h
blob: fce49bcb7d75a882c552c0f5a9d8dad2977efc29 (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
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Anup Patel <anup.patel@wdc.com>
 */

#ifndef __RISCV_UNPRIV_H__
#define __RISCV_UNPRIV_H__

#include <sbi/sbi_types.h>

struct sbi_scratch;

struct unpriv_trap {
	unsigned long ilen;
	unsigned long cause;
	unsigned long tval;
};

#define DECLARE_UNPRIVILEGED_LOAD_FUNCTION(type)       \
	type load_##type(const type *addr,             \
			 struct sbi_scratch *scratch,  \
			 struct unpriv_trap *trap);

#define DECLARE_UNPRIVILEGED_STORE_FUNCTION(type)      \
	void store_##type(type *addr, type val,        \
			  struct sbi_scratch *scratch, \
			  struct unpriv_trap *trap);

DECLARE_UNPRIVILEGED_LOAD_FUNCTION(u8)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(u16)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(s8)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(s16)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(s32)
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u8)
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u16)
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u32)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(u32)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(u64)
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u64)
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(ulong)

ulong get_insn(ulong mepc, bool virt, struct sbi_scratch *scratch,
	       struct unpriv_trap *trap);

#endif