2017-10-01 22:11:45 +02:00
|
|
|
/*
|
|
|
|
* HPPA memory access helper routines
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Helge Deller
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec/exec-all.h"
|
|
|
|
#include "exec/helper-proto.h"
|
|
|
|
#include "qom/cpu.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
int hppa_cpu_handle_mmu_fault(CPUState *cs, vaddr address,
|
|
|
|
int size, int rw, int mmu_idx)
|
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
|
2017-10-11 19:03:02 +02:00
|
|
|
/* ??? Test between data page fault and data memory protection trap,
|
|
|
|
which would affect si_code. */
|
|
|
|
cs->exception_index = EXCP_DMP;
|
2017-10-11 06:19:34 +02:00
|
|
|
cpu->env.cr[CR_IOR] = address;
|
2017-10-01 22:11:45 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#else
|
2017-10-27 10:17:12 +02:00
|
|
|
static hppa_tlb_entry *hppa_find_tlb(CPUHPPAState *env, vaddr addr)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(env->tlb); ++i) {
|
|
|
|
hppa_tlb_entry *ent = &env->tlb[i];
|
2017-10-27 16:26:36 +02:00
|
|
|
if (ent->va_b <= addr && addr <= ent->va_e) {
|
2017-10-27 10:17:12 +02:00
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-10-27 16:26:36 +02:00
|
|
|
static void hppa_flush_tlb_ent(CPUHPPAState *env, hppa_tlb_entry *ent)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(hppa_env_get_cpu(env));
|
|
|
|
unsigned i, n = 1 << (2 * ent->page_size);
|
|
|
|
uint64_t addr = ent->va_b;
|
|
|
|
|
|
|
|
for (i = 0; i < n; ++i, addr += TARGET_PAGE_SIZE) {
|
|
|
|
/* Do not flush MMU_PHYS_IDX. */
|
|
|
|
tlb_flush_page_by_mmuidx(cs, addr, 0xf);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(ent, 0, sizeof(*ent));
|
|
|
|
ent->va_b = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hppa_tlb_entry *hppa_alloc_tlb_ent(CPUHPPAState *env)
|
|
|
|
{
|
|
|
|
hppa_tlb_entry *ent;
|
|
|
|
uint32_t i = env->tlb_last;
|
|
|
|
|
|
|
|
env->tlb_last = (i == ARRAY_SIZE(env->tlb) - 1 ? 0 : i + 1);
|
|
|
|
ent = &env->tlb[i];
|
|
|
|
|
|
|
|
hppa_flush_tlb_ent(env, ent);
|
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
|
2017-10-27 10:17:12 +02:00
|
|
|
int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
|
|
|
|
int type, hwaddr *pphys, int *pprot)
|
|
|
|
{
|
|
|
|
hwaddr phys;
|
|
|
|
int prot, r_prot, w_prot, x_prot;
|
|
|
|
hppa_tlb_entry *ent;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
/* Virtual translation disabled. Direct map virtual to physical. */
|
|
|
|
if (mmu_idx == MMU_PHYS_IDX) {
|
|
|
|
phys = addr;
|
|
|
|
prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
|
|
|
|
goto egress;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find a valid tlb entry that matches the virtual address. */
|
|
|
|
ent = hppa_find_tlb(env, addr);
|
2017-10-27 16:26:36 +02:00
|
|
|
if (ent == NULL || !ent->entry_valid) {
|
2017-10-27 10:17:12 +02:00
|
|
|
phys = 0;
|
|
|
|
prot = 0;
|
2017-12-29 04:26:52 +01:00
|
|
|
/* ??? Unconditionally report data tlb miss,
|
|
|
|
even if this is an instruction fetch. */
|
|
|
|
ret = EXCP_DTLB_MISS;
|
2017-10-27 10:17:12 +02:00
|
|
|
goto egress;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We now know the physical address. */
|
|
|
|
phys = ent->pa + (addr & ~TARGET_PAGE_MASK);
|
|
|
|
|
|
|
|
/* Map TLB access_rights field to QEMU protection. */
|
|
|
|
r_prot = (mmu_idx <= ent->ar_pl1) * PAGE_READ;
|
|
|
|
w_prot = (mmu_idx <= ent->ar_pl2) * PAGE_WRITE;
|
|
|
|
x_prot = (ent->ar_pl2 <= mmu_idx && mmu_idx <= ent->ar_pl1) * PAGE_EXEC;
|
|
|
|
switch (ent->ar_type) {
|
|
|
|
case 0: /* read-only: data page */
|
|
|
|
prot = r_prot;
|
|
|
|
break;
|
|
|
|
case 1: /* read/write: dynamic data page */
|
|
|
|
prot = r_prot | w_prot;
|
|
|
|
break;
|
|
|
|
case 2: /* read/execute: normal code page */
|
|
|
|
prot = r_prot | x_prot;
|
|
|
|
break;
|
|
|
|
case 3: /* read/write/execute: dynamic code page */
|
|
|
|
prot = r_prot | w_prot | x_prot;
|
|
|
|
break;
|
|
|
|
default: /* execute: promote to privilege level type & 3 */
|
|
|
|
prot = x_prot;
|
2017-12-15 21:37:26 +01:00
|
|
|
break;
|
2017-10-27 10:17:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??? Check PSW_P and ent->access_prot. This can remove PAGE_WRITE. */
|
|
|
|
|
|
|
|
/* No guest access type indicates a non-architectural access from
|
|
|
|
within QEMU. Bypass checks for access, D, B and T bits. */
|
|
|
|
if (type == 0) {
|
|
|
|
goto egress;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(!(prot & type))) {
|
|
|
|
/* The access isn't allowed -- Inst/Data Memory Protection Fault. */
|
2018-10-07 22:51:53 +02:00
|
|
|
ret = (type & PAGE_EXEC ? EXCP_IMP :
|
|
|
|
prot & PAGE_READ ? EXCP_DMP : EXCP_DMAR);
|
2017-10-27 10:17:12 +02:00
|
|
|
goto egress;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In reverse priority order, check for conditions which raise faults.
|
|
|
|
As we go, remove PROT bits that cover the condition we want to check.
|
|
|
|
In this way, the resulting PROT will force a re-check of the
|
|
|
|
architectural TLB entry for the next access. */
|
|
|
|
if (unlikely(!ent->d)) {
|
|
|
|
if (type & PAGE_WRITE) {
|
|
|
|
/* The D bit is not set -- TLB Dirty Bit Fault. */
|
|
|
|
ret = EXCP_TLB_DIRTY;
|
|
|
|
}
|
|
|
|
prot &= PAGE_READ | PAGE_EXEC;
|
|
|
|
}
|
|
|
|
if (unlikely(ent->b)) {
|
|
|
|
if (type & PAGE_WRITE) {
|
|
|
|
/* The B bit is set -- Data Memory Break Fault. */
|
|
|
|
ret = EXCP_DMB;
|
|
|
|
}
|
|
|
|
prot &= PAGE_READ | PAGE_EXEC;
|
|
|
|
}
|
|
|
|
if (unlikely(ent->t)) {
|
|
|
|
if (!(type & PAGE_EXEC)) {
|
|
|
|
/* The T bit is set -- Page Reference Fault. */
|
|
|
|
ret = EXCP_PAGE_REF;
|
|
|
|
}
|
|
|
|
prot &= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
egress:
|
|
|
|
*pphys = phys;
|
|
|
|
*pprot = prot;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:11:45 +02:00
|
|
|
hwaddr hppa_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
|
|
|
|
{
|
2017-10-27 10:17:12 +02:00
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
hwaddr phys;
|
|
|
|
int prot, excp;
|
|
|
|
|
|
|
|
/* If the (data) mmu is disabled, bypass translation. */
|
|
|
|
/* ??? We really ought to know if the code mmu is disabled too,
|
|
|
|
in order to get the correct debugging dumps. */
|
|
|
|
if (!(cpu->env.psw & PSW_D)) {
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
excp = hppa_get_physical_address(&cpu->env, addr, MMU_KERNEL_IDX, 0,
|
|
|
|
&phys, &prot);
|
|
|
|
|
|
|
|
/* Since we're translating for debugging, the only error that is a
|
|
|
|
hard error is no translation at all. Otherwise, while a real cpu
|
|
|
|
access might not have permission, the debugger does. */
|
|
|
|
return excp == EXCP_DTLB_MISS ? -1 : phys;
|
2017-10-01 22:11:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-27 10:17:12 +02:00
|
|
|
void tlb_fill(CPUState *cs, target_ulong addr, int size,
|
|
|
|
MMUAccessType type, int mmu_idx, uintptr_t retaddr)
|
2017-10-01 22:11:45 +02:00
|
|
|
{
|
2017-10-27 10:17:12 +02:00
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
int prot, excp, a_prot;
|
|
|
|
hwaddr phys;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MMU_INST_FETCH:
|
|
|
|
a_prot = PAGE_EXEC;
|
|
|
|
break;
|
|
|
|
case MMU_DATA_STORE:
|
|
|
|
a_prot = PAGE_WRITE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
a_prot = PAGE_READ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
excp = hppa_get_physical_address(&cpu->env, addr, mmu_idx,
|
|
|
|
a_prot, &phys, &prot);
|
|
|
|
if (unlikely(excp >= 0)) {
|
|
|
|
/* Failure. Raise the indicated exception. */
|
|
|
|
cs->exception_index = excp;
|
|
|
|
if (cpu->env.psw & PSW_Q) {
|
|
|
|
/* ??? Needs tweaking for hppa64. */
|
|
|
|
cpu->env.cr[CR_IOR] = addr;
|
|
|
|
cpu->env.cr[CR_ISR] = addr >> 32;
|
|
|
|
}
|
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
|
|
|
}
|
2017-10-01 22:11:45 +02:00
|
|
|
|
|
|
|
/* Success! Store the translation into the QEMU TLB. */
|
|
|
|
tlb_set_page(cs, addr & TARGET_PAGE_MASK, phys & TARGET_PAGE_MASK,
|
|
|
|
prot, mmu_idx, TARGET_PAGE_SIZE);
|
|
|
|
}
|
2017-10-27 16:26:36 +02:00
|
|
|
|
|
|
|
/* Insert (Insn/Data) TLB Address. Note this is PA 1.1 only. */
|
|
|
|
void HELPER(itlba)(CPUHPPAState *env, target_ulong addr, target_ureg reg)
|
|
|
|
{
|
|
|
|
hppa_tlb_entry *empty = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Zap any old entries covering ADDR; notice empty entries on the way. */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(env->tlb); ++i) {
|
|
|
|
hppa_tlb_entry *ent = &env->tlb[i];
|
|
|
|
if (!ent->entry_valid) {
|
|
|
|
empty = ent;
|
|
|
|
} else if (ent->va_b <= addr && addr <= ent->va_e) {
|
|
|
|
hppa_flush_tlb_ent(env, ent);
|
|
|
|
empty = ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we didn't see an empty entry, evict one. */
|
|
|
|
if (empty == NULL) {
|
|
|
|
empty = hppa_alloc_tlb_ent(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note that empty->entry_valid == 0 already. */
|
|
|
|
empty->va_b = addr & TARGET_PAGE_MASK;
|
|
|
|
empty->va_e = empty->va_b + TARGET_PAGE_SIZE - 1;
|
|
|
|
empty->pa = extract32(reg, 5, 20) << TARGET_PAGE_BITS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Insert (Insn/Data) TLB Protection. Note this is PA 1.1 only. */
|
|
|
|
void HELPER(itlbp)(CPUHPPAState *env, target_ulong addr, target_ureg reg)
|
|
|
|
{
|
|
|
|
hppa_tlb_entry *ent = hppa_find_tlb(env, addr);
|
|
|
|
|
|
|
|
if (unlikely(ent == NULL || ent->entry_valid)) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "ITLBP not following ITLBA\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->access_id = extract32(reg, 1, 18);
|
|
|
|
ent->u = extract32(reg, 19, 1);
|
|
|
|
ent->ar_pl2 = extract32(reg, 20, 2);
|
|
|
|
ent->ar_pl1 = extract32(reg, 22, 2);
|
|
|
|
ent->ar_type = extract32(reg, 24, 3);
|
|
|
|
ent->b = extract32(reg, 27, 1);
|
|
|
|
ent->d = extract32(reg, 28, 1);
|
|
|
|
ent->t = extract32(reg, 29, 1);
|
|
|
|
ent->entry_valid = 1;
|
|
|
|
}
|
2017-10-27 18:33:23 +02:00
|
|
|
|
|
|
|
/* Purge (Insn/Data) TLB. This is explicitly page-based, and is
|
|
|
|
synchronous across all processors. */
|
|
|
|
static void ptlb_work(CPUState *cpu, run_on_cpu_data data)
|
|
|
|
{
|
|
|
|
CPUHPPAState *env = cpu->env_ptr;
|
|
|
|
target_ulong addr = (target_ulong) data.target_ptr;
|
|
|
|
hppa_tlb_entry *ent = hppa_find_tlb(env, addr);
|
|
|
|
|
|
|
|
if (ent && ent->entry_valid) {
|
|
|
|
hppa_flush_tlb_ent(env, ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(ptlb)(CPUHPPAState *env, target_ulong addr)
|
|
|
|
{
|
|
|
|
CPUState *src = CPU(hppa_env_get_cpu(env));
|
|
|
|
CPUState *cpu;
|
|
|
|
run_on_cpu_data data = RUN_ON_CPU_TARGET_PTR(addr);
|
|
|
|
|
|
|
|
CPU_FOREACH(cpu) {
|
|
|
|
if (cpu != src) {
|
|
|
|
async_run_on_cpu(cpu, ptlb_work, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
async_safe_run_on_cpu(src, ptlb_work, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Purge (Insn/Data) TLB entry. This affects an implementation-defined
|
|
|
|
number of pages/entries (we choose all), and is local to the cpu. */
|
|
|
|
void HELPER(ptlbe)(CPUHPPAState *env)
|
|
|
|
{
|
|
|
|
CPUState *src = CPU(hppa_env_get_cpu(env));
|
|
|
|
|
|
|
|
memset(env->tlb, 0, sizeof(env->tlb));
|
|
|
|
tlb_flush_by_mmuidx(src, 0xf);
|
|
|
|
}
|
2017-11-05 10:50:47 +01:00
|
|
|
|
|
|
|
target_ureg HELPER(lpa)(CPUHPPAState *env, target_ulong addr)
|
|
|
|
{
|
|
|
|
hwaddr phys;
|
|
|
|
int prot, excp;
|
|
|
|
|
|
|
|
excp = hppa_get_physical_address(env, addr, MMU_KERNEL_IDX, 0,
|
|
|
|
&phys, &prot);
|
|
|
|
if (excp >= 0) {
|
|
|
|
if (env->psw & PSW_Q) {
|
|
|
|
/* ??? Needs tweaking for hppa64. */
|
|
|
|
env->cr[CR_IOR] = addr;
|
|
|
|
env->cr[CR_ISR] = addr >> 32;
|
|
|
|
}
|
|
|
|
if (excp == EXCP_DTLB_MISS) {
|
|
|
|
excp = EXCP_NA_DTLB_MISS;
|
|
|
|
}
|
|
|
|
hppa_dynamic_excp(env, excp, GETPC());
|
|
|
|
}
|
|
|
|
return phys;
|
|
|
|
}
|
2017-12-15 21:37:26 +01:00
|
|
|
|
|
|
|
/* Return the ar_type of the TLB at VADDR, or -1. */
|
|
|
|
int hppa_artype_for_page(CPUHPPAState *env, target_ulong vaddr)
|
|
|
|
{
|
|
|
|
hppa_tlb_entry *ent = hppa_find_tlb(env, vaddr);
|
|
|
|
return ent ? ent->ar_type : -1;
|
|
|
|
}
|
2017-10-01 22:11:45 +02:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|