2009-05-20 21:37:39 +04:00
|
|
|
/*
|
|
|
|
* MicroBlaze helper routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
2012-04-12 08:30:30 +04:00
|
|
|
* Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
|
2009-05-20 21:37:39 +04: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-17 00:47:01 +04:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2009-05-20 21:37:39 +04:00
|
|
|
*/
|
|
|
|
|
2016-01-26 21:05:31 +03:00
|
|
|
#include "qemu/osdep.h"
|
2009-05-20 21:37:39 +04:00
|
|
|
#include "cpu.h"
|
2016-03-15 15:18:37 +03:00
|
|
|
#include "exec/exec-all.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/host-utils.h"
|
2016-01-07 16:55:28 +03:00
|
|
|
#include "exec/log.h"
|
2009-05-20 21:37:39 +04:00
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
|
2013-02-02 13:57:51 +04:00
|
|
|
void mb_cpu_do_interrupt(CPUState *cs)
|
2009-05-20 21:37:39 +04:00
|
|
|
{
|
2013-02-02 13:57:51 +04:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
|
|
|
|
2013-08-26 10:31:06 +04:00
|
|
|
cs->exception_index = -1;
|
2012-06-01 07:23:28 +04:00
|
|
|
env->res_addr = RES_ADDR_NONE;
|
2020-08-20 07:33:32 +03:00
|
|
|
env->regs[14] = env->pc;
|
2009-05-20 21:37:39 +04:00
|
|
|
}
|
|
|
|
|
2019-04-02 12:06:02 +03:00
|
|
|
bool mb_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
|
|
|
MMUAccessType access_type, int mmu_idx,
|
|
|
|
bool probe, uintptr_t retaddr)
|
2009-05-20 21:37:39 +04:00
|
|
|
{
|
2013-08-26 10:31:06 +04:00
|
|
|
cs->exception_index = 0xaa;
|
2019-04-02 12:06:02 +03:00
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
2009-05-20 21:37:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_USER_ONLY */
|
|
|
|
|
2019-04-02 12:06:02 +03:00
|
|
|
bool mb_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
|
|
|
MMUAccessType access_type, int mmu_idx,
|
|
|
|
bool probe, uintptr_t retaddr)
|
2009-05-20 21:37:39 +04:00
|
|
|
{
|
2013-08-26 05:01:33 +04:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2019-04-02 12:06:02 +03:00
|
|
|
struct microblaze_mmu_lookup lu;
|
2009-05-20 21:37:39 +04:00
|
|
|
unsigned int hit;
|
|
|
|
int prot;
|
|
|
|
|
2019-04-02 12:06:02 +03:00
|
|
|
if (mmu_idx == MMU_NOMMU_IDX) {
|
2009-05-20 21:37:39 +04:00
|
|
|
/* MMU disabled or not available. */
|
|
|
|
address &= TARGET_PAGE_MASK;
|
|
|
|
prot = PAGE_BITS;
|
2013-09-03 15:59:37 +04:00
|
|
|
tlb_set_page(cs, address, address, prot, mmu_idx, TARGET_PAGE_SIZE);
|
2019-04-02 12:06:02 +03:00
|
|
|
return true;
|
2009-05-20 21:37:39 +04:00
|
|
|
}
|
2019-04-02 12:06:02 +03:00
|
|
|
|
|
|
|
hit = mmu_translate(&env->mmu, &lu, address, access_type, mmu_idx);
|
|
|
|
if (likely(hit)) {
|
|
|
|
uint32_t vaddr = address & TARGET_PAGE_MASK;
|
|
|
|
uint32_t paddr = lu.paddr + vaddr - lu.vaddr;
|
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_MMU, "MMU map mmu=%d v=%x p=%x prot=%x\n",
|
|
|
|
mmu_idx, vaddr, paddr, lu.prot);
|
|
|
|
tlb_set_page(cs, vaddr, paddr, lu.prot, mmu_idx, TARGET_PAGE_SIZE);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TLB miss. */
|
|
|
|
if (probe) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_MMU, "mmu=%d miss v=%" VADDR_PRIx "\n",
|
|
|
|
mmu_idx, address);
|
|
|
|
|
2020-08-20 07:46:10 +03:00
|
|
|
env->ear = address;
|
2019-04-02 12:06:02 +03:00
|
|
|
switch (lu.err) {
|
|
|
|
case ERR_PROT:
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr = access_type == MMU_INST_FETCH ? 17 : 16;
|
|
|
|
env->esr |= (access_type == MMU_DATA_STORE) << 10;
|
2019-04-02 12:06:02 +03:00
|
|
|
break;
|
|
|
|
case ERR_MISS:
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr = access_type == MMU_INST_FETCH ? 19 : 18;
|
|
|
|
env->esr |= (access_type == MMU_DATA_STORE) << 10;
|
2019-04-02 12:06:02 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs->exception_index == EXCP_MMU) {
|
|
|
|
cpu_abort(cs, "recursive faults\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TLB miss. */
|
|
|
|
cs->exception_index = EXCP_MMU;
|
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
|
|
|
}
|
|
|
|
|
2013-02-02 13:57:51 +04:00
|
|
|
void mb_cpu_do_interrupt(CPUState *cs)
|
2009-05-20 21:37:39 +04:00
|
|
|
{
|
2013-02-02 13:57:51 +04:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2020-08-18 21:58:23 +03:00
|
|
|
uint32_t t, msr = mb_cpu_read_msr(env);
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2011-04-28 19:20:26 +04:00
|
|
|
/* IMM flag cannot propagate across a branch and into the dslot. */
|
2020-09-04 22:08:24 +03:00
|
|
|
assert((env->iflags & (D_FLAG | IMM_FLAG)) != (D_FLAG | IMM_FLAG));
|
|
|
|
/* BIMM flag cannot be set without D_FLAG. */
|
|
|
|
assert((env->iflags & (D_FLAG | BIMM_FLAG)) != BIMM_FLAG);
|
|
|
|
/* RTI flags are private to translate. */
|
2009-05-20 21:37:39 +04:00
|
|
|
assert(!(env->iflags & (DRTI_FLAG | DRTE_FLAG | DRTB_FLAG)));
|
2012-06-01 07:23:28 +04:00
|
|
|
env->res_addr = RES_ADDR_NONE;
|
2013-08-26 10:31:06 +04:00
|
|
|
switch (cs->exception_index) {
|
2009-09-03 12:25:00 +04:00
|
|
|
case EXCP_HW_EXCP:
|
|
|
|
if (!(env->pvr.regs[0] & PVR0_USE_EXC_MASK)) {
|
2015-11-13 15:24:57 +03:00
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "Exception raised on system without exceptions!\n");
|
2009-09-03 12:25:00 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-20 07:33:32 +03:00
|
|
|
env->regs[17] = env->pc + 4;
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr &= ~(1 << 12);
|
2009-09-03 12:25:00 +04:00
|
|
|
|
|
|
|
/* Exception breaks branch + dslot sequence? */
|
|
|
|
if (env->iflags & D_FLAG) {
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr |= 1 << 12 ;
|
2020-08-20 07:58:40 +03:00
|
|
|
env->btr = env->btarget;
|
2009-09-03 12:25:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable the MMU. */
|
2020-08-18 21:58:23 +03:00
|
|
|
t = (msr & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
msr &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
msr |= t;
|
2009-09-03 12:25:00 +04:00
|
|
|
/* Exception in progress. */
|
2020-08-18 21:58:23 +03:00
|
|
|
msr |= MSR_EIP;
|
|
|
|
mb_cpu_write_msr(env, msr);
|
2009-09-03 12:25:00 +04:00
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
2020-08-20 08:25:16 +03:00
|
|
|
"hw exception at pc=%x ear=%" PRIx64 " "
|
2020-08-20 08:37:40 +03:00
|
|
|
"esr=%x iflags=%x\n",
|
2020-08-20 07:46:10 +03:00
|
|
|
env->pc, env->ear,
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr, env->iflags);
|
2013-06-16 09:28:50 +04:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2020-09-04 22:08:24 +03:00
|
|
|
env->iflags = 0;
|
2020-08-20 07:33:32 +03:00
|
|
|
env->pc = cpu->cfg.base_vectors + 0x20;
|
2009-09-03 12:25:00 +04:00
|
|
|
break;
|
|
|
|
|
2009-05-20 21:37:39 +04:00
|
|
|
case EXCP_MMU:
|
2020-08-20 07:33:32 +03:00
|
|
|
env->regs[17] = env->pc;
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2020-08-18 07:01:30 +03:00
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
|
|
|
"MMU exception at pc=%x iflags=%x ear=%" PRIx64 "\n",
|
|
|
|
env->pc, env->iflags, env->ear);
|
|
|
|
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr &= ~(1 << 12);
|
2009-05-20 21:37:39 +04:00
|
|
|
/* Exception breaks branch + dslot sequence? */
|
|
|
|
if (env->iflags & D_FLAG) {
|
2020-08-20 07:50:35 +03:00
|
|
|
env->esr |= 1 << 12 ;
|
2020-08-20 07:58:40 +03:00
|
|
|
env->btr = env->btarget;
|
2009-05-20 21:37:39 +04:00
|
|
|
|
|
|
|
/* Reexecute the branch. */
|
|
|
|
env->regs[17] -= 4;
|
|
|
|
/* was the branch immprefixed?. */
|
2020-08-20 18:08:19 +03:00
|
|
|
if (env->iflags & BIMM_FLAG) {
|
2009-05-20 21:37:39 +04:00
|
|
|
env->regs[17] -= 4;
|
2013-06-16 09:28:50 +04:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 21:37:39 +04:00
|
|
|
}
|
|
|
|
} else if (env->iflags & IMM_FLAG) {
|
|
|
|
env->regs[17] -= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable the MMU. */
|
2020-08-18 21:58:23 +03:00
|
|
|
t = (msr & (MSR_VM | MSR_UM)) << 1;
|
|
|
|
msr &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
msr |= t;
|
2009-05-20 21:37:39 +04:00
|
|
|
/* Exception in progress. */
|
2020-08-18 21:58:23 +03:00
|
|
|
msr |= MSR_EIP;
|
|
|
|
mb_cpu_write_msr(env, msr);
|
2009-05-20 21:37:39 +04:00
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
2020-08-20 08:25:16 +03:00
|
|
|
"exception at pc=%x ear=%" PRIx64 " iflags=%x\n",
|
2020-08-20 07:46:10 +03:00
|
|
|
env->pc, env->ear, env->iflags);
|
2013-06-16 09:28:50 +04:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2020-09-04 22:08:24 +03:00
|
|
|
env->iflags = 0;
|
2020-08-20 07:33:32 +03:00
|
|
|
env->pc = cpu->cfg.base_vectors + 0x20;
|
2009-05-20 21:37:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCP_IRQ:
|
2020-08-18 21:58:23 +03:00
|
|
|
assert(!(msr & (MSR_EIP | MSR_BIP)));
|
|
|
|
assert(msr & MSR_IE);
|
2020-09-04 22:08:24 +03:00
|
|
|
assert(!(env->iflags & (D_FLAG | IMM_FLAG)));
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2020-08-18 21:58:23 +03:00
|
|
|
t = (msr & (MSR_VM | MSR_UM)) << 1;
|
2009-05-20 21:37:39 +04:00
|
|
|
|
|
|
|
#if 0
|
2012-10-24 13:12:21 +04:00
|
|
|
#include "disas/disas.h"
|
2009-05-20 21:37:39 +04:00
|
|
|
|
|
|
|
/* Useful instrumentation when debugging interrupt issues in either
|
|
|
|
the models or in sw. */
|
|
|
|
{
|
|
|
|
const char *sym;
|
|
|
|
|
2020-08-20 07:33:32 +03:00
|
|
|
sym = lookup_symbol(env->pc);
|
2009-05-20 21:37:39 +04:00
|
|
|
if (sym
|
|
|
|
&& (!strcmp("netif_rx", sym)
|
|
|
|
|| !strcmp("process_backlog", sym))) {
|
|
|
|
|
2020-08-18 21:58:23 +03:00
|
|
|
qemu_log("interrupt at pc=%x msr=%x %x iflags=%x sym=%s\n",
|
|
|
|
env->pc, msr, t, env->iflags, sym);
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2013-06-16 09:28:50 +04:00
|
|
|
log_cpu_state(cs, 0);
|
2009-05-20 21:37:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
2020-08-18 21:58:23 +03:00
|
|
|
"interrupt at pc=%x msr=%x %x iflags=%x\n",
|
|
|
|
env->pc, msr, t, env->iflags);
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2020-08-18 21:58:23 +03:00
|
|
|
msr &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM | MSR_IE);
|
|
|
|
msr |= t;
|
|
|
|
mb_cpu_write_msr(env, msr);
|
2009-05-20 21:37:39 +04:00
|
|
|
|
2020-08-20 07:33:32 +03:00
|
|
|
env->regs[14] = env->pc;
|
2020-09-04 22:08:24 +03:00
|
|
|
env->iflags = 0;
|
2020-08-20 07:33:32 +03:00
|
|
|
env->pc = cpu->cfg.base_vectors + 0x10;
|
2013-06-16 09:28:50 +04:00
|
|
|
//log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2009-05-20 21:37:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCP_HW_BREAK:
|
2020-09-04 22:08:24 +03:00
|
|
|
assert(!(env->iflags & (D_FLAG | IMM_FLAG)));
|
|
|
|
|
2020-08-18 21:58:23 +03:00
|
|
|
t = (msr & (MSR_VM | MSR_UM)) << 1;
|
2009-05-20 21:37:39 +04:00
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
2020-08-20 08:33:37 +03:00
|
|
|
"break at pc=%x msr=%x %x iflags=%x\n",
|
2020-08-18 21:58:23 +03:00
|
|
|
env->pc, msr, t, env->iflags);
|
2013-06-16 09:28:50 +04:00
|
|
|
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
|
2020-08-18 21:58:23 +03:00
|
|
|
msr &= ~(MSR_VMS | MSR_UMS | MSR_VM | MSR_UM);
|
|
|
|
msr |= t;
|
|
|
|
msr |= MSR_BIP;
|
2020-08-23 19:17:22 +03:00
|
|
|
env->regs[16] = env->pc;
|
2020-09-04 22:08:24 +03:00
|
|
|
env->iflags = 0;
|
2020-08-23 19:17:22 +03:00
|
|
|
env->pc = cpu->cfg.base_vectors + 0x18;
|
2020-08-18 21:58:23 +03:00
|
|
|
mb_cpu_write_msr(env, msr);
|
2009-05-20 21:37:39 +04:00
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 19:38:47 +04:00
|
|
|
cpu_abort(cs, "unhandled exception type=%d\n",
|
2013-08-26 10:31:06 +04:00
|
|
|
cs->exception_index);
|
2009-05-20 21:37:39 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 20:55:54 +04:00
|
|
|
hwaddr mb_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
|
2009-05-20 21:37:39 +04:00
|
|
|
{
|
2013-06-29 20:55:54 +04:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2009-05-20 21:37:39 +04:00
|
|
|
target_ulong vaddr, paddr = 0;
|
|
|
|
struct microblaze_mmu_lookup lu;
|
2018-05-16 00:44:28 +03:00
|
|
|
int mmu_idx = cpu_mmu_index(env, false);
|
2009-05-20 21:37:39 +04:00
|
|
|
unsigned int hit;
|
|
|
|
|
2018-05-16 00:44:28 +03:00
|
|
|
if (mmu_idx != MMU_NOMMU_IDX) {
|
2009-05-20 21:37:39 +04:00
|
|
|
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 20:45:30 +04: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)
|
2020-08-20 07:41:10 +03:00
|
|
|
&& (env->msr & MSR_IE)
|
|
|
|
&& !(env->msr & (MSR_EIP | MSR_BIP))
|
2014-09-13 20:45:30 +04:00
|
|
|
&& !(env->iflags & (D_FLAG | IMM_FLAG))) {
|
|
|
|
cs->exception_index = EXCP_IRQ;
|
|
|
|
mb_cpu_do_interrupt(cs);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2020-08-21 06:29:01 +03:00
|
|
|
|
|
|
|
void mb_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
|
|
|
|
MMUAccessType access_type,
|
|
|
|
int mmu_idx, uintptr_t retaddr)
|
|
|
|
{
|
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
uint32_t esr, iflags;
|
|
|
|
|
|
|
|
/* Recover the pc and iflags from the corresponding insn_start. */
|
|
|
|
cpu_restore_state(cs, retaddr, true);
|
|
|
|
iflags = cpu->env.iflags;
|
|
|
|
|
|
|
|
qemu_log_mask(CPU_LOG_INT,
|
2020-08-25 22:37:12 +03:00
|
|
|
"Unaligned access addr=" TARGET_FMT_lx " pc=%x iflags=%x\n",
|
|
|
|
(target_ulong)addr, cpu->env.pc, iflags);
|
2020-08-21 06:29:01 +03:00
|
|
|
|
|
|
|
esr = ESR_EC_UNALIGNED_DATA;
|
|
|
|
if (likely(iflags & ESR_ESS_FLAG)) {
|
|
|
|
esr |= iflags & ESR_ESS_MASK;
|
|
|
|
} else {
|
|
|
|
qemu_log_mask(LOG_UNIMP, "Unaligned access without ESR_ESS_FLAG\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu->env.ear = addr;
|
|
|
|
cpu->env.esr = esr;
|
|
|
|
cs->exception_index = EXCP_HW_EXCP;
|
|
|
|
cpu_loop_exit(cs);
|
|
|
|
}
|