QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
452 B
19 lines
452 B
#define MOXIE_MMU_ERR_EXEC 0
|
|
#define MOXIE_MMU_ERR_READ 1
|
|
#define MOXIE_MMU_ERR_WRITE 2
|
|
#define MOXIE_MMU_ERR_FLUSH 3
|
|
|
|
typedef struct {
|
|
uint32_t phy;
|
|
uint32_t pfn;
|
|
unsigned g:1;
|
|
unsigned v:1;
|
|
unsigned k:1;
|
|
unsigned w:1;
|
|
unsigned e:1;
|
|
int cause_op;
|
|
} MoxieMMUResult;
|
|
|
|
int moxie_mmu_translate(MoxieMMUResult *res,
|
|
CPUMoxieState *env, uint32_t vaddr,
|
|
int rw, int mmu_idx);
|
|
|