2011-02-17 23:45:04 +01:00
|
|
|
#include <assert.h>
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "cpu.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
#include "helper.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/host-utils.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/lm32/lm32_pic.h"
|
2013-07-24 22:49:02 +02:00
|
|
|
#include "hw/char/lm32_juart.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
|
2013-08-27 22:03:27 +02:00
|
|
|
#include "exec/softmmu_exec.h"
|
|
|
|
|
2013-09-23 20:47:33 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#endif
|
|
|
|
|
2011-02-17 23:45:04 +01:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
#define MMUSUFFIX _mmu
|
|
|
|
#define SHIFT 0
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/softmmu_template.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
#define SHIFT 1
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/softmmu_template.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
#define SHIFT 2
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/softmmu_template.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
#define SHIFT 3
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/softmmu_template.h"
|
2011-02-17 23:45:04 +01:00
|
|
|
|
2013-09-18 19:10:45 +02:00
|
|
|
void raise_exception(CPULM32State *env, int index)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
2013-08-26 08:31:06 +02:00
|
|
|
CPUState *cs = CPU(lm32_env_get_cpu(env));
|
|
|
|
|
|
|
|
cs->exception_index = index;
|
2013-08-27 17:52:12 +02:00
|
|
|
cpu_loop_exit(cs);
|
2011-02-17 23:45:04 +01:00
|
|
|
}
|
|
|
|
|
2013-09-18 19:10:45 +02:00
|
|
|
void HELPER(raise_exception)(CPULM32State *env, uint32_t index)
|
|
|
|
{
|
|
|
|
raise_exception(env, index);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
void HELPER(hlt)(CPULM32State *env)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
2013-01-17 18:51:17 +01:00
|
|
|
CPUState *cs = CPU(lm32_env_get_cpu(env));
|
|
|
|
|
|
|
|
cs->halted = 1;
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = EXCP_HLT;
|
2013-08-27 17:52:12 +02:00
|
|
|
cpu_loop_exit(cs);
|
2011-02-17 23:45:04 +01:00
|
|
|
}
|
|
|
|
|
2013-09-23 20:47:33 +02:00
|
|
|
void HELPER(ill)(CPULM32State *env)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
CPUState *cs = CPU(lm32_env_get_cpu(env));
|
|
|
|
fprintf(stderr, "VM paused due to illegal instruction. "
|
|
|
|
"Connect a debugger or switch to the monitor console "
|
|
|
|
"to find out more.\n");
|
|
|
|
qemu_system_vmstop_request(RUN_STATE_PAUSED);
|
|
|
|
cs->halted = 1;
|
|
|
|
raise_exception(env, EXCP_HALTED);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:10:45 +02:00
|
|
|
void HELPER(wcsr_bp)(CPULM32State *env, uint32_t bp, uint32_t idx)
|
|
|
|
{
|
|
|
|
uint32_t addr = bp & ~1;
|
|
|
|
|
|
|
|
assert(idx < 4);
|
|
|
|
|
|
|
|
env->bp[idx] = bp;
|
|
|
|
lm32_breakpoint_remove(env, idx);
|
|
|
|
if (bp & 1) {
|
|
|
|
lm32_breakpoint_insert(env, idx, addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(wcsr_wp)(CPULM32State *env, uint32_t wp, uint32_t idx)
|
|
|
|
{
|
|
|
|
lm32_wp_t wp_type;
|
|
|
|
|
|
|
|
assert(idx < 4);
|
|
|
|
|
|
|
|
env->wp[idx] = wp;
|
|
|
|
|
|
|
|
wp_type = lm32_wp_type(env->dc, idx);
|
|
|
|
lm32_watchpoint_remove(env, idx);
|
|
|
|
if (wp_type != LM32_WP_DISABLED) {
|
|
|
|
lm32_watchpoint_insert(env, idx, wp, wp_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(wcsr_dc)(CPULM32State *env, uint32_t dc)
|
|
|
|
{
|
|
|
|
uint32_t old_dc;
|
|
|
|
int i;
|
|
|
|
lm32_wp_t old_type;
|
|
|
|
lm32_wp_t new_type;
|
|
|
|
|
|
|
|
old_dc = env->dc;
|
|
|
|
env->dc = dc;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
old_type = lm32_wp_type(old_dc, i);
|
|
|
|
new_type = lm32_wp_type(dc, i);
|
|
|
|
|
|
|
|
if (old_type != new_type) {
|
|
|
|
lm32_watchpoint_remove(env, i);
|
|
|
|
if (new_type != LM32_WP_DISABLED) {
|
|
|
|
lm32_watchpoint_insert(env, i, env->wp[i], new_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
void HELPER(wcsr_im)(CPULM32State *env, uint32_t im)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
lm32_pic_set_im(env->pic_state, im);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
void HELPER(wcsr_ip)(CPULM32State *env, uint32_t im)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
lm32_pic_set_ip(env->pic_state, im);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
void HELPER(wcsr_jtx)(CPULM32State *env, uint32_t jtx)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
lm32_juart_set_jtx(env->juart_state, jtx);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
void HELPER(wcsr_jrx)(CPULM32State *env, uint32_t jrx)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
lm32_juart_set_jrx(env->juart_state, jrx);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
uint32_t HELPER(rcsr_im)(CPULM32State *env)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
return lm32_pic_get_im(env->pic_state);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
uint32_t HELPER(rcsr_ip)(CPULM32State *env)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
return lm32_pic_get_ip(env->pic_state);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
uint32_t HELPER(rcsr_jtx)(CPULM32State *env)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
return lm32_juart_get_jtx(env->juart_state);
|
|
|
|
}
|
|
|
|
|
2013-03-03 23:17:48 +01:00
|
|
|
uint32_t HELPER(rcsr_jrx)(CPULM32State *env)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
return lm32_juart_get_jrx(env->juart_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to fill the TLB and return an exception if error. If retaddr is
|
2013-08-27 00:28:06 +02:00
|
|
|
* NULL, it means that the function was called in C code (i.e. not
|
|
|
|
* from generated code or from helper.c)
|
|
|
|
*/
|
|
|
|
void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx,
|
2012-04-09 16:20:20 +02:00
|
|
|
uintptr_t retaddr)
|
2011-02-17 23:45:04 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-08-27 00:28:06 +02:00
|
|
|
ret = lm32_cpu_handle_mmu_fault(cs, addr, is_write, mmu_idx);
|
2011-02-17 23:45:04 +01:00
|
|
|
if (unlikely(ret)) {
|
|
|
|
if (retaddr) {
|
|
|
|
/* now we have a real cpu fault */
|
2013-09-01 16:51:34 +02:00
|
|
|
cpu_restore_state(cs, retaddr);
|
2011-02-17 23:45:04 +01:00
|
|
|
}
|
2013-08-27 17:52:12 +02:00
|
|
|
cpu_loop_exit(cs);
|
2011-02-17 23:45:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|