aboutsummaryrefslogtreecommitdiff
path: root/target-moxie/mmu.h
blob: 284a44d18e2a41312485ff34ab20a3e8e860b831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
    int cause_op;
} MoxieMMUResult;

int moxie_mmu_translate(MoxieMMUResult *res,
                        CPUMoxieState *env, uint32_t vaddr,
                        int rw, int mmu_idx);