2 * Softmmu related functions
4 * Copyright (C) 2010-2012 Guan Xuetao
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or any later version.
9 * See the COPYING file in the top-level directory.
11 #ifdef CONFIG_USER_ONLY
12 #error This file only exist under softmmu circumstance
15 #include "qemu/osdep.h"
17 #include "exec/exec-all.h"
18 #include "qemu/error-report.h"
23 #define DPRINTF(fmt, ...) printf("%s: " fmt , __func__, ## __VA_ARGS__)
25 #define DPRINTF(fmt, ...) do {} while (0)
28 #define SUPERPAGE_SIZE (1 << 22)
29 #define UC32_PAGETABLE_READ (1 << 8)
30 #define UC32_PAGETABLE_WRITE (1 << 7)
31 #define UC32_PAGETABLE_EXEC (1 << 6)
32 #define UC32_PAGETABLE_EXIST (1 << 2)
33 #define PAGETABLE_TYPE(x) ((x) & 3)
36 /* Map CPU modes onto saved register banks. */
37 static inline int bank_number(CPUUniCore32State
*env
, int mode
)
52 cpu_abort(env_cpu(env
), "Bad mode %x\n", mode
);
56 void switch_mode(CPUUniCore32State
*env
, int mode
)
61 old_mode
= env
->uncached_asr
& ASR_M
;
62 if (mode
== old_mode
) {
66 i
= bank_number(env
, old_mode
);
67 env
->banked_r29
[i
] = env
->regs
[29];
68 env
->banked_r30
[i
] = env
->regs
[30];
69 env
->banked_bsr
[i
] = env
->bsr
;
71 i
= bank_number(env
, mode
);
72 env
->regs
[29] = env
->banked_r29
[i
];
73 env
->regs
[30] = env
->banked_r30
[i
];
74 env
->bsr
= env
->banked_bsr
[i
];
77 /* Handle a CPU exception. */
78 void uc32_cpu_do_interrupt(CPUState
*cs
)
80 UniCore32CPU
*cpu
= UNICORE32_CPU(cs
);
81 CPUUniCore32State
*env
= &cpu
->env
;
85 switch (cs
->exception_index
) {
87 new_mode
= ASR_MODE_PRIV
;
91 DPRINTF("itrap happened at %x\n", env
->regs
[31]);
92 new_mode
= ASR_MODE_TRAP
;
96 DPRINTF("dtrap happened at %x\n", env
->regs
[31]);
97 new_mode
= ASR_MODE_TRAP
;
101 new_mode
= ASR_MODE_INTR
;
105 cpu_abort(cs
, "Unhandled exception 0x%x\n", cs
->exception_index
);
109 if (env
->cp0
.c1_sys
& (1 << 13)) {
113 switch_mode(env
, new_mode
);
114 env
->bsr
= cpu_asr_read(env
);
115 env
->uncached_asr
= (env
->uncached_asr
& ~ASR_M
) | new_mode
;
116 env
->uncached_asr
|= ASR_I
;
117 /* The PC already points to the proper instruction. */
118 env
->regs
[30] = env
->regs
[31];
119 env
->regs
[31] = addr
;
120 cs
->interrupt_request
|= CPU_INTERRUPT_EXITTB
;
123 static int get_phys_addr_ucv2(CPUUniCore32State
*env
, uint32_t address
,
124 int access_type
, int is_user
, uint32_t *phys_ptr
, int *prot
,
125 target_ulong
*page_size
)
127 CPUState
*cs
= env_cpu(env
);
133 /* Pagetable walk. */
134 /* Lookup l1 descriptor. */
135 table
= env
->cp0
.c2_base
& 0xfffff000;
136 table
|= (address
>> 20) & 0xffc;
137 desc
= ldl_phys(cs
->as
, table
);
139 switch (PAGETABLE_TYPE(desc
)) {
142 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
143 code
= 0x0b; /* superpage miss */
146 phys_addr
= (desc
& 0xffc00000) | (address
& 0x003fffff);
147 *page_size
= SUPERPAGE_SIZE
;
150 /* Lookup l2 entry. */
152 DPRINTF("PGD address %x, desc %x\n", table
, desc
);
154 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
155 code
= 0x05; /* second pagetable miss */
158 table
= (desc
& 0xfffff000) | ((address
>> 10) & 0xffc);
159 desc
= ldl_phys(cs
->as
, table
);
162 DPRINTF("PTE address %x, desc %x\n", table
, desc
);
164 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
165 code
= 0x08; /* page miss */
168 switch (PAGETABLE_TYPE(desc
)) {
170 phys_addr
= (desc
& 0xfffff000) | (address
& 0xfff);
171 *page_size
= TARGET_PAGE_SIZE
;
174 cpu_abort(cs
, "wrong page type!");
178 cpu_abort(cs
, "wrong page type!");
181 *phys_ptr
= phys_addr
;
183 /* Check access permissions. */
184 if (desc
& UC32_PAGETABLE_READ
) {
187 if (is_user
&& (access_type
== 0)) {
188 code
= 0x11; /* access unreadable area */
193 if (desc
& UC32_PAGETABLE_WRITE
) {
196 if (is_user
&& (access_type
== 1)) {
197 code
= 0x12; /* access unwritable area */
202 if (desc
& UC32_PAGETABLE_EXEC
) {
205 if (is_user
&& (access_type
== 2)) {
206 code
= 0x13; /* access unexecutable area */
215 bool uc32_cpu_tlb_fill(CPUState
*cs
, vaddr address
, int size
,
216 MMUAccessType access_type
, int mmu_idx
,
217 bool probe
, uintptr_t retaddr
)
219 UniCore32CPU
*cpu
= UNICORE32_CPU(cs
);
220 CPUUniCore32State
*env
= &cpu
->env
;
222 target_ulong page_size
;
227 is_user
= mmu_idx
== MMU_USER_IDX
;
229 if ((env
->cp0
.c1_sys
& 1) == 0) {
232 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
233 page_size
= TARGET_PAGE_SIZE
;
236 if ((address
& (1 << 31)) || (is_user
)) {
237 ret
= get_phys_addr_ucv2(env
, address
, access_type
, is_user
,
238 &phys_addr
, &prot
, &page_size
);
240 DPRINTF("user space access: ret %x, address %" VADDR_PRIx
", "
241 "access_type %x, phys_addr %x, prot %x\n",
242 ret
, address
, access_type
, phys_addr
, prot
);
246 phys_addr
= address
| (1 << 31);
247 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
248 page_size
= TARGET_PAGE_SIZE
;
254 /* Map a single page. */
255 phys_addr
&= TARGET_PAGE_MASK
;
256 address
&= TARGET_PAGE_MASK
;
257 tlb_set_page(cs
, address
, phys_addr
, prot
, mmu_idx
, page_size
);
265 env
->cp0
.c3_faultstatus
= ret
;
266 env
->cp0
.c4_faultaddr
= address
;
267 if (access_type
== 2) {
268 cs
->exception_index
= UC32_EXCP_ITRAP
;
270 cs
->exception_index
= UC32_EXCP_DTRAP
;
272 cpu_loop_exit_restore(cs
, retaddr
);
275 hwaddr
uc32_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
277 error_report("function uc32_cpu_get_phys_page_debug not "
278 "implemented, aborting");