target-microblaze: Add support for extended access to TLBLO

Add support for extended access to TLBLO's upper 32 bits.

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
This commit is contained in:
Edgar E. Iglesias 2018-04-16 21:25:01 +02:00
parent 05a9a6519c
commit f0f7e7f7b2
5 changed files with 35 additions and 18 deletions

View File

@ -25,8 +25,8 @@ DEF_HELPER_3(fcmp_ge, i32, env, i32, i32)
DEF_HELPER_FLAGS_2(pcmpbf, TCG_CALL_NO_RWG_SE, i32, i32, i32) DEF_HELPER_FLAGS_2(pcmpbf, TCG_CALL_NO_RWG_SE, i32, i32, i32)
#if !defined(CONFIG_USER_ONLY) #if !defined(CONFIG_USER_ONLY)
DEF_HELPER_2(mmu_read, i32, env, i32) DEF_HELPER_3(mmu_read, i32, env, i32, i32)
DEF_HELPER_3(mmu_write, void, env, i32, i32) DEF_HELPER_4(mmu_write, void, env, i32, i32, i32)
#endif #endif
DEF_HELPER_5(memalign, void, env, tl, i32, i32, i32) DEF_HELPER_5(memalign, void, env, tl, i32, i32, i32)

View File

@ -180,7 +180,7 @@ done:
} }
/* Writes/reads to the MMU's special regs end up here. */ /* Writes/reads to the MMU's special regs end up here. */
uint32_t mmu_read(CPUMBState *env, uint32_t rn) uint32_t mmu_read(CPUMBState *env, bool ext, uint32_t rn)
{ {
unsigned int i; unsigned int i;
uint32_t r = 0; uint32_t r = 0;
@ -189,6 +189,10 @@ uint32_t mmu_read(CPUMBState *env, uint32_t rn)
qemu_log_mask(LOG_GUEST_ERROR, "MMU access on MMU-less system\n"); qemu_log_mask(LOG_GUEST_ERROR, "MMU access on MMU-less system\n");
return 0; return 0;
} }
if (ext && rn != MMU_R_TLBLO) {
qemu_log_mask(LOG_GUEST_ERROR, "Extended access only to TLBLO.\n");
return 0;
}
switch (rn) { switch (rn) {
/* Reads to HI/LO trig reads from the mmu rams. */ /* Reads to HI/LO trig reads from the mmu rams. */
@ -200,7 +204,7 @@ uint32_t mmu_read(CPUMBState *env, uint32_t rn)
} }
i = env->mmu.regs[MMU_R_TLBX] & 0xff; i = env->mmu.regs[MMU_R_TLBX] & 0xff;
r = env->mmu.rams[rn & 1][i]; r = extract64(env->mmu.rams[rn & 1][i], ext * 32, 32);
if (rn == MMU_R_TLBHI) if (rn == MMU_R_TLBHI)
env->mmu.regs[MMU_R_PID] = env->mmu.tids[i]; env->mmu.regs[MMU_R_PID] = env->mmu.tids[i];
break; break;
@ -226,9 +230,10 @@ uint32_t mmu_read(CPUMBState *env, uint32_t rn)
return r; return r;
} }
void mmu_write(CPUMBState *env, uint32_t rn, uint32_t v) void mmu_write(CPUMBState *env, bool ext, uint32_t rn, uint32_t v)
{ {
MicroBlazeCPU *cpu = mb_env_get_cpu(env); MicroBlazeCPU *cpu = mb_env_get_cpu(env);
uint64_t tmp64;
unsigned int i; unsigned int i;
D(qemu_log("%s rn=%d=%x old=%x\n", __func__, rn, v, env->mmu.regs[rn])); D(qemu_log("%s rn=%d=%x old=%x\n", __func__, rn, v, env->mmu.regs[rn]));
@ -236,6 +241,10 @@ void mmu_write(CPUMBState *env, uint32_t rn, uint32_t v)
qemu_log_mask(LOG_GUEST_ERROR, "MMU access on MMU-less system\n"); qemu_log_mask(LOG_GUEST_ERROR, "MMU access on MMU-less system\n");
return; return;
} }
if (ext && rn != MMU_R_TLBLO) {
qemu_log_mask(LOG_GUEST_ERROR, "Extended access only to TLBLO.\n");
return;
}
switch (rn) { switch (rn) {
/* Writes to HI/LO trig writes to the mmu rams. */ /* Writes to HI/LO trig writes to the mmu rams. */
@ -250,7 +259,8 @@ void mmu_write(CPUMBState *env, uint32_t rn, uint32_t v)
env->mmu.tids[i] = env->mmu.regs[MMU_R_PID] & 0xff; env->mmu.tids[i] = env->mmu.regs[MMU_R_PID] & 0xff;
mmu_flush_idx(env, i); mmu_flush_idx(env, i);
} }
env->mmu.rams[rn & 1][i] = v; tmp64 = env->mmu.rams[rn & 1][i];
env->mmu.rams[rn & 1][i] = deposit64(tmp64, ext * 32, 32, v);
D(qemu_log("%s ram[%d][%d]=%x\n", __func__, rn & 1, i, v)); D(qemu_log("%s ram[%d][%d]=%x\n", __func__, rn & 1, i, v));
break; break;

View File

@ -90,6 +90,6 @@ struct microblaze_mmu_lookup
unsigned int mmu_translate(struct microblaze_mmu *mmu, unsigned int mmu_translate(struct microblaze_mmu *mmu,
struct microblaze_mmu_lookup *lu, struct microblaze_mmu_lookup *lu,
target_ulong vaddr, int rw, int mmu_idx); target_ulong vaddr, int rw, int mmu_idx);
uint32_t mmu_read(CPUMBState *env, uint32_t rn); uint32_t mmu_read(CPUMBState *env, bool ea, uint32_t rn);
void mmu_write(CPUMBState *env, uint32_t rn, uint32_t v); void mmu_write(CPUMBState *env, bool ea, uint32_t rn, uint32_t v);
void mmu_init(struct microblaze_mmu *mmu); void mmu_init(struct microblaze_mmu *mmu);

View File

@ -476,14 +476,14 @@ void helper_stackprot(CPUMBState *env, target_ulong addr)
#if !defined(CONFIG_USER_ONLY) #if !defined(CONFIG_USER_ONLY)
/* Writes/reads to the MMU's special regs end up here. */ /* Writes/reads to the MMU's special regs end up here. */
uint32_t helper_mmu_read(CPUMBState *env, uint32_t rn) uint32_t helper_mmu_read(CPUMBState *env, uint32_t ext, uint32_t rn)
{ {
return mmu_read(env, rn); return mmu_read(env, ext, rn);
} }
void helper_mmu_write(CPUMBState *env, uint32_t rn, uint32_t v) void helper_mmu_write(CPUMBState *env, uint32_t ext, uint32_t rn, uint32_t v)
{ {
mmu_write(env, rn, v); mmu_write(env, ext, rn, v);
} }
void mb_cpu_unassigned_access(CPUState *cs, hwaddr addr, void mb_cpu_unassigned_access(CPUState *cs, hwaddr addr,

View File

@ -459,7 +459,7 @@ static void dec_msr(DisasContext *dc)
CPUState *cs = CPU(dc->cpu); CPUState *cs = CPU(dc->cpu);
TCGv_i32 t0, t1; TCGv_i32 t0, t1;
unsigned int sr, rn; unsigned int sr, rn;
bool to, clrset, extended; bool to, clrset, extended = false;
sr = extract32(dc->imm, 0, 14); sr = extract32(dc->imm, 0, 14);
to = extract32(dc->imm, 14, 1); to = extract32(dc->imm, 14, 1);
@ -467,9 +467,14 @@ static void dec_msr(DisasContext *dc)
dc->type_b = 1; dc->type_b = 1;
if (to) { if (to) {
dc->cpustate_changed = 1; dc->cpustate_changed = 1;
extended = extract32(dc->imm, 24, 1); }
} else {
extended = extract32(dc->imm, 19, 1); /* Extended MSRs are only available if addr_size > 32. */
if (dc->cpu->cfg.addr_size > 32) {
/* The E-bit is encoded differently for To/From MSR. */
static const unsigned int e_bit[] = { 19, 24 };
extended = extract32(dc->imm, e_bit[to], 1);
} }
/* msrclr and msrset. */ /* msrclr and msrset. */
@ -516,17 +521,19 @@ static void dec_msr(DisasContext *dc)
#if !defined(CONFIG_USER_ONLY) #if !defined(CONFIG_USER_ONLY)
/* Catch read/writes to the mmu block. */ /* Catch read/writes to the mmu block. */
if ((sr & ~0xff) == 0x1000) { if ((sr & ~0xff) == 0x1000) {
TCGv_i32 tmp_ext = tcg_const_i32(extended);
TCGv_i32 tmp_sr; TCGv_i32 tmp_sr;
sr &= 7; sr &= 7;
tmp_sr = tcg_const_i32(sr); tmp_sr = tcg_const_i32(sr);
LOG_DIS("m%ss sr%d r%d imm=%x\n", to ? "t" : "f", sr, dc->ra, dc->imm); LOG_DIS("m%ss sr%d r%d imm=%x\n", to ? "t" : "f", sr, dc->ra, dc->imm);
if (to) { if (to) {
gen_helper_mmu_write(cpu_env, tmp_sr, cpu_R[dc->ra]); gen_helper_mmu_write(cpu_env, tmp_ext, tmp_sr, cpu_R[dc->ra]);
} else { } else {
gen_helper_mmu_read(cpu_R[dc->rd], cpu_env, tmp_sr); gen_helper_mmu_read(cpu_R[dc->rd], cpu_env, tmp_ext, tmp_sr);
} }
tcg_temp_free_i32(tmp_sr); tcg_temp_free_i32(tmp_sr);
tcg_temp_free_i32(tmp_ext);
return; return;
} }
#endif #endif