1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#define MMU_R_PID 0
21#define MMU_R_ZPR 1
22#define MMU_R_TLBX 2
23#define MMU_R_TLBLO 3
24#define MMU_R_TLBHI 4
25#define MMU_R_TLBSX 5
26
27#define RAM_DATA 1
28#define RAM_TAG 0
29
30
31#define TLB_EPN_MASK MAKE_64BIT_MASK(10, 64 - 10)
32#define TLB_PAGESZ_MASK 0x00000380
33#define TLB_PAGESZ(x) (((x) & 0x7) << 7)
34#define PAGESZ_1K 0
35#define PAGESZ_4K 1
36#define PAGESZ_16K 2
37#define PAGESZ_64K 3
38#define PAGESZ_256K 4
39#define PAGESZ_1M 5
40#define PAGESZ_4M 6
41#define PAGESZ_16M 7
42#define TLB_VALID 0x00000040
43
44
45#define TLB_RPN_MASK MAKE_64BIT_MASK(10, 64 - 10)
46#define TLB_PERM_MASK 0x00000300
47#define TLB_EX 0x00000200
48#define TLB_WR 0x00000100
49#define TLB_ZSEL_MASK 0x000000F0
50#define TLB_ZSEL(x) (((x) & 0xF) << 4)
51#define TLB_ATTR_MASK 0x0000000F
52#define TLB_W 0x00000008
53#define TLB_I 0x00000004
54#define TLB_M 0x00000002
55#define TLB_G 0x00000001
56
57
58#define R_TBLX_MISS_SHIFT 31
59#define R_TBLX_MISS_MASK (1U << R_TBLX_MISS_SHIFT)
60
61#define TLB_ENTRIES 64
62
63struct microblaze_mmu
64{
65
66 uint64_t rams[2][TLB_ENTRIES];
67
68 uint8_t tids[TLB_ENTRIES];
69
70 uint32_t regs[3];
71
72 int c_mmu;
73 int c_mmu_tlb_access;
74 int c_mmu_zones;
75 uint64_t c_addr_mask;
76};
77
78struct microblaze_mmu_lookup
79{
80 uint32_t paddr;
81 uint32_t vaddr;
82 unsigned int size;
83 unsigned int idx;
84 int prot;
85 enum {
86 ERR_PROT, ERR_MISS, ERR_HIT
87 } err;
88};
89
90unsigned int mmu_translate(struct microblaze_mmu *mmu,
91 struct microblaze_mmu_lookup *lu,
92 target_ulong vaddr, int rw, int mmu_idx);
93uint32_t mmu_read(CPUMBState *env, bool ea, uint32_t rn);
94void mmu_write(CPUMBState *env, bool ea, uint32_t rn, uint32_t v);
95void mmu_init(struct microblaze_mmu *mmu);
96