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
20 #define DPRINTF(fmt, ...) printf("%s: " fmt , __func__, ## __VA_ARGS__)
22 #define DPRINTF(fmt, ...) do {} while (0)
25 #define SUPERPAGE_SIZE (1 << 22)
26 #define UC32_PAGETABLE_READ (1 << 8)
27 #define UC32_PAGETABLE_WRITE (1 << 7)
28 #define UC32_PAGETABLE_EXEC (1 << 6)
29 #define UC32_PAGETABLE_EXIST (1 << 2)
30 #define PAGETABLE_TYPE(x) ((x) & 3)
33 /* Map CPU modes onto saved register banks. */
34 static inline int bank_number(CPUUniCore32State
*env
, int mode
)
49 cpu_abort(env
, "Bad mode %x\n", mode
);
53 void switch_mode(CPUUniCore32State
*env
, int mode
)
58 old_mode
= env
->uncached_asr
& ASR_M
;
59 if (mode
== old_mode
) {
63 i
= bank_number(env
, old_mode
);
64 env
->banked_r29
[i
] = env
->regs
[29];
65 env
->banked_r30
[i
] = env
->regs
[30];
66 env
->banked_bsr
[i
] = env
->bsr
;
68 i
= bank_number(env
, mode
);
69 env
->regs
[29] = env
->banked_r29
[i
];
70 env
->regs
[30] = env
->banked_r30
[i
];
71 env
->bsr
= env
->banked_bsr
[i
];
74 /* Handle a CPU exception. */
75 void uc32_cpu_do_interrupt(CPUState
*cs
)
77 UniCore32CPU
*cpu
= UNICORE32_CPU(cs
);
78 CPUUniCore32State
*env
= &cpu
->env
;
82 switch (env
->exception_index
) {
84 new_mode
= ASR_MODE_PRIV
;
88 DPRINTF("itrap happened at %x\n", env
->regs
[31]);
89 new_mode
= ASR_MODE_TRAP
;
93 DPRINTF("dtrap happened at %x\n", env
->regs
[31]);
94 new_mode
= ASR_MODE_TRAP
;
98 new_mode
= ASR_MODE_INTR
;
102 cpu_abort(env
, "Unhandled exception 0x%x\n", env
->exception_index
);
106 if (env
->cp0
.c1_sys
& (1 << 13)) {
110 switch_mode(env
, new_mode
);
111 env
->bsr
= cpu_asr_read(env
);
112 env
->uncached_asr
= (env
->uncached_asr
& ~ASR_M
) | new_mode
;
113 env
->uncached_asr
|= ASR_I
;
114 /* The PC already points to the proper instruction. */
115 env
->regs
[30] = env
->regs
[31];
116 env
->regs
[31] = addr
;
117 cs
->interrupt_request
|= CPU_INTERRUPT_EXITTB
;
120 static int get_phys_addr_ucv2(CPUUniCore32State
*env
, uint32_t address
,
121 int access_type
, int is_user
, uint32_t *phys_ptr
, int *prot
,
122 target_ulong
*page_size
)
124 CPUState
*cs
= ENV_GET_CPU(env
);
130 /* Pagetable walk. */
131 /* Lookup l1 descriptor. */
132 table
= env
->cp0
.c2_base
& 0xfffff000;
133 table
|= (address
>> 20) & 0xffc;
134 desc
= ldl_phys(cs
->as
, table
);
136 switch (PAGETABLE_TYPE(desc
)) {
139 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
140 code
= 0x0b; /* superpage miss */
143 phys_addr
= (desc
& 0xffc00000) | (address
& 0x003fffff);
144 *page_size
= SUPERPAGE_SIZE
;
147 /* Lookup l2 entry. */
149 DPRINTF("PGD address %x, desc %x\n", table
, desc
);
151 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
152 code
= 0x05; /* second pagetable miss */
155 table
= (desc
& 0xfffff000) | ((address
>> 10) & 0xffc);
156 desc
= ldl_phys(cs
->as
, table
);
159 DPRINTF("PTE address %x, desc %x\n", table
, desc
);
161 if (!(desc
& UC32_PAGETABLE_EXIST
)) {
162 code
= 0x08; /* page miss */
165 switch (PAGETABLE_TYPE(desc
)) {
167 phys_addr
= (desc
& 0xfffff000) | (address
& 0xfff);
168 *page_size
= TARGET_PAGE_SIZE
;
171 cpu_abort(env
, "wrong page type!");
175 cpu_abort(env
, "wrong page type!");
178 *phys_ptr
= phys_addr
;
180 /* Check access permissions. */
181 if (desc
& UC32_PAGETABLE_READ
) {
184 if (is_user
&& (access_type
== 0)) {
185 code
= 0x11; /* access unreadable area */
190 if (desc
& UC32_PAGETABLE_WRITE
) {
193 if (is_user
&& (access_type
== 1)) {
194 code
= 0x12; /* access unwritable area */
199 if (desc
& UC32_PAGETABLE_EXEC
) {
202 if (is_user
&& (access_type
== 2)) {
203 code
= 0x13; /* access unexecutable area */
212 int uc32_cpu_handle_mmu_fault(CPUUniCore32State
*env
, target_ulong address
,
213 int access_type
, int mmu_idx
)
216 target_ulong page_size
;
221 is_user
= mmu_idx
== MMU_USER_IDX
;
223 if ((env
->cp0
.c1_sys
& 1) == 0) {
226 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
227 page_size
= TARGET_PAGE_SIZE
;
230 if ((address
& (1 << 31)) || (is_user
)) {
231 ret
= get_phys_addr_ucv2(env
, address
, access_type
, is_user
,
232 &phys_addr
, &prot
, &page_size
);
234 DPRINTF("user space access: ret %x, address %x, "
235 "access_type %x, phys_addr %x, prot %x\n",
236 ret
, address
, access_type
, phys_addr
, prot
);
240 phys_addr
= address
| (1 << 31);
241 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
242 page_size
= TARGET_PAGE_SIZE
;
248 /* Map a single page. */
249 phys_addr
&= TARGET_PAGE_MASK
;
250 address
&= TARGET_PAGE_MASK
;
251 tlb_set_page(env
, address
, phys_addr
, prot
, mmu_idx
, page_size
);
255 env
->cp0
.c3_faultstatus
= ret
;
256 env
->cp0
.c4_faultaddr
= address
;
257 if (access_type
== 2) {
258 env
->exception_index
= UC32_EXCP_ITRAP
;
260 env
->exception_index
= UC32_EXCP_DTRAP
;
265 hwaddr
uc32_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
267 UniCore32CPU
*cpu
= UNICORE32_CPU(cs
);
269 cpu_abort(&cpu
->env
, "%s not supported yet\n", __func__
);