2 * MicroBlaze helper routines.
4 * Copyright (c) 2009 Edgar E. Iglesias <edgar.iglesias@gmail.com>
5 * Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "host-utils.h"
27 #if defined(CONFIG_USER_ONLY)
29 void do_interrupt (CPUMBState
*env
)
31 env
->exception_index
= -1;
32 env
->res_addr
= RES_ADDR_NONE
;
33 env
->regs
[14] = env
->sregs
[SR_PC
];
36 int cpu_mb_handle_mmu_fault(CPUMBState
* env
, target_ulong address
, int rw
,
39 env
->exception_index
= 0xaa;
40 cpu_dump_state(env
, stderr
, fprintf
, 0);
44 #else /* !CONFIG_USER_ONLY */
46 int cpu_mb_handle_mmu_fault (CPUMBState
*env
, target_ulong address
, int rw
,
50 unsigned int mmu_available
;
55 if (env
->pvr
.regs
[0] & PVR0_USE_MMU
) {
57 if ((env
->pvr
.regs
[0] & PVR0_PVR_FULL_MASK
)
58 && (env
->pvr
.regs
[11] & PVR11_USE_MMU
) != PVR11_USE_MMU
) {
63 /* Translate if the MMU is available and enabled. */
64 if (mmu_available
&& (env
->sregs
[SR_MSR
] & MSR_VM
)) {
65 target_ulong vaddr
, paddr
;
66 struct microblaze_mmu_lookup lu
;
68 hit
= mmu_translate(&env
->mmu
, &lu
, address
, rw
, mmu_idx
);
70 vaddr
= address
& TARGET_PAGE_MASK
;
71 paddr
= lu
.paddr
+ vaddr
- lu
.vaddr
;
73 DMMU(qemu_log("MMU map mmu=%d v=%x p=%x prot=%x\n",
74 mmu_idx
, vaddr
, paddr
, lu
.prot
));
75 tlb_set_page(env
, vaddr
, paddr
, lu
.prot
, mmu_idx
, TARGET_PAGE_SIZE
);
78 env
->sregs
[SR_EAR
] = address
;
79 DMMU(qemu_log("mmu=%d miss v=%x\n", mmu_idx
, address
));
83 env
->sregs
[SR_ESR
] = rw
== 2 ? 17 : 16;
84 env
->sregs
[SR_ESR
] |= (rw
== 1) << 10;
87 env
->sregs
[SR_ESR
] = rw
== 2 ? 19 : 18;
88 env
->sregs
[SR_ESR
] |= (rw
== 1) << 10;
95 if (env
->exception_index
== EXCP_MMU
) {
96 cpu_abort(env
, "recursive faults\n");
100 env
->exception_index
= EXCP_MMU
;
103 /* MMU disabled or not available. */
104 address
&= TARGET_PAGE_MASK
;
106 tlb_set_page(env
, address
, address
, prot
, mmu_idx
, TARGET_PAGE_SIZE
);
112 void do_interrupt(CPUMBState
*env
)
116 /* IMM flag cannot propagate across a branch and into the dslot. */
117 assert(!((env
->iflags
& D_FLAG
) && (env
->iflags
& IMM_FLAG
)));
118 assert(!(env
->iflags
& (DRTI_FLAG
| DRTE_FLAG
| DRTB_FLAG
)));
119 /* assert(env->sregs[SR_MSR] & (MSR_EE)); Only for HW exceptions. */
120 env
->res_addr
= RES_ADDR_NONE
;
121 switch (env
->exception_index
) {
123 if (!(env
->pvr
.regs
[0] & PVR0_USE_EXC_MASK
)) {
124 qemu_log("Exception raised on system without exceptions!\n");
128 env
->regs
[17] = env
->sregs
[SR_PC
] + 4;
129 env
->sregs
[SR_ESR
] &= ~(1 << 12);
131 /* Exception breaks branch + dslot sequence? */
132 if (env
->iflags
& D_FLAG
) {
133 env
->sregs
[SR_ESR
] |= 1 << 12 ;
134 env
->sregs
[SR_BTR
] = env
->btarget
;
137 /* Disable the MMU. */
138 t
= (env
->sregs
[SR_MSR
] & (MSR_VM
| MSR_UM
)) << 1;
139 env
->sregs
[SR_MSR
] &= ~(MSR_VMS
| MSR_UMS
| MSR_VM
| MSR_UM
);
140 env
->sregs
[SR_MSR
] |= t
;
141 /* Exception in progress. */
142 env
->sregs
[SR_MSR
] |= MSR_EIP
;
144 qemu_log_mask(CPU_LOG_INT
,
145 "hw exception at pc=%x ear=%x esr=%x iflags=%x\n",
146 env
->sregs
[SR_PC
], env
->sregs
[SR_EAR
],
147 env
->sregs
[SR_ESR
], env
->iflags
);
148 log_cpu_state_mask(CPU_LOG_INT
, env
, 0);
149 env
->iflags
&= ~(IMM_FLAG
| D_FLAG
);
150 env
->sregs
[SR_PC
] = 0x20;
154 env
->regs
[17] = env
->sregs
[SR_PC
];
156 env
->sregs
[SR_ESR
] &= ~(1 << 12);
157 /* Exception breaks branch + dslot sequence? */
158 if (env
->iflags
& D_FLAG
) {
159 D(qemu_log("D_FLAG set at exception bimm=%d\n", env
->bimm
));
160 env
->sregs
[SR_ESR
] |= 1 << 12 ;
161 env
->sregs
[SR_BTR
] = env
->btarget
;
163 /* Reexecute the branch. */
165 /* was the branch immprefixed?. */
167 qemu_log_mask(CPU_LOG_INT
,
168 "bimm exception at pc=%x iflags=%x\n",
169 env
->sregs
[SR_PC
], env
->iflags
);
171 log_cpu_state_mask(CPU_LOG_INT
, env
, 0);
173 } else if (env
->iflags
& IMM_FLAG
) {
174 D(qemu_log("IMM_FLAG set at exception\n"));
178 /* Disable the MMU. */
179 t
= (env
->sregs
[SR_MSR
] & (MSR_VM
| MSR_UM
)) << 1;
180 env
->sregs
[SR_MSR
] &= ~(MSR_VMS
| MSR_UMS
| MSR_VM
| MSR_UM
);
181 env
->sregs
[SR_MSR
] |= t
;
182 /* Exception in progress. */
183 env
->sregs
[SR_MSR
] |= MSR_EIP
;
185 qemu_log_mask(CPU_LOG_INT
,
186 "exception at pc=%x ear=%x iflags=%x\n",
187 env
->sregs
[SR_PC
], env
->sregs
[SR_EAR
], env
->iflags
);
188 log_cpu_state_mask(CPU_LOG_INT
, env
, 0);
189 env
->iflags
&= ~(IMM_FLAG
| D_FLAG
);
190 env
->sregs
[SR_PC
] = 0x20;
194 assert(!(env
->sregs
[SR_MSR
] & (MSR_EIP
| MSR_BIP
)));
195 assert(env
->sregs
[SR_MSR
] & MSR_IE
);
196 assert(!(env
->iflags
& D_FLAG
));
198 t
= (env
->sregs
[SR_MSR
] & (MSR_VM
| MSR_UM
)) << 1;
203 /* Useful instrumentation when debugging interrupt issues in either
204 the models or in sw. */
208 sym
= lookup_symbol(env
->sregs
[SR_PC
]);
210 && (!strcmp("netif_rx", sym
)
211 || !strcmp("process_backlog", sym
))) {
214 "interrupt at pc=%x msr=%x %x iflags=%x sym=%s\n",
215 env
->sregs
[SR_PC
], env
->sregs
[SR_MSR
], t
, env
->iflags
,
218 log_cpu_state(env
, 0);
222 qemu_log_mask(CPU_LOG_INT
,
223 "interrupt at pc=%x msr=%x %x iflags=%x\n",
224 env
->sregs
[SR_PC
], env
->sregs
[SR_MSR
], t
, env
->iflags
);
226 env
->sregs
[SR_MSR
] &= ~(MSR_VMS
| MSR_UMS
| MSR_VM \
228 env
->sregs
[SR_MSR
] |= t
;
230 env
->regs
[14] = env
->sregs
[SR_PC
];
231 env
->sregs
[SR_PC
] = 0x10;
232 //log_cpu_state_mask(CPU_LOG_INT, env, 0);
237 assert(!(env
->iflags
& IMM_FLAG
));
238 assert(!(env
->iflags
& D_FLAG
));
239 t
= (env
->sregs
[SR_MSR
] & (MSR_VM
| MSR_UM
)) << 1;
240 qemu_log_mask(CPU_LOG_INT
,
241 "break at pc=%x msr=%x %x iflags=%x\n",
242 env
->sregs
[SR_PC
], env
->sregs
[SR_MSR
], t
, env
->iflags
);
243 log_cpu_state_mask(CPU_LOG_INT
, env
, 0);
244 env
->sregs
[SR_MSR
] &= ~(MSR_VMS
| MSR_UMS
| MSR_VM
| MSR_UM
);
245 env
->sregs
[SR_MSR
] |= t
;
246 env
->sregs
[SR_MSR
] |= MSR_BIP
;
247 if (env
->exception_index
== EXCP_HW_BREAK
) {
248 env
->regs
[16] = env
->sregs
[SR_PC
];
249 env
->sregs
[SR_MSR
] |= MSR_BIP
;
250 env
->sregs
[SR_PC
] = 0x18;
252 env
->sregs
[SR_PC
] = env
->btarget
;
255 cpu_abort(env
, "unhandled exception type=%d\n",
256 env
->exception_index
);
261 target_phys_addr_t
cpu_get_phys_page_debug(CPUMBState
* env
, target_ulong addr
)
263 target_ulong vaddr
, paddr
= 0;
264 struct microblaze_mmu_lookup lu
;
267 if (env
->sregs
[SR_MSR
] & MSR_VM
) {
268 hit
= mmu_translate(&env
->mmu
, &lu
, addr
, 0, 0);
270 vaddr
= addr
& TARGET_PAGE_MASK
;
271 paddr
= lu
.paddr
+ vaddr
- lu
.vaddr
;
273 paddr
= 0; /* ???. */
275 paddr
= addr
& TARGET_PAGE_MASK
;