2009-05-20 19:37:39 +02:00
|
|
|
/*
|
|
|
|
* MicroBlaze helper routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
2012-04-12 06:30:30 +02:00
|
|
|
* Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
|
2009-05-20 19:37:39 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2009-05-20 19:37:39 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-26 19:05:31 +01:00
|
|
|
#include "qemu/osdep.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
#include "cpu.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/host-utils.h"
|
2016-01-07 14:55:28 +01:00
|
|
|
#include "exec/log.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
#define D(x)
|
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
|
2013-02-02 10:57:51 +01:00
|
|
|
void mb_cpu_do_interrupt(CPUState *cs)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-02-02 10:57:51 +01:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
|
|
|
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = -1;
|
2012-06-01 05:23:28 +02:00
|
|
|
env->res_addr = RES_ADDR_NONE;
|
2009-05-20 19:37:39 +02:00
|
|
|
env->regs[14] = env->sregs[SR_PC];
|
|
|
|
}
|
|
|
|
|
2013-08-26 03:01:33 +02:00
|
|
|
int mb_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
|
2011-08-01 18:12:17 +02:00
|
|
|
int mmu_idx)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = 0xaa;
|
2013-08-26 03:01:33 +02:00
|
|
|
cpu_dump_state(cs, stderr, fprintf, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_USER_ONLY */
|
|
|
|
|
2013-08-26 03:01:33 +02:00
|
|
|
int mb_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
|
|
|
|
int mmu_idx)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-08-26 03:01:33 +02:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2009-05-20 19:37:39 +02:00
|
|
|
unsigned int hit;
|
|
|
|
unsigned int mmu_available;
|
|
|
|
int r = 1;
|
|
|
|
int prot;
|
|
|
|
|
|
|
|
mmu_available = 0;
|
2015-06-19 06:16:29 +02:00
|
|
|
if (cpu->cfg.use_mmu) {
|
2009-05-20 19:37:39 +02:00
|
|
|
mmu_available = 1;
|
2015-06-19 06:16:42 +02:00
|
|
|
if ((cpu->cfg.pvr == C_PVR_FULL) &&
|
|
|
|
(env->pvr.regs[11] & PVR11_USE_MMU) != PVR11_USE_MMU) {
|
2009-05-20 19:37:39 +02:00
|
|
|
mmu_available = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate if the MMU is available and enabled. */
|
|
|
|
if (mmu_available && (env->sregs[SR_MSR] & MSR_VM)) {
|
|
|
|
target_ulong vaddr, paddr;
|
|
|
|
struct microblaze_mmu_lookup lu;
|
|
|
|
|
|
|
|
hit = mmu_translate(&env->mmu, &lu, address, rw, mmu_idx);
|
|
|
|
if (hit) {
|
|
|
|
vaddr = address & TARGET_PAGE_MASK;
|
|
|
|
paddr = lu.paddr + vaddr - lu.vaddr;
|
|
|
|
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "MMU map mmu=%d v=%x p=%x prot=%x\n",
|
|
|
|
mmu_idx, vaddr, paddr, lu.prot);
|
2013-09-03 13:59:37 +02:00
|
|
|
tlb_set_page(cs, vaddr, paddr, lu.prot, mmu_idx, TARGET_PAGE_SIZE);
|
2010-03-17 03:14:28 +01:00
|
|
|
r = 0;
|
2009-05-20 19:37:39 +02:00
|
|
|
} else {
|
|
|
|
env->sregs[SR_EAR] = address;
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "mmu=%d miss v=%" VADDR_PRIx "\n",
|
|
|
|
mmu_idx, address);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
switch (lu.err) {
|
|
|
|
case ERR_PROT:
|
|
|
|
env->sregs[SR_ESR] = rw == 2 ? 17 : 16;
|
|
|
|
env->sregs[SR_ESR] |= (rw == 1) << 10;
|
|
|
|
break;
|
|
|
|
case ERR_MISS:
|
|
|
|
env->sregs[SR_ESR] = rw == 2 ? 19 : 18;
|
|
|
|
env->sregs[SR_ESR] |= (rw == 1) << 10;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-08-26 08:31:06 +02:00
|
|
|
if (cs->exception_index == EXCP_MMU) {
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "recursive faults\n");
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TLB miss. */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = EXCP_MMU;
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* MMU disabled or not available. */
|
|
|
|
address &= TARGET_PAGE_MASK;
|
|
|
|
prot = PAGE_BITS;
|
2013-09-03 13:59:37 +02:00
|
|
|
tlb_set_page(cs, address, address, prot, mmu_idx, TARGET_PAGE_SIZE);
|
2010-03-17 03:14:28 +01:00
|
|
|
r = 0;
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-02-02 10:57:51 +01:00
|
|
|
void mb_cpu_do_interrupt(CPUState *cs)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-02-02 10:57:51 +01:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2009-05-20 19:37:39 +02:00
|
|
|
uint32_t t;
|
|
|
|
|
2011-04-28 17:20:26 +02:00
|
|
|
/* IMM flag cannot propagate across a branch and into the dslot. */
|
2009-05-20 19:37:39 +02:00
|
|
|
assert(!((env->iflags & D_FLAG) && (env->iflags & IMM_FLAG)));
|
|
|
|
assert(!(env->iflags & (DRTI_FLAG | DRTE_FLAG | DRTB_FLAG)));
|
|
|
|
/* assert(env->sregs[SR_MSR] & (MSR_EE)); Only for HW exceptions. */
|
2012-06-01 05:23:28 +02:00
|
|
|
env->res_addr = RES_ADDR_NONE;
|
2013-08-26 08:31:06 +02:00
|
|
|
switch (cs->exception_index) {
|
2009-09-03 10:25:00 +02:00
|
|
|
case EXCP_HW_EXCP:
|
|
|
|
if (!(env->pvr.regs[0] & PVR0_USE_EXC_MASK)) {
|
2015-11-13 13:24:57 +01:00
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "Exception raised on system without exceptions!\n");
|
2009-09-03 10:25:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
env->regs[17] = env->sregs[SR_PC] + 4;
|
|
|
|
env->sregs[SR_ESR] &= ~(1 << 12);
|
|
|
|
|
|
|
|
/* Exception breaks branch + dslot sequence? */
|
|
|
|
if (env->iflags & D_FLAG) {
|
|
|
|
env->sregs[SR_ESR] |= 1 << 12 ;
|
|
|
|
env->sregs[SR_BTR] = env->btarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable the MMU. */
|
|
|
|
t = (env->sregs[SR_MSR] & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
env->sregs[SR_MSR] &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
env->sregs[SR_MSR] |= t;
|
|
|
|
/* Exception in progress. */
|
|
|
|
env->sregs[SR_MSR] |= MSR_EIP;
|
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"hw exception at pc=%x ear=%x esr=%x iflags=%x\n",
|
|
|
|
env->sregs[SR_PC], env->sregs[SR_EAR],
|
|
|
|
env->sregs[SR_ESR], env->iflags);
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-09-03 10:25:00 +02:00
|
|
|
env->iflags &= ~(IMM_FLAG | D_FLAG);
|
2015-05-29 08:31:20 +02:00
|
|
|
env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x20;
|
2009-09-03 10:25:00 +02:00
|
|
|
break;
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
case EXCP_MMU:
|
|
|
|
env->regs[17] = env->sregs[SR_PC];
|
|
|
|
|
2009-09-03 10:15:17 +02:00
|
|
|
env->sregs[SR_ESR] &= ~(1 << 12);
|
2009-05-20 19:37:39 +02:00
|
|
|
/* Exception breaks branch + dslot sequence? */
|
|
|
|
if (env->iflags & D_FLAG) {
|
|
|
|
D(qemu_log("D_FLAG set at exception bimm=%d\n", env->bimm));
|
|
|
|
env->sregs[SR_ESR] |= 1 << 12 ;
|
|
|
|
env->sregs[SR_BTR] = env->btarget;
|
|
|
|
|
|
|
|
/* Reexecute the branch. */
|
|
|
|
env->regs[17] -= 4;
|
|
|
|
/* was the branch immprefixed?. */
|
|
|
|
if (env->bimm) {
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"bimm exception at pc=%x iflags=%x\n",
|
|
|
|
env->sregs[SR_PC], env->iflags);
|
|
|
|
env->regs[17] -= 4;
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
} else if (env->iflags & IMM_FLAG) {
|
|
|
|
D(qemu_log("IMM_FLAG set at exception\n"));
|
|
|
|
env->regs[17] -= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable the MMU. */
|
|
|
|
t = (env->sregs[SR_MSR] & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
env->sregs[SR_MSR] &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
env->sregs[SR_MSR] |= t;
|
|
|
|
/* Exception in progress. */
|
|
|
|
env->sregs[SR_MSR] |= MSR_EIP;
|
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"exception at pc=%x ear=%x iflags=%x\n",
|
|
|
|
env->sregs[SR_PC], env->sregs[SR_EAR], env->iflags);
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
env->iflags &= ~(IMM_FLAG | D_FLAG);
|
2015-05-29 08:31:20 +02:00
|
|
|
env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x20;
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCP_IRQ:
|
|
|
|
assert(!(env->sregs[SR_MSR] & (MSR_EIP | MSR_BIP)));
|
|
|
|
assert(env->sregs[SR_MSR] & MSR_IE);
|
|
|
|
assert(!(env->iflags & D_FLAG));
|
|
|
|
|
|
|
|
t = (env->sregs[SR_MSR] & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
|
|
|
|
#if 0
|
2012-10-24 11:12:21 +02:00
|
|
|
#include "disas/disas.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
/* Useful instrumentation when debugging interrupt issues in either
|
|
|
|
the models or in sw. */
|
|
|
|
{
|
|
|
|
const char *sym;
|
|
|
|
|
|
|
|
sym = lookup_symbol(env->sregs[SR_PC]);
|
|
|
|
if (sym
|
|
|
|
&& (!strcmp("netif_rx", sym)
|
|
|
|
|| !strcmp("process_backlog", sym))) {
|
|
|
|
|
|
|
|
qemu_log(
|
|
|
|
"interrupt at pc=%x msr=%x %x iflags=%x sym=%s\n",
|
|
|
|
env->sregs[SR_PC], env->sregs[SR_MSR], t, env->iflags,
|
|
|
|
sym);
|
|
|
|
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state(cs, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"interrupt at pc=%x msr=%x %x iflags=%x\n",
|
|
|
|
env->sregs[SR_PC], env->sregs[SR_MSR], t, env->iflags);
|
|
|
|
|
|
|
|
env->sregs[SR_MSR] &= ~(MSR_VMS | MSR_UMS | MSR_VM \
|
|
|
|
| MSR_UM | MSR_IE);
|
|
|
|
env->sregs[SR_MSR] |= t;
|
|
|
|
|
|
|
|
env->regs[14] = env->sregs[SR_PC];
|
2015-05-29 08:31:20 +02:00
|
|
|
env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x10;
|
2013-06-16 07:28:50 +02:00
|
|
|
//log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCP_BREAK:
|
|
|
|
case EXCP_HW_BREAK:
|
|
|
|
assert(!(env->iflags & IMM_FLAG));
|
|
|
|
assert(!(env->iflags & D_FLAG));
|
|
|
|
t = (env->sregs[SR_MSR] & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"break at pc=%x msr=%x %x iflags=%x\n",
|
|
|
|
env->sregs[SR_PC], env->sregs[SR_MSR], t, env->iflags);
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
env->sregs[SR_MSR] &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
env->sregs[SR_MSR] |= t;
|
|
|
|
env->sregs[SR_MSR] |= MSR_BIP;
|
2013-08-26 08:31:06 +02:00
|
|
|
if (cs->exception_index == EXCP_HW_BREAK) {
|
2009-05-20 19:37:39 +02:00
|
|
|
env->regs[16] = env->sregs[SR_PC];
|
|
|
|
env->sregs[SR_MSR] |= MSR_BIP;
|
2015-05-29 08:31:20 +02:00
|
|
|
env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x18;
|
2009-05-20 19:37:39 +02:00
|
|
|
} else
|
|
|
|
env->sregs[SR_PC] = env->btarget;
|
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "unhandled exception type=%d\n",
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 18:55:54 +02:00
|
|
|
hwaddr mb_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-06-29 18:55:54 +02:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2009-05-20 19:37:39 +02:00
|
|
|
target_ulong vaddr, paddr = 0;
|
|
|
|
struct microblaze_mmu_lookup lu;
|
|
|
|
unsigned int hit;
|
|
|
|
|
|
|
|
if (env->sregs[SR_MSR] & MSR_VM) {
|
|
|
|
hit = mmu_translate(&env->mmu, &lu, addr, 0, 0);
|
|
|
|
if (hit) {
|
|
|
|
vaddr = addr & TARGET_PAGE_MASK;
|
|
|
|
paddr = lu.paddr + vaddr - lu.vaddr;
|
|
|
|
} else
|
|
|
|
paddr = 0; /* ???. */
|
|
|
|
} else
|
|
|
|
paddr = addr & TARGET_PAGE_MASK;
|
|
|
|
|
|
|
|
return paddr;
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-13 18:45:30 +02:00
|
|
|
|
|
|
|
bool mb_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
|
|
|
{
|
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
|
|
|
|
|
|
|
if ((interrupt_request & CPU_INTERRUPT_HARD)
|
|
|
|
&& (env->sregs[SR_MSR] & MSR_IE)
|
|
|
|
&& !(env->sregs[SR_MSR] & (MSR_EIP | MSR_BIP))
|
|
|
|
&& !(env->iflags & (D_FLAG | IMM_FLAG))) {
|
|
|
|
cs->exception_index = EXCP_IRQ;
|
|
|
|
mb_cpu_do_interrupt(cs);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|