aboutsummaryrefslogtreecommitdiff
path: root/jslinux-2019-12-21/tinyemu-2019-12-21/riscv_cpu.h
blob: 6fb8b3703c643cdcadbcecb384e19193d3027d6f (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * RISCV CPU emulator
 * 
 * Copyright (c) 2016-2017 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#ifndef RISCV_CPU_H
#define RISCV_CPU_H

#include <stdlib.h>
#include "cutils.h"
#include "iomem.h"

#define MIP_USIP (1 << 0)
#define MIP_SSIP (1 << 1)
#define MIP_HSIP (1 << 2)
#define MIP_MSIP (1 << 3)
#define MIP_UTIP (1 << 4)
#define MIP_STIP (1 << 5)
#define MIP_HTIP (1 << 6)
#define MIP_MTIP (1 << 7)
#define MIP_UEIP (1 << 8)
#define MIP_SEIP (1 << 9)
#define MIP_HEIP (1 << 10)
#define MIP_MEIP (1 << 11)

typedef struct RISCVCPUState RISCVCPUState;

typedef struct {
    RISCVCPUState *(*riscv_cpu_init)(PhysMemoryMap *mem_map);
    void (*riscv_cpu_end)(RISCVCPUState *s);
    void (*riscv_cpu_interp)(RISCVCPUState *s, int n_cycles);
    uint64_t (*riscv_cpu_get_cycles)(RISCVCPUState *s);
    void (*riscv_cpu_set_mip)(RISCVCPUState *s, uint32_t mask);
    void (*riscv_cpu_reset_mip)(RISCVCPUState *s, uint32_t mask);
    uint32_t (*riscv_cpu_get_mip)(RISCVCPUState *s);
    BOOL (*riscv_cpu_get_power_down)(RISCVCPUState *s);
    uint32_t (*riscv_cpu_get_misa)(RISCVCPUState *s);
    void (*riscv_cpu_flush_tlb_write_range_ram)(RISCVCPUState *s,
                                                uint8_t *ram_ptr, size_t ram_size);
} RISCVCPUClass;

typedef struct {
    const RISCVCPUClass *class_ptr;
} RISCVCPUCommonState;

int riscv_cpu_get_max_xlen(void);

extern const RISCVCPUClass riscv_cpu_class32;
extern const RISCVCPUClass riscv_cpu_class64;
extern const RISCVCPUClass riscv_cpu_class128;

RISCVCPUState *riscv_cpu_init(PhysMemoryMap *mem_map, int max_xlen);
static inline void riscv_cpu_end(RISCVCPUState *s)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    c->riscv_cpu_end(s);
}
static inline void riscv_cpu_interp(RISCVCPUState *s, int n_cycles)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    c->riscv_cpu_interp(s, n_cycles);
}
static inline uint64_t riscv_cpu_get_cycles(RISCVCPUState *s)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    return c->riscv_cpu_get_cycles(s);
}
static inline void riscv_cpu_set_mip(RISCVCPUState *s, uint32_t mask)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    c->riscv_cpu_set_mip(s, mask);
}
static inline void riscv_cpu_reset_mip(RISCVCPUState *s, uint32_t mask)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    c->riscv_cpu_reset_mip(s, mask);
}
static inline uint32_t riscv_cpu_get_mip(RISCVCPUState *s)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    return c->riscv_cpu_get_mip(s);
}
static inline BOOL riscv_cpu_get_power_down(RISCVCPUState *s)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    return c->riscv_cpu_get_power_down(s);
}
static inline uint32_t riscv_cpu_get_misa(RISCVCPUState *s)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    return c->riscv_cpu_get_misa(s);
}
static inline void riscv_cpu_flush_tlb_write_range_ram(RISCVCPUState *s,
                                                       uint8_t *ram_ptr, size_t ram_size)
{
    const RISCVCPUClass *c = ((RISCVCPUCommonState *)s)->class_ptr;
    c->riscv_cpu_flush_tlb_write_range_ram(s, ram_ptr, ram_size);
}

#endif /* RISCV_CPU_H */