2 * Microblaze MMU emulation for qemu.
4 * Copyright (c) 2009 Edgar E. Iglesias
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef TARGET_MICROBLAZE_MMU_H
21 #define TARGET_MICROBLAZE_MMU_H
34 #define TLB_EPN_MASK MAKE_64BIT_MASK(10, 64 - 10)
35 #define TLB_PAGESZ_MASK 0x00000380
36 #define TLB_PAGESZ(x) (((x) & 0x7) << 7)
45 #define TLB_VALID 0x00000040 /* Entry is valid */
48 #define TLB_RPN_MASK MAKE_64BIT_MASK(10, 64 - 10)
49 #define TLB_PERM_MASK 0x00000300
50 #define TLB_EX 0x00000200 /* Instruction execution allowed */
51 #define TLB_WR 0x00000100 /* Writes permitted */
52 #define TLB_ZSEL_MASK 0x000000F0
53 #define TLB_ZSEL(x) (((x) & 0xF) << 4)
54 #define TLB_ATTR_MASK 0x0000000F
55 #define TLB_W 0x00000008 /* Caching is write-through */
56 #define TLB_I 0x00000004 /* Caching is inhibited */
57 #define TLB_M 0x00000002 /* Memory is coherent */
58 #define TLB_G 0x00000001 /* Memory is guarded from prefetch */
61 #define R_TBLX_MISS_SHIFT 31
62 #define R_TBLX_MISS_MASK (1U << R_TBLX_MISS_SHIFT)
64 #define TLB_ENTRIES 64
67 /* Data and tag brams. */
68 uint64_t rams
[2][TLB_ENTRIES
];
69 /* We keep a separate ram for the tids to avoid the 48 bit tag width. */
70 uint8_t tids
[TLB_ENTRIES
];
82 ERR_PROT
, ERR_MISS
, ERR_HIT
84 } MicroBlazeMMULookup
;
86 unsigned int mmu_translate(MicroBlazeCPU
*cpu
, MicroBlazeMMULookup
*lu
,
87 target_ulong vaddr
, int rw
, int mmu_idx
);
88 uint32_t mmu_read(CPUMBState
*env
, bool ea
, uint32_t rn
);
89 void mmu_write(CPUMBState
*env
, bool ea
, uint32_t rn
, uint32_t v
);
90 void mmu_init(MicroBlazeMMU
*mmu
);