2012-05-30 06:23:30 +02:00
|
|
|
/*
|
|
|
|
* PowerPC MMU, TLB, SLB and BAT emulation helpers for QEMU.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
|
|
|
*
|
|
|
|
* 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
|
2020-10-19 08:11:26 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-05-30 06:23:30 +02:00
|
|
|
*
|
|
|
|
* 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/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
|
2016-01-26 19:16:58 +01:00
|
|
|
#include "qemu/osdep.h"
|
2018-06-25 14:42:24 +02:00
|
|
|
#include "qemu/units.h"
|
2012-05-30 06:23:30 +02:00
|
|
|
#include "cpu.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/kvm.h"
|
2012-05-30 06:23:33 +02:00
|
|
|
#include "kvm_ppc.h"
|
2013-03-12 01:31:06 +01:00
|
|
|
#include "mmu-hash64.h"
|
2013-03-12 01:31:07 +01:00
|
|
|
#include "mmu-hash32.h"
|
2016-03-15 13:18:37 +01:00
|
|
|
#include "exec/exec-all.h"
|
2016-01-07 14:55:28 +01:00
|
|
|
#include "exec/log.h"
|
ppc: Do some batching of TCG tlb flushes
On ppc64 especially, we flush the tlb on any slbie or tlbie instruction.
However, those instructions often come in bursts of 3 or more (context
switch will favor a series of slbie's for example to an slbia if the
SLB has less than a certain number of entries in it, and tlbie's can
happen in a series, with PAPR, H_BULK_REMOVE can remove up to 4 entries
at a time.
Doing a tlb_flush() each time is a waste of time. We end up doing a memset
of the whole TLB, reloading it for the next instruction, memset'ing again,
etc...
Those instructions don't have to take effect immediately. For slbie, they
can wait for the next context synchronizing event. For tlbie, the next
tlbsync.
This implements batching by keeping a flag that indicates that we have a
TLB in need of flushing. We check it on interrupts, rfi's, isync's and
tlbsync and flush the TLB if needed.
This reduces the number of tlb_flush() on a boot to a ubuntu installer
first dialog screen from roughly 360K down to 36K.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
[clg: added a 'CPUPPCState *' variable in h_remove() and
h_bulk_remove() ]
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: removed spurious whitespace change, use 0/1 not true/false
consistently, since tlb_need_flush has int type]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-05-03 18:03:25 +02:00
|
|
|
#include "helper_regs.h"
|
2017-02-24 02:05:12 +01:00
|
|
|
#include "qemu/error-report.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2019-04-17 21:17:58 +02:00
|
|
|
#include "qemu/qemu-print.h"
|
2021-05-18 22:11:29 +02:00
|
|
|
#include "internal.h"
|
2017-03-01 07:54:38 +01:00
|
|
|
#include "mmu-book3s-v3.h"
|
2017-07-03 08:19:47 +02:00
|
|
|
#include "mmu-radix64.h"
|
2012-05-30 06:23:30 +02:00
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
|
|
|
#include "exec/helper-proto.h"
|
|
|
|
#include "exec/cpu_ldst.h"
|
|
|
|
#endif
|
2019-03-21 12:36:09 +01:00
|
|
|
/* #define DEBUG_MMU */
|
|
|
|
/* #define DEBUG_BATS */
|
|
|
|
/* #define DEBUG_SOFTWARE_TLB */
|
|
|
|
/* #define DUMP_PAGE_TABLES */
|
|
|
|
/* #define FLUSH_ALL_TLBS */
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_MMU
|
2015-11-13 13:34:23 +01:00
|
|
|
# define LOG_MMU_STATE(cpu) log_cpu_state_mask(CPU_LOG_MMU, (cpu), 0)
|
2012-05-30 06:23:33 +02:00
|
|
|
#else
|
2013-07-03 00:52:23 +02:00
|
|
|
# define LOG_MMU_STATE(cpu) do { } while (0)
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
2012-05-30 06:23:30 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_SOFTWARE_TLB
|
2015-11-13 13:34:23 +01:00
|
|
|
# define LOG_SWTLB(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
|
2012-05-30 06:23:30 +02:00
|
|
|
#else
|
|
|
|
# define LOG_SWTLB(...) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
#ifdef DEBUG_BATS
|
2015-11-13 13:34:23 +01:00
|
|
|
# define LOG_BATS(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
|
2012-05-30 06:23:33 +02:00
|
|
|
#else
|
|
|
|
# define LOG_BATS(...) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* PowerPC MMU emulation */
|
2013-03-12 01:31:17 +01:00
|
|
|
|
|
|
|
/* Context used internally during MMU translations */
|
|
|
|
typedef struct mmu_ctx_t mmu_ctx_t;
|
|
|
|
struct mmu_ctx_t {
|
|
|
|
hwaddr raddr; /* Real address */
|
|
|
|
hwaddr eaddr; /* Effective address */
|
|
|
|
int prot; /* Protection bits */
|
|
|
|
hwaddr hash[2]; /* Pagetable hash values */
|
|
|
|
target_ulong ptem; /* Virtual segment ID | API */
|
|
|
|
int key; /* Access key */
|
|
|
|
int nx; /* Non-execute area */
|
|
|
|
};
|
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Common routines used by software and hardware TLBs emulation */
|
|
|
|
static inline int pte_is_valid(target_ulong pte0)
|
|
|
|
{
|
|
|
|
return pte0 & 0x80000000 ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pte_invalidate(target_ulong *pte0)
|
|
|
|
{
|
|
|
|
*pte0 &= ~0x80000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PTE_PTEM_MASK 0x7FFFFFBF
|
|
|
|
#define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
|
|
|
|
|
2013-03-12 01:31:14 +01:00
|
|
|
static int pp_check(int key, int pp, int nx)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int access;
|
|
|
|
|
|
|
|
/* Compute access rights */
|
|
|
|
access = 0;
|
|
|
|
if (key == 0) {
|
|
|
|
switch (pp) {
|
|
|
|
case 0x0:
|
|
|
|
case 0x1:
|
|
|
|
case 0x2:
|
|
|
|
access |= PAGE_WRITE;
|
2019-07-19 15:14:23 +02:00
|
|
|
/* fall through */
|
2012-05-30 06:23:33 +02:00
|
|
|
case 0x3:
|
|
|
|
access |= PAGE_READ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (pp) {
|
|
|
|
case 0x0:
|
|
|
|
access = 0;
|
|
|
|
break;
|
|
|
|
case 0x1:
|
|
|
|
case 0x3:
|
|
|
|
access = PAGE_READ;
|
|
|
|
break;
|
|
|
|
case 0x2:
|
|
|
|
access = PAGE_READ | PAGE_WRITE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nx == 0) {
|
|
|
|
access |= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
return access;
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:29 +02:00
|
|
|
static int check_prot(int prot, MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2021-05-18 22:11:29 +02:00
|
|
|
return prot & prot_for_access_type(access_type) ? 0 : -2;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static int ppc6xx_tlb_pte_check(mmu_ctx_t *ctx, target_ulong pte0,
|
|
|
|
target_ulong pte1, int h,
|
2021-05-18 22:11:30 +02:00
|
|
|
MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong ptem, mmask;
|
|
|
|
int access, ret, pteh, ptev, pp;
|
|
|
|
|
|
|
|
ret = -1;
|
|
|
|
/* Check validity and table match */
|
2013-03-12 01:31:07 +01:00
|
|
|
ptev = pte_is_valid(pte0);
|
|
|
|
pteh = (pte0 >> 6) & 1;
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ptev && h == pteh) {
|
|
|
|
/* Check vsid & api */
|
2013-03-12 01:31:07 +01:00
|
|
|
ptem = pte0 & PTE_PTEM_MASK;
|
|
|
|
mmask = PTE_CHECK_MASK;
|
|
|
|
pp = pte1 & 0x00000003;
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ptem == ctx->ptem) {
|
2012-10-23 12:30:10 +02:00
|
|
|
if (ctx->raddr != (hwaddr)-1ULL) {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* all matches should have equal RPN, WIMG & PP */
|
|
|
|
if ((ctx->raddr & mmask) != (pte1 & mmask)) {
|
2015-11-13 13:34:23 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "Bad RPN/WIMG/PP\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Compute access rights */
|
|
|
|
access = pp_check(ctx->key, pp, ctx->nx);
|
2020-10-09 08:44:37 +02:00
|
|
|
/* Keep the matching PTE information */
|
2012-05-30 06:23:33 +02:00
|
|
|
ctx->raddr = pte1;
|
|
|
|
ctx->prot = access;
|
2021-05-18 22:11:29 +02:00
|
|
|
ret = check_prot(ctx->prot, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ret == 0) {
|
|
|
|
/* Access granted */
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "PTE access granted !\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
} else {
|
|
|
|
/* Access right violation */
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "PTE access rejected\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:31:14 +01:00
|
|
|
static int pte_update_flags(mmu_ctx_t *ctx, target_ulong *pte1p,
|
2021-05-18 22:11:28 +02:00
|
|
|
int ret, MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int store = 0;
|
|
|
|
|
|
|
|
/* Update page flags */
|
|
|
|
if (!(*pte1p & 0x00000100)) {
|
|
|
|
/* Update accessed flag */
|
|
|
|
*pte1p |= 0x00000100;
|
|
|
|
store = 1;
|
|
|
|
}
|
|
|
|
if (!(*pte1p & 0x00000080)) {
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE && ret == 0) {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Update changed flag */
|
|
|
|
*pte1p |= 0x00000080;
|
|
|
|
store = 1;
|
|
|
|
} else {
|
|
|
|
/* Force page fault for first write access */
|
|
|
|
ctx->prot &= ~PAGE_WRITE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return store;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Software driven TLB helpers */
|
|
|
|
static inline int ppc6xx_tlb_getnum(CPUPPCState *env, target_ulong eaddr,
|
|
|
|
int way, int is_code)
|
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
|
|
|
|
/* Select TLB num in a way from address */
|
|
|
|
nr = (eaddr >> TARGET_PAGE_BITS) & (env->tlb_per_way - 1);
|
|
|
|
/* Select TLB way */
|
|
|
|
nr += env->tlb_per_way * way;
|
|
|
|
/* 6xx have separate TLBs for instructions and data */
|
|
|
|
if (is_code && env->id_tlbs == 1) {
|
|
|
|
nr += env->nb_tlb;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ppc6xx_tlb_invalidate_all(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
ppc6xx_tlb_t *tlb;
|
|
|
|
int nr, max;
|
|
|
|
|
|
|
|
/* LOG_SWTLB("Invalidate all TLBs\n"); */
|
|
|
|
/* Invalidate all defined software TLB */
|
|
|
|
max = env->nb_tlb;
|
|
|
|
if (env->id_tlbs == 1) {
|
|
|
|
max *= 2;
|
|
|
|
}
|
|
|
|
for (nr = 0; nr < max; nr++) {
|
|
|
|
tlb = &env->tlb.tlb6[nr];
|
|
|
|
pte_invalidate(&tlb->pte0);
|
|
|
|
}
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ppc6xx_tlb_invalidate_virt2(CPUPPCState *env,
|
|
|
|
target_ulong eaddr,
|
|
|
|
int is_code, int match_epn)
|
|
|
|
{
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
2019-03-23 03:07:57 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2012-05-30 06:23:33 +02:00
|
|
|
ppc6xx_tlb_t *tlb;
|
|
|
|
int way, nr;
|
|
|
|
|
|
|
|
/* Invalidate ITLB + DTLB, all ways */
|
|
|
|
for (way = 0; way < env->nb_ways; way++) {
|
|
|
|
nr = ppc6xx_tlb_getnum(env, eaddr, way, is_code);
|
|
|
|
tlb = &env->tlb.tlb6[nr];
|
|
|
|
if (pte_is_valid(tlb->pte0) && (match_epn == 0 || eaddr == tlb->EPN)) {
|
|
|
|
LOG_SWTLB("TLB invalidate %d/%d " TARGET_FMT_lx "\n", nr,
|
|
|
|
env->nb_tlb, eaddr);
|
|
|
|
pte_invalidate(&tlb->pte0);
|
2013-09-04 01:29:02 +02:00
|
|
|
tlb_flush_page(cs, tlb->EPN);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/* XXX: PowerPC specification say this is valid as well */
|
|
|
|
ppc6xx_tlb_invalidate_all(env);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ppc6xx_tlb_invalidate_virt(CPUPPCState *env,
|
|
|
|
target_ulong eaddr, int is_code)
|
|
|
|
{
|
|
|
|
ppc6xx_tlb_invalidate_virt2(env, eaddr, is_code, 0);
|
|
|
|
}
|
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-05-30 06:23:34 +02:00
|
|
|
static void ppc6xx_tlb_store(CPUPPCState *env, target_ulong EPN, int way,
|
|
|
|
int is_code, target_ulong pte0, target_ulong pte1)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppc6xx_tlb_t *tlb;
|
|
|
|
int nr;
|
|
|
|
|
|
|
|
nr = ppc6xx_tlb_getnum(env, EPN, way, is_code);
|
|
|
|
tlb = &env->tlb.tlb6[nr];
|
|
|
|
LOG_SWTLB("Set TLB %d/%d EPN " TARGET_FMT_lx " PTE0 " TARGET_FMT_lx
|
|
|
|
" PTE1 " TARGET_FMT_lx "\n", nr, env->nb_tlb, EPN, pte0, pte1);
|
|
|
|
/* Invalidate any pending reference in QEMU for this virtual address */
|
|
|
|
ppc6xx_tlb_invalidate_virt2(env, EPN, is_code, 1);
|
|
|
|
tlb->pte0 = pte0;
|
|
|
|
tlb->pte1 = pte1;
|
|
|
|
tlb->EPN = EPN;
|
|
|
|
/* Store last way for LRU mechanism */
|
|
|
|
env->last_way = way;
|
|
|
|
}
|
2021-05-25 13:53:53 +02:00
|
|
|
#endif
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static int ppc6xx_tlb_check(CPUPPCState *env, mmu_ctx_t *ctx,
|
2021-05-18 22:11:31 +02:00
|
|
|
target_ulong eaddr, MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppc6xx_tlb_t *tlb;
|
|
|
|
int nr, best, way;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
best = -1;
|
|
|
|
ret = -1; /* No TLB found */
|
|
|
|
for (way = 0; way < env->nb_ways; way++) {
|
2021-05-18 22:11:31 +02:00
|
|
|
nr = ppc6xx_tlb_getnum(env, eaddr, way, access_type == MMU_INST_FETCH);
|
2012-05-30 06:23:33 +02:00
|
|
|
tlb = &env->tlb.tlb6[nr];
|
|
|
|
/* This test "emulates" the PTE index match for hardware TLBs */
|
|
|
|
if ((eaddr & TARGET_PAGE_MASK) != tlb->EPN) {
|
|
|
|
LOG_SWTLB("TLB %d/%d %s [" TARGET_FMT_lx " " TARGET_FMT_lx
|
|
|
|
"] <> " TARGET_FMT_lx "\n", nr, env->nb_tlb,
|
|
|
|
pte_is_valid(tlb->pte0) ? "valid" : "inval",
|
|
|
|
tlb->EPN, tlb->EPN + TARGET_PAGE_SIZE, eaddr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
LOG_SWTLB("TLB %d/%d %s " TARGET_FMT_lx " <> " TARGET_FMT_lx " "
|
|
|
|
TARGET_FMT_lx " %c %c\n", nr, env->nb_tlb,
|
|
|
|
pte_is_valid(tlb->pte0) ? "valid" : "inval",
|
|
|
|
tlb->EPN, eaddr, tlb->pte1,
|
2021-05-18 22:11:28 +02:00
|
|
|
access_type == MMU_DATA_STORE ? 'S' : 'L',
|
2021-05-18 22:11:31 +02:00
|
|
|
access_type == MMU_INST_FETCH ? 'I' : 'D');
|
2019-03-21 12:36:09 +01:00
|
|
|
switch (ppc6xx_tlb_pte_check(ctx, tlb->pte0, tlb->pte1,
|
2021-05-18 22:11:30 +02:00
|
|
|
0, access_type)) {
|
2012-05-30 06:23:33 +02:00
|
|
|
case -3:
|
|
|
|
/* TLB inconsistency */
|
|
|
|
return -1;
|
|
|
|
case -2:
|
|
|
|
/* Access violation */
|
|
|
|
ret = -2;
|
|
|
|
best = nr;
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
default:
|
|
|
|
/* No match */
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
/* access granted */
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* XXX: we should go on looping to check all TLBs
|
|
|
|
* consistency but we can speed-up the whole thing as
|
|
|
|
* the result would be undefined if TLBs are not
|
|
|
|
* consistent.
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
ret = 0;
|
|
|
|
best = nr;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (best != -1) {
|
|
|
|
done:
|
|
|
|
LOG_SWTLB("found TLB at addr " TARGET_FMT_plx " prot=%01x ret=%d\n",
|
|
|
|
ctx->raddr & TARGET_PAGE_MASK, ctx->prot, ret);
|
|
|
|
/* Update page flags */
|
2021-05-18 22:11:28 +02:00
|
|
|
pte_update_flags(ctx, &env->tlb.tlb6[best].pte1, ret, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform BAT hit & translation */
|
|
|
|
static inline void bat_size_prot(CPUPPCState *env, target_ulong *blp,
|
|
|
|
int *validp, int *protp, target_ulong *BATu,
|
|
|
|
target_ulong *BATl)
|
|
|
|
{
|
|
|
|
target_ulong bl;
|
|
|
|
int pp, valid, prot;
|
|
|
|
|
|
|
|
bl = (*BATu & 0x00001FFC) << 15;
|
|
|
|
valid = 0;
|
|
|
|
prot = 0;
|
|
|
|
if (((msr_pr == 0) && (*BATu & 0x00000002)) ||
|
|
|
|
((msr_pr != 0) && (*BATu & 0x00000001))) {
|
|
|
|
valid = 1;
|
|
|
|
pp = *BATl & 0x00000003;
|
|
|
|
if (pp != 0) {
|
|
|
|
prot = PAGE_READ | PAGE_EXEC;
|
|
|
|
if (pp == 0x2) {
|
|
|
|
prot |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*blp = bl;
|
|
|
|
*validp = valid;
|
|
|
|
*protp = prot;
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:31:16 +01:00
|
|
|
static int get_bat_6xx_tlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
2021-05-18 22:11:32 +02:00
|
|
|
target_ulong virtual, MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong *BATlt, *BATut, *BATu, *BATl;
|
|
|
|
target_ulong BEPIl, BEPIu, bl;
|
|
|
|
int i, valid, prot;
|
|
|
|
int ret = -1;
|
2021-05-18 22:11:32 +02:00
|
|
|
bool ifetch = access_type == MMU_INST_FETCH;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
LOG_BATS("%s: %cBAT v " TARGET_FMT_lx "\n", __func__,
|
2021-05-18 22:11:32 +02:00
|
|
|
ifetch ? 'I' : 'D', virtual);
|
|
|
|
if (ifetch) {
|
2012-05-30 06:23:33 +02:00
|
|
|
BATlt = env->IBAT[1];
|
|
|
|
BATut = env->IBAT[0];
|
2021-05-18 22:11:32 +02:00
|
|
|
} else {
|
2012-05-30 06:23:33 +02:00
|
|
|
BATlt = env->DBAT[1];
|
|
|
|
BATut = env->DBAT[0];
|
|
|
|
}
|
|
|
|
for (i = 0; i < env->nb_BATs; i++) {
|
|
|
|
BATu = &BATut[i];
|
|
|
|
BATl = &BATlt[i];
|
|
|
|
BEPIu = *BATu & 0xF0000000;
|
|
|
|
BEPIl = *BATu & 0x0FFE0000;
|
2013-03-12 01:31:16 +01:00
|
|
|
bat_size_prot(env, &bl, &valid, &prot, BATu, BATl);
|
2012-05-30 06:23:33 +02:00
|
|
|
LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx " BATu " TARGET_FMT_lx
|
|
|
|
" BATl " TARGET_FMT_lx "\n", __func__,
|
2021-05-18 22:11:32 +02:00
|
|
|
ifetch ? 'I' : 'D', i, virtual, *BATu, *BATl);
|
2012-05-30 06:23:33 +02:00
|
|
|
if ((virtual & 0xF0000000) == BEPIu &&
|
|
|
|
((virtual & 0x0FFE0000) & ~bl) == BEPIl) {
|
|
|
|
/* BAT matches */
|
|
|
|
if (valid != 0) {
|
|
|
|
/* Get physical address */
|
|
|
|
ctx->raddr = (*BATl & 0xF0000000) |
|
|
|
|
((virtual & 0x0FFE0000 & bl) | (*BATl & 0x0FFE0000)) |
|
|
|
|
(virtual & 0x0001F000);
|
|
|
|
/* Compute access rights */
|
|
|
|
ctx->prot = prot;
|
2021-05-18 22:11:29 +02:00
|
|
|
ret = check_prot(ctx->prot, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ret == 0) {
|
|
|
|
LOG_BATS("BAT %d match: r " TARGET_FMT_plx " prot=%c%c\n",
|
|
|
|
i, ctx->raddr, ctx->prot & PAGE_READ ? 'R' : '-',
|
|
|
|
ctx->prot & PAGE_WRITE ? 'W' : '-');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret < 0) {
|
|
|
|
#if defined(DEBUG_BATS)
|
|
|
|
if (qemu_log_enabled()) {
|
|
|
|
LOG_BATS("no BAT match for " TARGET_FMT_lx ":\n", virtual);
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
BATu = &BATut[i];
|
|
|
|
BATl = &BATlt[i];
|
|
|
|
BEPIu = *BATu & 0xF0000000;
|
|
|
|
BEPIl = *BATu & 0x0FFE0000;
|
|
|
|
bl = (*BATu & 0x00001FFC) << 15;
|
|
|
|
LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx " BATu " TARGET_FMT_lx
|
|
|
|
" BATl " TARGET_FMT_lx "\n\t" TARGET_FMT_lx " "
|
|
|
|
TARGET_FMT_lx " " TARGET_FMT_lx "\n",
|
2021-05-18 22:11:32 +02:00
|
|
|
__func__, ifetch ? 'I' : 'D', i, virtual,
|
2012-05-30 06:23:33 +02:00
|
|
|
*BATu, *BATl, BEPIu, BEPIl, bl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* No hit */
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform segment based translation */
|
2021-05-18 22:11:28 +02:00
|
|
|
static int get_segment_6xx_tlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
|
|
|
target_ulong eaddr, MMUAccessType access_type,
|
|
|
|
int type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2019-03-23 03:07:57 +01:00
|
|
|
PowerPCCPU *cpu = env_archcpu(env);
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr hash;
|
2012-05-30 06:23:33 +02:00
|
|
|
target_ulong vsid;
|
|
|
|
int ds, pr, target_page_bits;
|
2013-03-12 01:31:09 +01:00
|
|
|
int ret;
|
|
|
|
target_ulong sr, pgidx;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
pr = msr_pr;
|
|
|
|
ctx->eaddr = eaddr;
|
|
|
|
|
2013-03-12 01:31:09 +01:00
|
|
|
sr = env->sr[eaddr >> 28];
|
|
|
|
ctx->key = (((sr & 0x20000000) && (pr != 0)) ||
|
|
|
|
((sr & 0x40000000) && (pr == 0))) ? 1 : 0;
|
|
|
|
ds = sr & 0x80000000 ? 1 : 0;
|
|
|
|
ctx->nx = sr & 0x10000000 ? 1 : 0;
|
|
|
|
vsid = sr & 0x00FFFFFF;
|
|
|
|
target_page_bits = TARGET_PAGE_BITS;
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU,
|
|
|
|
"Check segment v=" TARGET_FMT_lx " %d " TARGET_FMT_lx
|
|
|
|
" nip=" TARGET_FMT_lx " lr=" TARGET_FMT_lx
|
2013-03-12 01:31:09 +01:00
|
|
|
" ir=%d dr=%d pr=%d %d t=%d\n",
|
|
|
|
eaddr, (int)(eaddr >> 28), sr, env->nip, env->lr, (int)msr_ir,
|
2021-05-18 22:11:28 +02:00
|
|
|
(int)msr_dr, pr != 0 ? 1 : 0, access_type == MMU_DATA_STORE, type);
|
2013-03-12 01:31:09 +01:00
|
|
|
pgidx = (eaddr & ~SEGMENT_MASK_256M) >> target_page_bits;
|
|
|
|
hash = vsid ^ pgidx;
|
|
|
|
ctx->ptem = (vsid << 7) | (pgidx >> 10);
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU,
|
|
|
|
"pte segment: key=%d ds %d nx %d vsid " TARGET_FMT_lx "\n",
|
2012-05-30 06:23:33 +02:00
|
|
|
ctx->key, ds, ctx->nx, vsid);
|
|
|
|
ret = -1;
|
|
|
|
if (!ds) {
|
|
|
|
/* Check if instruction fetch is allowed, if needed */
|
|
|
|
if (type != ACCESS_CODE || ctx->nx == 0) {
|
|
|
|
/* Page address translation */
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "htab_base " TARGET_FMT_plx
|
|
|
|
" htab_mask " TARGET_FMT_plx
|
2012-05-30 06:23:33 +02:00
|
|
|
" hash " TARGET_FMT_plx "\n",
|
target/ppc: Eliminate htab_base and htab_mask variables
CPUPPCState includes fields htab_base and htab_mask which store the base
address (GPA) and size (as a mask) of the guest's hashed page table (HPT).
These are set when the SDR1 register is updated.
Keeping these in sync with the SDR1 is actually a little bit fiddly, and
probably not useful for performance, since keeping them expands the size of
CPUPPCState. It also makes some upcoming changes harder to implement.
This patch removes these fields, in favour of calculating them directly
from the SDR1 contents when necessary.
This does make a change to the behaviour of attempting to write a bad value
(invalid HPT size) to the SDR1 with an mtspr instruction. Previously, the
bad value would be stored in SDR1 and could be retrieved with a later
mfspr, but the HPT size as used by the softmmu would be, clamped to the
allowed values. Now, writing a bad value is treated as a no-op. An error
message is printed in both new and old versions.
I'm not sure which behaviour, if either, matches real hardware. I don't
think it matters that much, since it's pretty clear that if an OS writes
a bad value to SDR1, it's not going to boot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
2017-02-24 06:36:44 +01:00
|
|
|
ppc_hash32_hpt_base(cpu), ppc_hash32_hpt_mask(cpu), hash);
|
2012-05-30 06:23:33 +02:00
|
|
|
ctx->hash[0] = hash;
|
|
|
|
ctx->hash[1] = ~hash;
|
|
|
|
|
|
|
|
/* Initialize real address with an invalid value */
|
2012-10-23 12:30:10 +02:00
|
|
|
ctx->raddr = (hwaddr)-1ULL;
|
2013-03-12 01:31:09 +01:00
|
|
|
/* Software TLB search */
|
2021-05-18 22:11:31 +02:00
|
|
|
ret = ppc6xx_tlb_check(env, ctx, eaddr, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
#if defined(DUMP_PAGE_TABLES)
|
2016-06-03 15:58:09 +02:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_MMU)) {
|
2019-03-23 00:07:18 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr curaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
uint32_t a0, a1, a2, a3;
|
|
|
|
|
|
|
|
qemu_log("Page table: " TARGET_FMT_plx " len " TARGET_FMT_plx
|
target/ppc: Eliminate htab_base and htab_mask variables
CPUPPCState includes fields htab_base and htab_mask which store the base
address (GPA) and size (as a mask) of the guest's hashed page table (HPT).
These are set when the SDR1 register is updated.
Keeping these in sync with the SDR1 is actually a little bit fiddly, and
probably not useful for performance, since keeping them expands the size of
CPUPPCState. It also makes some upcoming changes harder to implement.
This patch removes these fields, in favour of calculating them directly
from the SDR1 contents when necessary.
This does make a change to the behaviour of attempting to write a bad value
(invalid HPT size) to the SDR1 with an mtspr instruction. Previously, the
bad value would be stored in SDR1 and could be retrieved with a later
mfspr, but the HPT size as used by the softmmu would be, clamped to the
allowed values. Now, writing a bad value is treated as a no-op. An error
message is printed in both new and old versions.
I'm not sure which behaviour, if either, matches real hardware. I don't
think it matters that much, since it's pretty clear that if an OS writes
a bad value to SDR1, it's not going to boot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
2017-02-24 06:36:44 +01:00
|
|
|
"\n", ppc_hash32_hpt_base(cpu),
|
2021-07-02 23:52:33 +02:00
|
|
|
ppc_hash32_hpt_mask(cpu) + 0x80);
|
target/ppc: Eliminate htab_base and htab_mask variables
CPUPPCState includes fields htab_base and htab_mask which store the base
address (GPA) and size (as a mask) of the guest's hashed page table (HPT).
These are set when the SDR1 register is updated.
Keeping these in sync with the SDR1 is actually a little bit fiddly, and
probably not useful for performance, since keeping them expands the size of
CPUPPCState. It also makes some upcoming changes harder to implement.
This patch removes these fields, in favour of calculating them directly
from the SDR1 contents when necessary.
This does make a change to the behaviour of attempting to write a bad value
(invalid HPT size) to the SDR1 with an mtspr instruction. Previously, the
bad value would be stored in SDR1 and could be retrieved with a later
mfspr, but the HPT size as used by the softmmu would be, clamped to the
allowed values. Now, writing a bad value is treated as a no-op. An error
message is printed in both new and old versions.
I'm not sure which behaviour, if either, matches real hardware. I don't
think it matters that much, since it's pretty clear that if an OS writes
a bad value to SDR1, it's not going to boot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
2017-02-24 06:36:44 +01:00
|
|
|
for (curaddr = ppc_hash32_hpt_base(cpu);
|
|
|
|
curaddr < (ppc_hash32_hpt_base(cpu)
|
|
|
|
+ ppc_hash32_hpt_mask(cpu) + 0x80);
|
2012-05-30 06:23:33 +02:00
|
|
|
curaddr += 16) {
|
2016-06-03 15:58:09 +02:00
|
|
|
a0 = ldl_phys(cs->as, curaddr);
|
|
|
|
a1 = ldl_phys(cs->as, curaddr + 4);
|
|
|
|
a2 = ldl_phys(cs->as, curaddr + 8);
|
|
|
|
a3 = ldl_phys(cs->as, curaddr + 12);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (a0 != 0 || a1 != 0 || a2 != 0 || a3 != 0) {
|
|
|
|
qemu_log(TARGET_FMT_plx ": %08x %08x %08x %08x\n",
|
|
|
|
curaddr, a0, a1, a2, a3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else {
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "No access allowed\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
ret = -3;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
target_ulong sr;
|
|
|
|
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "direct store...\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Direct-store segment : absolutely *BUGGY* for now */
|
|
|
|
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Direct-store implies a 32-bit MMU.
|
2012-05-30 06:23:33 +02:00
|
|
|
* Check the Segment Register's bus unit ID (BUID).
|
|
|
|
*/
|
|
|
|
sr = env->sr[eaddr >> 28];
|
|
|
|
if ((sr & 0x1FF00000) >> 20 == 0x07f) {
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Memory-forced I/O controller interface access
|
|
|
|
*
|
|
|
|
* If T=1 and BUID=x'07F', the 601 performs a memory
|
|
|
|
* access to SR[28-31] LA[4-31], bypassing all protection
|
|
|
|
* mechanisms.
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
ctx->raddr = ((sr & 0xF) << 28) | (eaddr & 0x0FFFFFFF);
|
|
|
|
ctx->prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACCESS_INT:
|
|
|
|
/* Integer load/store : only access allowed */
|
|
|
|
break;
|
|
|
|
case ACCESS_CODE:
|
|
|
|
/* No code fetch is allowed in direct-store areas */
|
|
|
|
return -4;
|
|
|
|
case ACCESS_FLOAT:
|
|
|
|
/* Floating point load/store */
|
|
|
|
return -4;
|
|
|
|
case ACCESS_RES:
|
|
|
|
/* lwarx, ldarx or srwcx. */
|
|
|
|
return -4;
|
|
|
|
case ACCESS_CACHE:
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* dcba, dcbt, dcbtst, dcbf, dcbi, dcbst, dcbz, or icbi
|
|
|
|
*
|
|
|
|
* Should make the instruction do no-op. As it already do
|
|
|
|
* no-op, it's quite easy :-)
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
ctx->raddr = eaddr;
|
|
|
|
return 0;
|
|
|
|
case ACCESS_EXT:
|
|
|
|
/* eciwx or ecowx */
|
|
|
|
return -4;
|
|
|
|
default:
|
2015-11-13 13:34:23 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU, "ERROR: instruction should not need "
|
|
|
|
"address translation\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
return -4;
|
|
|
|
}
|
2021-05-18 22:11:28 +02:00
|
|
|
if ((access_type == MMU_DATA_STORE || ctx->key != 1) &&
|
|
|
|
(access_type == MMU_DATA_LOAD || ctx->key != 0)) {
|
2012-05-30 06:23:33 +02:00
|
|
|
ctx->raddr = eaddr;
|
|
|
|
ret = 2;
|
|
|
|
} else {
|
|
|
|
ret = -2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generic TLB check function for embedded PowerPC implementations */
|
2012-05-30 06:23:34 +02:00
|
|
|
static int ppcemb_tlb_check(CPUPPCState *env, ppcemb_tlb_t *tlb,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr *raddrp,
|
2012-05-30 06:23:34 +02:00
|
|
|
target_ulong address, uint32_t pid, int ext,
|
|
|
|
int i)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong mask;
|
|
|
|
|
|
|
|
/* Check valid flag */
|
|
|
|
if (!(tlb->prot & PAGE_VALID)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
mask = ~(tlb->size - 1);
|
|
|
|
LOG_SWTLB("%s: TLB %d address " TARGET_FMT_lx " PID %u <=> " TARGET_FMT_lx
|
|
|
|
" " TARGET_FMT_lx " %u %x\n", __func__, i, address, pid, tlb->EPN,
|
|
|
|
mask, (uint32_t)tlb->PID, tlb->prot);
|
|
|
|
/* Check PID */
|
|
|
|
if (tlb->PID != 0 && tlb->PID != pid) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* Check effective address */
|
|
|
|
if ((address & mask) != tlb->EPN) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*raddrp = (tlb->RPN & mask) | (address & ~mask);
|
|
|
|
if (ext) {
|
|
|
|
/* Extend the physical address to 36 bits */
|
2012-10-04 12:36:04 +02:00
|
|
|
*raddrp |= (uint64_t)(tlb->RPN & 0xF) << 32;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Generic TLB search function for PowerPC embedded implementations */
|
2012-05-30 06:23:34 +02:00
|
|
|
static int ppcemb_tlb_search(CPUPPCState *env, target_ulong address,
|
|
|
|
uint32_t pid)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr raddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
/* Default return value is no match */
|
|
|
|
ret = -1;
|
|
|
|
for (i = 0; i < env->nb_tlb; i++) {
|
|
|
|
tlb = &env->tlb.tlbe[i];
|
|
|
|
if (ppcemb_tlb_check(env, tlb, &raddr, address, pid, 0, i) == 0) {
|
|
|
|
ret = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2021-05-25 13:53:53 +02:00
|
|
|
#endif
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
/* Helpers specific to PowerPC 40x implementations */
|
|
|
|
static inline void ppc4xx_tlb_invalidate_all(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < env->nb_tlb; i++) {
|
|
|
|
tlb = &env->tlb.tlbe[i];
|
|
|
|
tlb->prot &= ~PAGE_VALID;
|
|
|
|
}
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mmu40x_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
2021-05-18 22:11:28 +02:00
|
|
|
target_ulong address,
|
2021-05-18 22:11:33 +02:00
|
|
|
MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr raddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
int i, ret, zsel, zpr, pr;
|
|
|
|
|
|
|
|
ret = -1;
|
2012-10-23 12:30:10 +02:00
|
|
|
raddr = (hwaddr)-1ULL;
|
2012-05-30 06:23:33 +02:00
|
|
|
pr = msr_pr;
|
|
|
|
for (i = 0; i < env->nb_tlb; i++) {
|
|
|
|
tlb = &env->tlb.tlbe[i];
|
|
|
|
if (ppcemb_tlb_check(env, tlb, &raddr, address,
|
|
|
|
env->spr[SPR_40x_PID], 0, i) < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
zsel = (tlb->attr >> 4) & 0xF;
|
|
|
|
zpr = (env->spr[SPR_40x_ZPR] >> (30 - (2 * zsel))) & 0x3;
|
2021-05-18 22:11:28 +02:00
|
|
|
LOG_SWTLB("%s: TLB %d zsel %d zpr %d ty %d attr %08x\n",
|
|
|
|
__func__, i, zsel, zpr, access_type, tlb->attr);
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Check execute enable bit */
|
|
|
|
switch (zpr) {
|
|
|
|
case 0x2:
|
|
|
|
if (pr != 0) {
|
|
|
|
goto check_perms;
|
|
|
|
}
|
2019-07-19 15:14:23 +02:00
|
|
|
/* fall through */
|
2012-05-30 06:23:33 +02:00
|
|
|
case 0x3:
|
|
|
|
/* All accesses granted */
|
|
|
|
ctx->prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case 0x0:
|
|
|
|
if (pr != 0) {
|
|
|
|
/* Raise Zone protection fault. */
|
|
|
|
env->spr[SPR_40x_ESR] = 1 << 22;
|
|
|
|
ctx->prot = 0;
|
|
|
|
ret = -2;
|
|
|
|
break;
|
|
|
|
}
|
2019-07-19 15:14:23 +02:00
|
|
|
/* fall through */
|
2012-05-30 06:23:33 +02:00
|
|
|
case 0x1:
|
|
|
|
check_perms:
|
|
|
|
/* Check from TLB entry */
|
|
|
|
ctx->prot = tlb->prot;
|
2021-05-18 22:11:29 +02:00
|
|
|
ret = check_prot(ctx->prot, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ret == -2) {
|
|
|
|
env->spr[SPR_40x_ESR] = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ret >= 0) {
|
|
|
|
ctx->raddr = raddr;
|
|
|
|
LOG_SWTLB("%s: access granted " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, ctx->raddr, ctx->prot,
|
|
|
|
ret);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOG_SWTLB("%s: access refused " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, raddr, ctx->prot, ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void store_40x_sler(CPUPPCState *env, uint32_t val)
|
|
|
|
{
|
|
|
|
/* XXX: TO BE FIXED */
|
|
|
|
if (val != 0x00000000) {
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env),
|
|
|
|
"Little-endian regions are not supported by now\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
env->spr[SPR_405_SLER] = val;
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static int mmubooke_check_tlb(CPUPPCState *env, ppcemb_tlb_t *tlb,
|
|
|
|
hwaddr *raddr, int *prot, target_ulong address,
|
2021-05-18 22:11:34 +02:00
|
|
|
MMUAccessType access_type, int i)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2021-05-18 22:11:34 +02:00
|
|
|
int prot2;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
if (ppcemb_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID],
|
|
|
|
!env->nb_pids, i) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (env->spr[SPR_BOOKE_PID1] &&
|
|
|
|
ppcemb_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID1], 0, i) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (env->spr[SPR_BOOKE_PID2] &&
|
|
|
|
ppcemb_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID2], 0, i) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_SWTLB("%s: TLB entry not found\n", __func__);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
found_tlb:
|
|
|
|
|
|
|
|
if (msr_pr != 0) {
|
|
|
|
prot2 = tlb->prot & 0xF;
|
|
|
|
} else {
|
|
|
|
prot2 = (tlb->prot >> 4) & 0xF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the address space */
|
2021-05-18 22:11:34 +02:00
|
|
|
if ((access_type == MMU_INST_FETCH ? msr_ir : msr_dr) != (tlb->attr & 1)) {
|
|
|
|
LOG_SWTLB("%s: AS doesn't match\n", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-18 22:11:34 +02:00
|
|
|
*prot = prot2;
|
|
|
|
if (prot2 & prot_for_access_type(access_type)) {
|
|
|
|
LOG_SWTLB("%s: good TLB!\n", __func__);
|
|
|
|
return 0;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:34 +02:00
|
|
|
LOG_SWTLB("%s: no prot match: %x\n", __func__, prot2);
|
|
|
|
return access_type == MMU_INST_FETCH ? -3 : -2;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mmubooke_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
2021-05-18 22:11:28 +02:00
|
|
|
target_ulong address,
|
2021-05-18 22:11:35 +02:00
|
|
|
MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr raddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
ret = -1;
|
2012-10-23 12:30:10 +02:00
|
|
|
raddr = (hwaddr)-1ULL;
|
2012-05-30 06:23:33 +02:00
|
|
|
for (i = 0; i < env->nb_tlb; i++) {
|
|
|
|
tlb = &env->tlb.tlbe[i];
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = mmubooke_check_tlb(env, tlb, &raddr, &ctx->prot, address,
|
2021-05-18 22:11:34 +02:00
|
|
|
access_type, i);
|
2017-02-14 12:54:29 +01:00
|
|
|
if (ret != -1) {
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret >= 0) {
|
|
|
|
ctx->raddr = raddr;
|
|
|
|
LOG_SWTLB("%s: access granted " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, ctx->raddr, ctx->prot,
|
|
|
|
ret);
|
|
|
|
} else {
|
|
|
|
LOG_SWTLB("%s: access refused " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, raddr, ctx->prot, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-08 18:49:54 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-10-28 12:04:50 +01:00
|
|
|
static void booke206_flush_tlb(CPUPPCState *env, int flags,
|
|
|
|
const int check_iprot)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int tlb_size;
|
|
|
|
int i, j;
|
|
|
|
ppcmas_tlb_t *tlb = env->tlb.tlbm;
|
|
|
|
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
if (flags & (1 << i)) {
|
|
|
|
tlb_size = booke206_tlb_size(env, i);
|
|
|
|
for (j = 0; j < tlb_size; j++) {
|
|
|
|
if (!check_iprot || !(tlb[j].mas1 & MAS1_IPROT)) {
|
|
|
|
tlb[j].mas1 &= ~MAS1_VALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tlb += booke206_tlb_size(env, i);
|
|
|
|
}
|
|
|
|
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2021-07-08 18:49:54 +02:00
|
|
|
#endif
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2012-10-28 12:04:50 +01:00
|
|
|
static hwaddr booke206_tlb_to_page_size(CPUPPCState *env,
|
|
|
|
ppcmas_tlb_t *tlb)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int tlbm_size;
|
|
|
|
|
|
|
|
tlbm_size = (tlb->mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
|
|
|
|
|
|
|
|
return 1024ULL << tlbm_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TLB check function for MAS based SoftTLBs */
|
2013-03-12 01:31:04 +01:00
|
|
|
static int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb,
|
2014-07-02 19:09:47 +02:00
|
|
|
hwaddr *raddrp, target_ulong address,
|
|
|
|
uint32_t pid)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2014-07-02 19:09:47 +02:00
|
|
|
hwaddr mask;
|
2012-05-30 06:23:33 +02:00
|
|
|
uint32_t tlb_pid;
|
|
|
|
|
2014-06-04 00:27:31 +02:00
|
|
|
if (!msr_cm) {
|
|
|
|
/* In 32bit mode we can only address 32bit EAs */
|
|
|
|
address = (uint32_t)address;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Check valid flag */
|
|
|
|
if (!(tlb->mas1 & MAS1_VALID)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mask = ~(booke206_tlb_to_page_size(env, tlb) - 1);
|
|
|
|
LOG_SWTLB("%s: TLB ADDR=0x" TARGET_FMT_lx " PID=0x%x MAS1=0x%x MAS2=0x%"
|
2016-06-03 15:58:09 +02:00
|
|
|
PRIx64 " mask=0x%" HWADDR_PRIx " MAS7_3=0x%" PRIx64 " MAS8=0x%"
|
|
|
|
PRIx32 "\n", __func__, address, pid, tlb->mas1, tlb->mas2, mask,
|
|
|
|
tlb->mas7_3, tlb->mas8);
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
/* Check PID */
|
|
|
|
tlb_pid = (tlb->mas1 & MAS1_TID_MASK) >> MAS1_TID_SHIFT;
|
|
|
|
if (tlb_pid != 0 && tlb_pid != pid) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check effective address */
|
|
|
|
if ((address & mask) != (tlb->mas2 & MAS2_EPN_MASK)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (raddrp) {
|
|
|
|
*raddrp = (tlb->mas7_3 & mask) | (address & ~mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
static bool is_epid_mmu(int mmu_idx)
|
|
|
|
{
|
|
|
|
return mmu_idx == PPC_TLB_EPID_STORE || mmu_idx == PPC_TLB_EPID_LOAD;
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static uint32_t mmubooke206_esr(int mmu_idx, MMUAccessType access_type)
|
2018-09-21 08:59:07 +02:00
|
|
|
{
|
|
|
|
uint32_t esr = 0;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2018-09-21 08:59:07 +02:00
|
|
|
esr |= ESR_ST;
|
|
|
|
}
|
|
|
|
if (is_epid_mmu(mmu_idx)) {
|
|
|
|
esr |= ESR_EPID;
|
|
|
|
}
|
|
|
|
return esr;
|
|
|
|
}
|
|
|
|
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Get EPID register given the mmu_idx. If this is regular load,
|
|
|
|
* construct the EPID access bits from current processor state
|
|
|
|
*
|
|
|
|
* Get the effective AS and PR bits and the PID. The PID is returned
|
|
|
|
* only if EPID load is requested, otherwise the caller must detect
|
|
|
|
* the correct EPID. Return true if valid EPID is returned.
|
|
|
|
*/
|
2018-09-21 08:59:07 +02:00
|
|
|
static bool mmubooke206_get_as(CPUPPCState *env,
|
|
|
|
int mmu_idx, uint32_t *epid_out,
|
|
|
|
bool *as_out, bool *pr_out)
|
|
|
|
{
|
|
|
|
if (is_epid_mmu(mmu_idx)) {
|
|
|
|
uint32_t epidr;
|
|
|
|
if (mmu_idx == PPC_TLB_EPID_STORE) {
|
|
|
|
epidr = env->spr[SPR_BOOKE_EPSC];
|
|
|
|
} else {
|
|
|
|
epidr = env->spr[SPR_BOOKE_EPLC];
|
|
|
|
}
|
|
|
|
*epid_out = (epidr & EPID_EPID) >> EPID_EPID_SHIFT;
|
|
|
|
*as_out = !!(epidr & EPID_EAS);
|
|
|
|
*pr_out = !!(epidr & EPID_EPR);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*as_out = msr_ds;
|
|
|
|
*pr_out = msr_pr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the tlb found by hashing really matches */
|
2012-05-30 06:23:33 +02:00
|
|
|
static int mmubooke206_check_tlb(CPUPPCState *env, ppcmas_tlb_t *tlb,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr *raddr, int *prot,
|
2021-05-18 22:11:28 +02:00
|
|
|
target_ulong address,
|
2021-05-18 22:11:36 +02:00
|
|
|
MMUAccessType access_type, int mmu_idx)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int prot2 = 0;
|
2018-09-21 08:59:07 +02:00
|
|
|
uint32_t epid;
|
|
|
|
bool as, pr;
|
|
|
|
bool use_epid = mmubooke206_get_as(env, mmu_idx, &epid, &as, &pr);
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
if (!use_epid) {
|
|
|
|
if (ppcmas_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID]) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
if (env->spr[SPR_BOOKE_PID1] &&
|
|
|
|
ppcmas_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID1]) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
if (env->spr[SPR_BOOKE_PID2] &&
|
|
|
|
ppcmas_tlb_check(env, tlb, raddr, address,
|
|
|
|
env->spr[SPR_BOOKE_PID2]) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ppcmas_tlb_check(env, tlb, raddr, address, epid) >= 0) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LOG_SWTLB("%s: TLB entry not found\n", __func__);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
found_tlb:
|
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
if (pr) {
|
2012-05-30 06:23:33 +02:00
|
|
|
if (tlb->mas7_3 & MAS3_UR) {
|
|
|
|
prot2 |= PAGE_READ;
|
|
|
|
}
|
|
|
|
if (tlb->mas7_3 & MAS3_UW) {
|
|
|
|
prot2 |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
if (tlb->mas7_3 & MAS3_UX) {
|
|
|
|
prot2 |= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (tlb->mas7_3 & MAS3_SR) {
|
|
|
|
prot2 |= PAGE_READ;
|
|
|
|
}
|
|
|
|
if (tlb->mas7_3 & MAS3_SW) {
|
|
|
|
prot2 |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
if (tlb->mas7_3 & MAS3_SX) {
|
|
|
|
prot2 |= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the address space and permissions */
|
2021-05-18 22:11:36 +02:00
|
|
|
if (access_type == MMU_INST_FETCH) {
|
2018-09-21 08:59:07 +02:00
|
|
|
/* There is no way to fetch code using epid load */
|
|
|
|
assert(!use_epid);
|
2021-05-18 22:11:36 +02:00
|
|
|
as = msr_ir;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-18 22:11:36 +02:00
|
|
|
if (as != ((tlb->mas1 & MAS1_TS) >> MAS1_TS_SHIFT)) {
|
|
|
|
LOG_SWTLB("%s: AS doesn't match\n", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-18 22:11:36 +02:00
|
|
|
*prot = prot2;
|
|
|
|
if (prot2 & prot_for_access_type(access_type)) {
|
|
|
|
LOG_SWTLB("%s: good TLB!\n", __func__);
|
|
|
|
return 0;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:36 +02:00
|
|
|
LOG_SWTLB("%s: no prot match: %x\n", __func__, prot2);
|
|
|
|
return access_type == MMU_INST_FETCH ? -3 : -2;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mmubooke206_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
2021-05-18 22:11:28 +02:00
|
|
|
target_ulong address,
|
|
|
|
MMUAccessType access_type,
|
2021-05-18 22:11:37 +02:00
|
|
|
int mmu_idx)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppcmas_tlb_t *tlb;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr raddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
int i, j, ret;
|
|
|
|
|
|
|
|
ret = -1;
|
2012-10-23 12:30:10 +02:00
|
|
|
raddr = (hwaddr)-1ULL;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
int ways = booke206_tlb_ways(env, i);
|
|
|
|
|
|
|
|
for (j = 0; j < ways; j++) {
|
|
|
|
tlb = booke206_get_tlbm(env, i, address, j);
|
|
|
|
if (!tlb) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ret = mmubooke206_check_tlb(env, tlb, &raddr, &ctx->prot, address,
|
2021-05-18 22:11:36 +02:00
|
|
|
access_type, mmu_idx);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ret != -1) {
|
|
|
|
goto found_tlb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
found_tlb:
|
|
|
|
|
|
|
|
if (ret >= 0) {
|
|
|
|
ctx->raddr = raddr;
|
|
|
|
LOG_SWTLB("%s: access granted " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, ctx->raddr, ctx->prot,
|
|
|
|
ret);
|
|
|
|
} else {
|
|
|
|
LOG_SWTLB("%s: access refused " TARGET_FMT_lx " => " TARGET_FMT_plx
|
|
|
|
" %d %d\n", __func__, address, raddr, ctx->prot, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *book3e_tsize_to_str[32] = {
|
|
|
|
"1K", "2K", "4K", "8K", "16K", "32K", "64K", "128K", "256K", "512K",
|
|
|
|
"1M", "2M", "4M", "8M", "16M", "32M", "64M", "128M", "256M", "512M",
|
|
|
|
"1G", "2G", "4G", "8G", "16G", "32G", "64G", "128G", "256G", "512G",
|
|
|
|
"1T", "2T"
|
|
|
|
};
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
static void mmubooke_dump_mmu(CPUPPCState *env)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *entry;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (kvm_enabled() && !env->kvm_sw_tlb) {
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("Cannot access KVM TLB\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("\nTLB:\n");
|
|
|
|
qemu_printf("Effective Physical Size PID Prot "
|
2012-05-30 06:23:33 +02:00
|
|
|
"Attr\n");
|
|
|
|
|
|
|
|
entry = &env->tlb.tlbe[0];
|
|
|
|
for (i = 0; i < env->nb_tlb; i++, entry++) {
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr ea, pa;
|
2012-05-30 06:23:33 +02:00
|
|
|
target_ulong mask;
|
|
|
|
uint64_t size = (uint64_t)entry->size;
|
|
|
|
char size_buf[20];
|
|
|
|
|
|
|
|
/* Check valid flag */
|
|
|
|
if (!(entry->prot & PAGE_VALID)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
mask = ~(entry->size - 1);
|
|
|
|
ea = entry->EPN & mask;
|
|
|
|
pa = entry->RPN & mask;
|
|
|
|
/* Extend the physical address to 36 bits */
|
2012-10-23 12:30:10 +02:00
|
|
|
pa |= (hwaddr)(entry->RPN & 0xF) << 32;
|
2018-06-25 14:42:24 +02:00
|
|
|
if (size >= 1 * MiB) {
|
|
|
|
snprintf(size_buf, sizeof(size_buf), "%3" PRId64 "M", size / MiB);
|
2012-05-30 06:23:33 +02:00
|
|
|
} else {
|
2018-06-25 14:42:24 +02:00
|
|
|
snprintf(size_buf, sizeof(size_buf), "%3" PRId64 "k", size / KiB);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("0x%016" PRIx64 " 0x%016" PRIx64 " %s %-5u %08x %08x\n",
|
2012-05-30 06:23:33 +02:00
|
|
|
(uint64_t)ea, (uint64_t)pa, size_buf, (uint32_t)entry->PID,
|
|
|
|
entry->prot, entry->attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
static void mmubooke206_dump_one_tlb(CPUPPCState *env, int tlbn, int offset,
|
2012-05-30 06:23:33 +02:00
|
|
|
int tlbsize)
|
|
|
|
{
|
|
|
|
ppcmas_tlb_t *entry;
|
|
|
|
int i;
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("\nTLB%d:\n", tlbn);
|
|
|
|
qemu_printf("Effective Physical Size TID TS SRWX"
|
2012-05-30 06:23:33 +02:00
|
|
|
" URWX WIMGE U0123\n");
|
|
|
|
|
|
|
|
entry = &env->tlb.tlbm[offset];
|
|
|
|
for (i = 0; i < tlbsize; i++, entry++) {
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr ea, pa, size;
|
2012-05-30 06:23:33 +02:00
|
|
|
int tsize;
|
|
|
|
|
|
|
|
if (!(entry->mas1 & MAS1_VALID)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
tsize = (entry->mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
|
|
|
|
size = 1024ULL << tsize;
|
|
|
|
ea = entry->mas2 & ~(size - 1);
|
|
|
|
pa = entry->mas7_3 & ~(size - 1);
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("0x%016" PRIx64 " 0x%016" PRIx64 " %4s %-5u %1u S%c%c%c"
|
2012-05-30 06:23:33 +02:00
|
|
|
"U%c%c%c %c%c%c%c%c U%c%c%c%c\n",
|
|
|
|
(uint64_t)ea, (uint64_t)pa,
|
|
|
|
book3e_tsize_to_str[tsize],
|
|
|
|
(entry->mas1 & MAS1_TID_MASK) >> MAS1_TID_SHIFT,
|
|
|
|
(entry->mas1 & MAS1_TS) >> MAS1_TS_SHIFT,
|
|
|
|
entry->mas7_3 & MAS3_SR ? 'R' : '-',
|
|
|
|
entry->mas7_3 & MAS3_SW ? 'W' : '-',
|
|
|
|
entry->mas7_3 & MAS3_SX ? 'X' : '-',
|
|
|
|
entry->mas7_3 & MAS3_UR ? 'R' : '-',
|
|
|
|
entry->mas7_3 & MAS3_UW ? 'W' : '-',
|
|
|
|
entry->mas7_3 & MAS3_UX ? 'X' : '-',
|
|
|
|
entry->mas2 & MAS2_W ? 'W' : '-',
|
|
|
|
entry->mas2 & MAS2_I ? 'I' : '-',
|
|
|
|
entry->mas2 & MAS2_M ? 'M' : '-',
|
|
|
|
entry->mas2 & MAS2_G ? 'G' : '-',
|
|
|
|
entry->mas2 & MAS2_E ? 'E' : '-',
|
|
|
|
entry->mas7_3 & MAS3_U0 ? '0' : '-',
|
|
|
|
entry->mas7_3 & MAS3_U1 ? '1' : '-',
|
|
|
|
entry->mas7_3 & MAS3_U2 ? '2' : '-',
|
|
|
|
entry->mas7_3 & MAS3_U3 ? '3' : '-');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
static void mmubooke206_dump_mmu(CPUPPCState *env)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int offset = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (kvm_enabled() && !env->kvm_sw_tlb) {
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("Cannot access KVM TLB\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
int size = booke206_tlb_size(env, i);
|
|
|
|
|
|
|
|
if (size == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
mmubooke206_dump_one_tlb(env, i, offset, size);
|
2012-05-30 06:23:33 +02:00
|
|
|
offset += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
static void mmu6xx_dump_BATs(CPUPPCState *env, int type)
|
2013-06-21 15:26:57 +02:00
|
|
|
{
|
|
|
|
target_ulong *BATlt, *BATut, *BATu, *BATl;
|
|
|
|
target_ulong BEPIl, BEPIu, bl;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACCESS_CODE:
|
|
|
|
BATlt = env->IBAT[1];
|
|
|
|
BATut = env->IBAT[0];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BATlt = env->DBAT[1];
|
|
|
|
BATut = env->DBAT[0];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < env->nb_BATs; i++) {
|
|
|
|
BATu = &BATut[i];
|
|
|
|
BATl = &BATlt[i];
|
|
|
|
BEPIu = *BATu & 0xF0000000;
|
|
|
|
BEPIl = *BATu & 0x0FFE0000;
|
|
|
|
bl = (*BATu & 0x00001FFC) << 15;
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("%s BAT%d BATu " TARGET_FMT_lx
|
2013-06-21 15:26:57 +02:00
|
|
|
" BATl " TARGET_FMT_lx "\n\t" TARGET_FMT_lx " "
|
|
|
|
TARGET_FMT_lx " " TARGET_FMT_lx "\n",
|
|
|
|
type == ACCESS_CODE ? "code" : "data", i,
|
|
|
|
*BATu, *BATl, BEPIu, BEPIl, bl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
static void mmu6xx_dump_mmu(CPUPPCState *env)
|
2013-06-21 15:26:57 +02:00
|
|
|
{
|
2019-03-23 03:07:57 +01:00
|
|
|
PowerPCCPU *cpu = env_archcpu(env);
|
2013-06-21 15:26:57 +02:00
|
|
|
ppc6xx_tlb_t *tlb;
|
|
|
|
target_ulong sr;
|
|
|
|
int type, way, entry, i;
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("HTAB base = 0x%"HWADDR_PRIx"\n", ppc_hash32_hpt_base(cpu));
|
|
|
|
qemu_printf("HTAB mask = 0x%"HWADDR_PRIx"\n", ppc_hash32_hpt_mask(cpu));
|
2013-06-21 15:26:57 +02:00
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("\nSegment registers:\n");
|
2013-06-21 15:26:57 +02:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
sr = env->sr[i];
|
|
|
|
if (sr & 0x80000000) {
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("%02d T=%d Ks=%d Kp=%d BUID=0x%03x "
|
2013-06-21 15:26:57 +02:00
|
|
|
"CNTLR_SPEC=0x%05x\n", i,
|
|
|
|
sr & 0x80000000 ? 1 : 0, sr & 0x40000000 ? 1 : 0,
|
|
|
|
sr & 0x20000000 ? 1 : 0, (uint32_t)((sr >> 20) & 0x1FF),
|
|
|
|
(uint32_t)(sr & 0xFFFFF));
|
|
|
|
} else {
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("%02d T=%d Ks=%d Kp=%d N=%d VSID=0x%06x\n", i,
|
2013-06-21 15:26:57 +02:00
|
|
|
sr & 0x80000000 ? 1 : 0, sr & 0x40000000 ? 1 : 0,
|
|
|
|
sr & 0x20000000 ? 1 : 0, sr & 0x10000000 ? 1 : 0,
|
|
|
|
(uint32_t)(sr & 0x00FFFFFF));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("\nBATs:\n");
|
|
|
|
mmu6xx_dump_BATs(env, ACCESS_INT);
|
|
|
|
mmu6xx_dump_BATs(env, ACCESS_CODE);
|
2013-06-21 15:26:57 +02:00
|
|
|
|
|
|
|
if (env->id_tlbs != 1) {
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("ERROR: 6xx MMU should have separated TLB"
|
2013-06-21 15:26:57 +02:00
|
|
|
" for code and data\n");
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("\nTLBs [EPN EPN + SIZE]\n");
|
2013-06-21 15:26:57 +02:00
|
|
|
|
|
|
|
for (type = 0; type < 2; type++) {
|
|
|
|
for (way = 0; way < env->nb_ways; way++) {
|
|
|
|
for (entry = env->nb_tlb * type + env->tlb_per_way * way;
|
|
|
|
entry < (env->nb_tlb * type + env->tlb_per_way * (way + 1));
|
|
|
|
entry++) {
|
|
|
|
|
|
|
|
tlb = &env->tlb.tlb6[entry];
|
2019-04-17 21:17:58 +02:00
|
|
|
qemu_printf("%s TLB %02d/%02d way:%d %s ["
|
2013-06-21 15:26:57 +02:00
|
|
|
TARGET_FMT_lx " " TARGET_FMT_lx "]\n",
|
|
|
|
type ? "code" : "data", entry % env->nb_tlb,
|
|
|
|
env->nb_tlb, way,
|
|
|
|
pte_is_valid(tlb->pte0) ? "valid" : "inval",
|
|
|
|
tlb->EPN, tlb->EPN + TARGET_PAGE_SIZE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:17:58 +02:00
|
|
|
void dump_mmu(CPUPPCState *env)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2018-03-23 06:48:43 +01:00
|
|
|
switch (env->mmu_model) {
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_BOOKE:
|
2019-04-17 21:17:58 +02:00
|
|
|
mmubooke_dump_mmu(env);
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE206:
|
2019-04-17 21:17:58 +02:00
|
|
|
mmubooke206_dump_mmu(env);
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
2013-06-21 15:26:57 +02:00
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
2019-04-17 21:17:58 +02:00
|
|
|
mmu6xx_dump_mmu(env);
|
2013-06-21 15:26:57 +02:00
|
|
|
break;
|
2012-05-30 06:23:33 +02:00
|
|
|
#if defined(TARGET_PPC64)
|
2018-03-23 06:48:43 +01:00
|
|
|
case POWERPC_MMU_64B:
|
|
|
|
case POWERPC_MMU_2_03:
|
|
|
|
case POWERPC_MMU_2_06:
|
|
|
|
case POWERPC_MMU_2_07:
|
2019-03-23 03:07:57 +01:00
|
|
|
dump_slb(env_archcpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
2018-03-23 06:48:43 +01:00
|
|
|
case POWERPC_MMU_3_00:
|
2019-03-23 03:07:57 +01:00
|
|
|
if (ppc64_v3_radix(env_archcpu(env))) {
|
2020-11-16 03:48:10 +01:00
|
|
|
qemu_log_mask(LOG_UNIMP, "%s: the PPC64 MMU is unsupported\n",
|
|
|
|
__func__);
|
2017-03-01 07:54:38 +01:00
|
|
|
} else {
|
2019-03-23 03:07:57 +01:00
|
|
|
dump_slb(env_archcpu(env));
|
2017-03-01 07:54:38 +01:00
|
|
|
}
|
2020-11-16 03:48:10 +01:00
|
|
|
break;
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
qemu_log_mask(LOG_UNIMP, "%s: unimplemented\n", __func__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static int check_physical(CPUPPCState *env, mmu_ctx_t *ctx, target_ulong eaddr,
|
|
|
|
MMUAccessType access_type)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
int in_plb, ret;
|
|
|
|
|
|
|
|
ctx->raddr = eaddr;
|
|
|
|
ctx->prot = PAGE_READ | PAGE_EXEC;
|
|
|
|
ret = 0;
|
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
case POWERPC_MMU_REAL:
|
|
|
|
case POWERPC_MMU_BOOKE:
|
|
|
|
ctx->prot |= PAGE_WRITE;
|
|
|
|
break;
|
2013-03-12 01:31:11 +01:00
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
|
|
|
if (unlikely(msr_pe != 0)) {
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* 403 family add some particular protections, using
|
|
|
|
* PBL/PBU registers for accesses with no translation.
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
in_plb =
|
|
|
|
/* Check PLB validity */
|
|
|
|
(env->pb[0] < env->pb[1] &&
|
|
|
|
/* and address in plb area */
|
|
|
|
eaddr >= env->pb[0] && eaddr < env->pb[1]) ||
|
|
|
|
(env->pb[2] < env->pb[3] &&
|
|
|
|
eaddr >= env->pb[2] && eaddr < env->pb[3]) ? 1 : 0;
|
|
|
|
if (in_plb ^ msr_px) {
|
|
|
|
/* Access in protected area */
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Access is not allowed */
|
|
|
|
ret = -2;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Read-write access is allowed */
|
|
|
|
ctx->prot |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2013-03-12 01:31:11 +01:00
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
default:
|
2013-03-12 01:31:11 +01:00
|
|
|
/* Caller's checks mean we should never get here for other models */
|
|
|
|
abort();
|
2012-05-30 06:23:33 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
|
|
|
target_ulong eaddr,
|
|
|
|
MMUAccessType access_type, int type,
|
|
|
|
int mmu_idx)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2013-03-12 01:31:10 +01:00
|
|
|
int ret = -1;
|
2021-05-18 22:11:27 +02:00
|
|
|
bool real_mode = (type == ACCESS_CODE && msr_ir == 0)
|
|
|
|
|| (type != ACCESS_CODE && msr_dr == 0);
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2013-03-12 01:31:10 +01:00
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
|
|
|
if (real_mode) {
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = check_physical(env, ctx, eaddr, access_type);
|
2013-03-12 01:31:10 +01:00
|
|
|
} else {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* Try to find a BAT */
|
|
|
|
if (env->nb_BATs != 0) {
|
2021-05-18 22:11:32 +02:00
|
|
|
ret = get_bat_6xx_tlb(env, ctx, eaddr, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2013-03-12 01:31:09 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
/* We didn't match any BAT entry or don't have BATs */
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = get_segment_6xx_tlb(env, ctx, eaddr, access_type, type);
|
2013-03-12 01:31:09 +01:00
|
|
|
}
|
2013-03-12 01:31:10 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-03-12 01:31:09 +01:00
|
|
|
|
2013-03-12 01:31:10 +01:00
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
|
|
|
if (real_mode) {
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = check_physical(env, ctx, eaddr, access_type);
|
2013-03-12 01:31:10 +01:00
|
|
|
} else {
|
2021-05-18 22:11:33 +02:00
|
|
|
ret = mmu40x_get_physical_address(env, ctx, eaddr, access_type);
|
2013-03-12 01:31:10 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE:
|
2021-05-18 22:11:35 +02:00
|
|
|
ret = mmubooke_get_physical_address(env, ctx, eaddr, access_type);
|
2013-03-12 01:31:10 +01:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE206:
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = mmubooke206_get_physical_address(env, ctx, eaddr, access_type,
|
2021-05-18 22:11:37 +02:00
|
|
|
mmu_idx);
|
2013-03-12 01:31:10 +01:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_MPC8xx:
|
|
|
|
/* XXX: TODO */
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "MPC8xx MMU model is not implemented\n");
|
2013-03-12 01:31:10 +01:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_REAL:
|
|
|
|
if (real_mode) {
|
2021-05-18 22:11:28 +02:00
|
|
|
ret = check_physical(env, ctx, eaddr, access_type);
|
2013-03-12 01:31:10 +01:00
|
|
|
} else {
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env),
|
2019-03-21 12:36:09 +01:00
|
|
|
"PowerPC in real mode do not do any translation\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2013-03-12 01:31:10 +01:00
|
|
|
return -1;
|
|
|
|
default:
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "Unknown or invalid MMU model\n");
|
2013-03-12 01:31:10 +01:00
|
|
|
return -1;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2021-05-18 22:11:28 +02:00
|
|
|
static int get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
|
|
|
target_ulong eaddr, MMUAccessType access_type,
|
|
|
|
int type)
|
2018-09-21 08:59:07 +02:00
|
|
|
{
|
2021-05-18 22:11:28 +02:00
|
|
|
return get_physical_address_wtlb(env, ctx, eaddr, access_type, type, 0);
|
2018-09-21 08:59:07 +02:00
|
|
|
}
|
2021-05-25 13:53:53 +02:00
|
|
|
#endif
|
2018-09-21 08:59:07 +02:00
|
|
|
|
2012-05-30 06:23:33 +02:00
|
|
|
static void booke206_update_mas_tlb_miss(CPUPPCState *env, target_ulong address,
|
2021-05-18 22:11:28 +02:00
|
|
|
MMUAccessType access_type, int mmu_idx)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2018-09-21 08:59:07 +02:00
|
|
|
uint32_t epid;
|
|
|
|
bool as, pr;
|
|
|
|
uint32_t missed_tid = 0;
|
|
|
|
bool use_epid = mmubooke206_get_as(env, mmu_idx, &epid, &as, &pr);
|
2021-05-18 22:11:28 +02:00
|
|
|
|
|
|
|
if (access_type == MMU_INST_FETCH) {
|
2018-09-21 08:59:07 +02:00
|
|
|
as = msr_ir;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_BOOKE_MAS0] = env->spr[SPR_BOOKE_MAS4] & MAS4_TLBSELD_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS1] = env->spr[SPR_BOOKE_MAS4] & MAS4_TSIZED_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS2] = env->spr[SPR_BOOKE_MAS4] & MAS4_WIMGED_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS3] = 0;
|
|
|
|
env->spr[SPR_BOOKE_MAS6] = 0;
|
|
|
|
env->spr[SPR_BOOKE_MAS7] = 0;
|
|
|
|
|
|
|
|
/* AS */
|
2018-09-21 08:59:07 +02:00
|
|
|
if (as) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_BOOKE_MAS1] |= MAS1_TS;
|
|
|
|
env->spr[SPR_BOOKE_MAS6] |= MAS6_SAS;
|
|
|
|
}
|
|
|
|
|
|
|
|
env->spr[SPR_BOOKE_MAS1] |= MAS1_VALID;
|
|
|
|
env->spr[SPR_BOOKE_MAS2] |= address & MAS2_EPN_MASK;
|
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
if (!use_epid) {
|
|
|
|
switch (env->spr[SPR_BOOKE_MAS4] & MAS4_TIDSELD_PIDZ) {
|
|
|
|
case MAS4_TIDSELD_PID0:
|
|
|
|
missed_tid = env->spr[SPR_BOOKE_PID];
|
|
|
|
break;
|
|
|
|
case MAS4_TIDSELD_PID1:
|
|
|
|
missed_tid = env->spr[SPR_BOOKE_PID1];
|
|
|
|
break;
|
|
|
|
case MAS4_TIDSELD_PID2:
|
|
|
|
missed_tid = env->spr[SPR_BOOKE_PID2];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
env->spr[SPR_BOOKE_MAS6] |= env->spr[SPR_BOOKE_PID] << 16;
|
|
|
|
} else {
|
|
|
|
missed_tid = epid;
|
|
|
|
env->spr[SPR_BOOKE_MAS6] |= missed_tid << 16;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2018-09-21 08:59:07 +02:00
|
|
|
env->spr[SPR_BOOKE_MAS1] |= (missed_tid << MAS1_TID_SHIFT);
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* next victim logic */
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_ESEL_SHIFT;
|
|
|
|
env->last_way++;
|
|
|
|
env->last_way &= booke206_tlb_ways(env, 0) - 1;
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform address translation */
|
2021-06-21 14:51:12 +02:00
|
|
|
/* TODO: Split this by mmu_model. */
|
|
|
|
static bool ppc_jumbo_xlate(PowerPCCPU *cpu, vaddr eaddr,
|
|
|
|
MMUAccessType access_type,
|
|
|
|
hwaddr *raddrp, int *psizep, int *protp,
|
|
|
|
int mmu_idx, bool guest_visible)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2021-06-21 14:51:12 +02:00
|
|
|
CPUState *cs = CPU(cpu);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2012-05-30 06:23:33 +02:00
|
|
|
mmu_ctx_t ctx;
|
2021-05-18 22:11:27 +02:00
|
|
|
int type;
|
2021-06-21 14:51:12 +02:00
|
|
|
int ret;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_INST_FETCH) {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* code access */
|
2021-05-18 22:11:27 +02:00
|
|
|
type = ACCESS_CODE;
|
2021-06-21 14:51:12 +02:00
|
|
|
} else if (guest_visible) {
|
2012-05-30 06:23:33 +02:00
|
|
|
/* data access */
|
2021-05-18 22:11:27 +02:00
|
|
|
type = env->access_type;
|
2021-06-21 14:51:12 +02:00
|
|
|
} else {
|
|
|
|
type = ACCESS_INT;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
2021-06-21 14:51:12 +02:00
|
|
|
|
|
|
|
ret = get_physical_address_wtlb(env, &ctx, eaddr, access_type,
|
2021-05-18 22:11:27 +02:00
|
|
|
type, mmu_idx);
|
2012-05-30 06:23:33 +02:00
|
|
|
if (ret == 0) {
|
2021-06-21 14:51:12 +02:00
|
|
|
*raddrp = ctx.raddr;
|
|
|
|
*protp = ctx.prot;
|
|
|
|
*psizep = TARGET_PAGE_BITS;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (guest_visible) {
|
2013-08-26 08:31:06 +02:00
|
|
|
LOG_MMU_STATE(cs);
|
2021-05-18 22:11:27 +02:00
|
|
|
if (type == ACCESS_CODE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
switch (ret) {
|
|
|
|
case -1:
|
|
|
|
/* No matches in page tables or TLB */
|
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_IFTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 1 << 18;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_IMISS] = eaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_ICMP] = 0x80000000 | ctx.ptem;
|
|
|
|
goto tlb_miss;
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_IFTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
goto tlb_miss_74xx;
|
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ITLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_40x_DEAR] = eaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_40x_ESR] = 0x00000000;
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE206:
|
2021-06-21 14:51:12 +02:00
|
|
|
booke206_update_mas_tlb_miss(env, eaddr, 2, mmu_idx);
|
2012-05-30 06:23:33 +02:00
|
|
|
/* fall through */
|
|
|
|
case POWERPC_MMU_BOOKE:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ITLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_BOOKE_DEAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
env->spr[SPR_BOOKE_ESR] = mmubooke206_esr(mmu_idx, MMU_DATA_LOAD);
|
2021-06-21 14:51:12 +02:00
|
|
|
break;
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_MPC8xx:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "MPC8xx MMU model is not implemented\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_REAL:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "PowerPC in real mode should never raise "
|
2012-05-30 06:23:33 +02:00
|
|
|
"any MMU exceptions\n");
|
|
|
|
default:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "Unknown or invalid MMU model\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
/* Access rights violation */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ISI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0x08000000;
|
|
|
|
break;
|
|
|
|
case -3:
|
|
|
|
/* No execute protection violation */
|
|
|
|
if ((env->mmu_model == POWERPC_MMU_BOOKE) ||
|
|
|
|
(env->mmu_model == POWERPC_MMU_BOOKE206)) {
|
|
|
|
env->spr[SPR_BOOKE_ESR] = 0x00000000;
|
|
|
|
}
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ISI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0x10000000;
|
|
|
|
break;
|
|
|
|
case -4:
|
|
|
|
/* Direct store exception */
|
|
|
|
/* No code fetch is allowed in direct-store areas */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ISI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0x10000000;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (ret) {
|
|
|
|
case -1:
|
|
|
|
/* No matches in page tables or TLB */
|
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DSTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 1 << 16;
|
|
|
|
} else {
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DLTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
|
|
|
}
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DMISS] = eaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_DCMP] = 0x80000000 | ctx.ptem;
|
|
|
|
tlb_miss:
|
|
|
|
env->error_code |= ctx.key << 19;
|
target/ppc: Eliminate htab_base and htab_mask variables
CPUPPCState includes fields htab_base and htab_mask which store the base
address (GPA) and size (as a mask) of the guest's hashed page table (HPT).
These are set when the SDR1 register is updated.
Keeping these in sync with the SDR1 is actually a little bit fiddly, and
probably not useful for performance, since keeping them expands the size of
CPUPPCState. It also makes some upcoming changes harder to implement.
This patch removes these fields, in favour of calculating them directly
from the SDR1 contents when necessary.
This does make a change to the behaviour of attempting to write a bad value
(invalid HPT size) to the SDR1 with an mtspr instruction. Previously, the
bad value would be stored in SDR1 and could be retrieved with a later
mfspr, but the HPT size as used by the softmmu would be, clamped to the
allowed values. Now, writing a bad value is treated as a no-op. An error
message is printed in both new and old versions.
I'm not sure which behaviour, if either, matches real hardware. I don't
think it matters that much, since it's pretty clear that if an OS writes
a bad value to SDR1, it's not going to boot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
2017-02-24 06:36:44 +01:00
|
|
|
env->spr[SPR_HASH1] = ppc_hash32_hpt_base(cpu) +
|
2016-01-14 05:33:27 +01:00
|
|
|
get_pteg_offset32(cpu, ctx.hash[0]);
|
target/ppc: Eliminate htab_base and htab_mask variables
CPUPPCState includes fields htab_base and htab_mask which store the base
address (GPA) and size (as a mask) of the guest's hashed page table (HPT).
These are set when the SDR1 register is updated.
Keeping these in sync with the SDR1 is actually a little bit fiddly, and
probably not useful for performance, since keeping them expands the size of
CPUPPCState. It also makes some upcoming changes harder to implement.
This patch removes these fields, in favour of calculating them directly
from the SDR1 contents when necessary.
This does make a change to the behaviour of attempting to write a bad value
(invalid HPT size) to the SDR1 with an mtspr instruction. Previously, the
bad value would be stored in SDR1 and could be retrieved with a later
mfspr, but the HPT size as used by the softmmu would be, clamped to the
allowed values. Now, writing a bad value is treated as a no-op. An error
message is printed in both new and old versions.
I'm not sure which behaviour, if either, matches real hardware. I don't
think it matters that much, since it's pretty clear that if an OS writes
a bad value to SDR1, it's not going to boot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
2017-02-24 06:36:44 +01:00
|
|
|
env->spr[SPR_HASH2] = ppc_hash32_hpt_base(cpu) +
|
2016-01-14 05:33:27 +01:00
|
|
|
get_pteg_offset32(cpu, ctx.hash[1]);
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DSTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
} else {
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DLTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
tlb_miss_74xx:
|
|
|
|
/* Implement LRU algorithm */
|
|
|
|
env->error_code = ctx.key << 19;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_TLBMISS] = (eaddr & ~((target_ulong)0x3)) |
|
2012-05-30 06:23:33 +02:00
|
|
|
((env->last_way + 1) & (env->nb_ways - 1));
|
|
|
|
env->spr[SPR_PTEHI] = 0x80000000 | ctx.ptem;
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_40x_DEAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_40x_ESR] = 0x00800000;
|
|
|
|
} else {
|
|
|
|
env->spr[SPR_40x_ESR] = 0x00000000;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_MPC8xx:
|
|
|
|
/* XXX: TODO */
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "MPC8xx MMU model is not implemented\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_BOOKE206:
|
2021-06-21 14:51:12 +02:00
|
|
|
booke206_update_mas_tlb_miss(env, eaddr, access_type, mmu_idx);
|
2012-05-30 06:23:33 +02:00
|
|
|
/* fall through */
|
|
|
|
case POWERPC_MMU_BOOKE:
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DTLB;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_BOOKE_DEAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
env->spr[SPR_BOOKE_ESR] = mmubooke206_esr(mmu_idx, access_type);
|
2021-06-21 14:51:12 +02:00
|
|
|
break;
|
2012-05-30 06:23:33 +02:00
|
|
|
case POWERPC_MMU_REAL:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "PowerPC in real mode should never raise "
|
2012-05-30 06:23:33 +02:00
|
|
|
"any MMU exceptions\n");
|
|
|
|
default:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "Unknown or invalid MMU model\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
/* Access rights violation */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DSI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
|
|
|
if (env->mmu_model == POWERPC_MMU_SOFT_4xx
|
|
|
|
|| env->mmu_model == POWERPC_MMU_SOFT_4xx_Z) {
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_40x_DEAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_40x_ESR] |= 0x00800000;
|
|
|
|
}
|
|
|
|
} else if ((env->mmu_model == POWERPC_MMU_BOOKE) ||
|
|
|
|
(env->mmu_model == POWERPC_MMU_BOOKE206)) {
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_BOOKE_DEAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
env->spr[SPR_BOOKE_ESR] = mmubooke206_esr(mmu_idx, access_type);
|
2012-05-30 06:23:33 +02:00
|
|
|
} else {
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_DSISR] = 0x0A000000;
|
|
|
|
} else {
|
|
|
|
env->spr[SPR_DSISR] = 0x08000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case -4:
|
|
|
|
/* Direct store exception */
|
2021-05-18 22:11:27 +02:00
|
|
|
switch (type) {
|
2012-05-30 06:23:33 +02:00
|
|
|
case ACCESS_FLOAT:
|
|
|
|
/* Floating point load/store */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_ALIGN;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = POWERPC_EXCP_ALIGN_FP;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DAR] = eaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case ACCESS_RES:
|
|
|
|
/* lwarx, ldarx or stwcx. */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DSI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_DSISR] = 0x06000000;
|
|
|
|
} else {
|
|
|
|
env->spr[SPR_DSISR] = 0x04000000;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ACCESS_EXT:
|
|
|
|
/* eciwx or ecowx */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_DSI;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code = 0;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DAR] = eaddr;
|
2021-05-18 22:11:28 +02:00
|
|
|
if (access_type == MMU_DATA_STORE) {
|
2012-05-30 06:23:33 +02:00
|
|
|
env->spr[SPR_DSISR] = 0x06100000;
|
|
|
|
} else {
|
|
|
|
env->spr[SPR_DSISR] = 0x04100000;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("DSI: invalid exception (%d)\n", ret);
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = POWERPC_EXCP_PROGRAM;
|
2012-05-30 06:23:33 +02:00
|
|
|
env->error_code =
|
|
|
|
POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL;
|
2021-06-21 14:51:12 +02:00
|
|
|
env->spr[SPR_DAR] = eaddr;
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-21 14:51:12 +02:00
|
|
|
return false;
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-05-30 06:23:33 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* BATs management */
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
static inline void do_invalidate_BAT(CPUPPCState *env, target_ulong BATu,
|
|
|
|
target_ulong mask)
|
|
|
|
{
|
2019-03-23 03:07:57 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2012-05-30 06:23:33 +02:00
|
|
|
target_ulong base, end, page;
|
|
|
|
|
|
|
|
base = BATu & ~0x0001FFFF;
|
|
|
|
end = base + mask + 0x00020000;
|
2019-04-12 23:06:17 +02:00
|
|
|
if (((end - base) >> TARGET_PAGE_BITS) > 1024) {
|
|
|
|
/* Flushing 1024 4K pages is slower than a complete flush */
|
|
|
|
LOG_BATS("Flush all BATs\n");
|
2020-05-12 09:00:18 +02:00
|
|
|
tlb_flush(cs);
|
2019-04-12 23:06:17 +02:00
|
|
|
LOG_BATS("Flush done\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
LOG_BATS("Flush BAT from " TARGET_FMT_lx " to " TARGET_FMT_lx " ("
|
|
|
|
TARGET_FMT_lx ")\n", base, end, mask);
|
|
|
|
for (page = base; page != end; page += TARGET_PAGE_SIZE) {
|
2013-09-04 01:29:02 +02:00
|
|
|
tlb_flush_page(cs, page);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
LOG_BATS("Flush done\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void dump_store_bat(CPUPPCState *env, char ID, int ul, int nr,
|
|
|
|
target_ulong value)
|
|
|
|
{
|
|
|
|
LOG_BATS("Set %cBAT%d%c to " TARGET_FMT_lx " (" TARGET_FMT_lx ")\n", ID,
|
|
|
|
nr, ul == 0 ? 'u' : 'l', value, env->nip);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_ibatu(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong mask;
|
|
|
|
|
|
|
|
dump_store_bat(env, 'I', 0, nr, value);
|
|
|
|
if (env->IBAT[0][nr] != value) {
|
|
|
|
mask = (value << 15) & 0x0FFE0000UL;
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#endif
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* When storing valid upper BAT, mask BEPI and BRPN and
|
|
|
|
* invalidate all TLBs covered by this BAT
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
mask = (value << 15) & 0x0FFE0000UL;
|
|
|
|
env->IBAT[0][nr] = (value & 0x00001FFFUL) |
|
|
|
|
(value & ~0x0001FFFFUL & ~mask);
|
|
|
|
env->IBAT[1][nr] = (env->IBAT[1][nr] & 0x0000007B) |
|
|
|
|
(env->IBAT[1][nr] & ~0x0001FFFF & ~mask);
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#else
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_ibatl(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
dump_store_bat(env, 'I', 1, nr, value);
|
|
|
|
env->IBAT[1][nr] = value;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_dbatu(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong mask;
|
|
|
|
|
|
|
|
dump_store_bat(env, 'D', 0, nr, value);
|
|
|
|
if (env->DBAT[0][nr] != value) {
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* When storing valid upper BAT, mask BEPI and BRPN and
|
|
|
|
* invalidate all TLBs covered by this BAT
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
mask = (value << 15) & 0x0FFE0000UL;
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->DBAT[0][nr], mask);
|
|
|
|
#endif
|
|
|
|
mask = (value << 15) & 0x0FFE0000UL;
|
|
|
|
env->DBAT[0][nr] = (value & 0x00001FFFUL) |
|
|
|
|
(value & ~0x0001FFFFUL & ~mask);
|
|
|
|
env->DBAT[1][nr] = (env->DBAT[1][nr] & 0x0000007B) |
|
|
|
|
(env->DBAT[1][nr] & ~0x0001FFFF & ~mask);
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->DBAT[0][nr], mask);
|
|
|
|
#else
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_dbatl(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
dump_store_bat(env, 'D', 1, nr, value);
|
|
|
|
env->DBAT[1][nr] = value;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_601_batu(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
|
|
|
target_ulong mask;
|
|
|
|
#if defined(FLUSH_ALL_TLBS)
|
|
|
|
int do_inval;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dump_store_bat(env, 'I', 0, nr, value);
|
|
|
|
if (env->IBAT[0][nr] != value) {
|
|
|
|
#if defined(FLUSH_ALL_TLBS)
|
|
|
|
do_inval = 0;
|
|
|
|
#endif
|
|
|
|
mask = (env->IBAT[1][nr] << 17) & 0x0FFE0000UL;
|
|
|
|
if (env->IBAT[1][nr] & 0x40) {
|
|
|
|
/* Invalidate BAT only if it is valid */
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#else
|
|
|
|
do_inval = 1;
|
|
|
|
#endif
|
|
|
|
}
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* When storing valid upper BAT, mask BEPI and BRPN and
|
|
|
|
* invalidate all TLBs covered by this BAT
|
2012-05-30 06:23:33 +02:00
|
|
|
*/
|
|
|
|
env->IBAT[0][nr] = (value & 0x00001FFFUL) |
|
|
|
|
(value & ~0x0001FFFFUL & ~mask);
|
|
|
|
env->DBAT[0][nr] = env->IBAT[0][nr];
|
|
|
|
if (env->IBAT[1][nr] & 0x40) {
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#else
|
|
|
|
do_inval = 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#if defined(FLUSH_ALL_TLBS)
|
|
|
|
if (do_inval) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_601_batl(CPUPPCState *env, uint32_t nr, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2013-01-27 04:32:01 +01:00
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
2012-05-30 06:23:33 +02:00
|
|
|
target_ulong mask;
|
2013-01-27 04:32:01 +01:00
|
|
|
#else
|
2012-05-30 06:23:33 +02:00
|
|
|
int do_inval;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dump_store_bat(env, 'I', 1, nr, value);
|
|
|
|
if (env->IBAT[1][nr] != value) {
|
|
|
|
#if defined(FLUSH_ALL_TLBS)
|
|
|
|
do_inval = 0;
|
|
|
|
#endif
|
|
|
|
if (env->IBAT[1][nr] & 0x40) {
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
mask = (env->IBAT[1][nr] << 17) & 0x0FFE0000UL;
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#else
|
|
|
|
do_inval = 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (value & 0x40) {
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
mask = (value << 17) & 0x0FFE0000UL;
|
|
|
|
do_invalidate_BAT(env, env->IBAT[0][nr], mask);
|
|
|
|
#else
|
|
|
|
do_inval = 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
env->IBAT[1][nr] = value;
|
|
|
|
env->DBAT[1][nr] = value;
|
|
|
|
#if defined(FLUSH_ALL_TLBS)
|
|
|
|
if (do_inval) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2021-05-25 13:53:53 +02:00
|
|
|
#endif
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-07-08 18:49:54 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-05-30 06:23:33 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* TLB management */
|
|
|
|
void ppc_tlb_invalidate_all(CPUPPCState *env)
|
|
|
|
{
|
2017-03-02 06:38:56 +01:00
|
|
|
#if defined(TARGET_PPC64)
|
2020-12-09 18:35:36 +01:00
|
|
|
if (mmu_is_64bit(env->mmu_model)) {
|
2017-03-02 06:38:56 +01:00
|
|
|
env->tlb_need_flush = 0;
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2017-03-02 06:38:56 +01:00
|
|
|
} else
|
|
|
|
#endif /* defined(TARGET_PPC64) */
|
2012-05-30 06:23:33 +02:00
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
|
|
|
ppc6xx_tlb_invalidate_all(env);
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
|
|
|
ppc4xx_tlb_invalidate_all(env);
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_REAL:
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "No TLB for PowerPC 4xx in real mode\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_MPC8xx:
|
|
|
|
/* XXX: TODO */
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "MPC8xx MMU model is not implemented\n");
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE:
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE206:
|
|
|
|
booke206_flush_tlb(env, -1, 0);
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_32B:
|
|
|
|
case POWERPC_MMU_601:
|
2016-06-07 04:50:22 +02:00
|
|
|
env->tlb_need_flush = 0;
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* XXX: TODO */
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "Unknown MMU model %x\n", env->mmu_model);
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-07-08 18:49:54 +02:00
|
|
|
#endif
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2021-05-25 13:53:53 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2012-05-30 06:23:33 +02:00
|
|
|
void ppc_tlb_invalidate_one(CPUPPCState *env, target_ulong addr)
|
|
|
|
{
|
|
|
|
#if !defined(FLUSH_ALL_TLBS)
|
|
|
|
addr &= TARGET_PAGE_MASK;
|
2017-03-02 06:38:56 +01:00
|
|
|
#if defined(TARGET_PPC64)
|
2020-12-09 18:35:36 +01:00
|
|
|
if (mmu_is_64bit(env->mmu_model)) {
|
2017-03-02 06:38:56 +01:00
|
|
|
/* tlbie invalidate TLBs for all segments */
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* XXX: given the fact that there are too many segments to invalidate,
|
2017-03-02 06:38:56 +01:00
|
|
|
* and we still don't have a tlb_flush_mask(env, n, mask) in QEMU,
|
|
|
|
* we just invalidate all TLBs
|
|
|
|
*/
|
|
|
|
env->tlb_need_flush |= TLB_NEED_LOCAL_FLUSH;
|
|
|
|
} else
|
|
|
|
#endif /* defined(TARGET_PPC64) */
|
2012-05-30 06:23:33 +02:00
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
|
|
|
ppc6xx_tlb_invalidate_virt(env, addr, 0);
|
|
|
|
if (env->id_tlbs == 1) {
|
|
|
|
ppc6xx_tlb_invalidate_virt(env, addr, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_32B:
|
|
|
|
case POWERPC_MMU_601:
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Actual CPUs invalidate entire congruence classes based on
|
|
|
|
* the geometry of their TLBs and some OSes take that into
|
|
|
|
* account, we just mark the TLB to be flushed later (context
|
|
|
|
* synchronizing event or sync instruction on 32-bit).
|
2016-06-07 04:50:21 +02:00
|
|
|
*/
|
2016-09-20 18:34:59 +02:00
|
|
|
env->tlb_need_flush |= TLB_NEED_LOCAL_FLUSH;
|
2012-05-30 06:23:33 +02:00
|
|
|
break;
|
|
|
|
default:
|
target-ppc: Remove unused mmu models from ppc_tlb_invalidate_one
ppc_tlb_invalidate_one() has a big switch handling many different MMU
types. However, most of those branches can never be reached:
It is called from 3 places: from remove_hpte() and h_protect() in
spapr_hcall.c (which always has a 64-bit hash MMU type), and from
helper_tlbie() in mmu_helper.c.
Calls to helper_tlbie() are generated from gen_tlbiel, gen_tlbiel and
gen_tlbiva. The first two are only used with the PPC_MEM_TLBIE flag,
set only with 32-bit or 64-bit hash MMU models, and gen_tlbiva() is
used only on 440 and 460 models with the BookE mmu model.
These means the exhaustive list of MMU types which may call
ppc_tlb_invalidate_one() is: POWERPC_MMU_SOFT_6xx, POWERPC_MMU_601,
POWERPC_MMU_32B, POWERPC_MMU_SOFT_74xx, POWERPC_MMU_64B, POWERPC_MMU_2_03,
POWERPC_MMU_2_06, POWERPC_MMU_2_07 and POWERPC_MMU_BOOKE.
Clean up by removing logic for all other MMU types from
ppc_tlb_invalidate_one().
This means that ppc4xx_tlb_invalidate_virt() now has no callers, or rather,
makes it obvious that it has no callers. So, we remove that function as
well.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-01-30 13:49:22 +01:00
|
|
|
/* Should never reach here with other MMU models */
|
|
|
|
assert(0);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
ppc_tlb_invalidate_all(env);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Special registers manipulation */
|
2018-04-24 13:30:42 +02:00
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
/* Segment registers load and store */
|
|
|
|
target_ulong helper_load_sr(CPUPPCState *env, target_ulong sr_num)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2012-05-30 06:23:34 +02:00
|
|
|
#if defined(TARGET_PPC64)
|
2020-12-09 18:35:36 +01:00
|
|
|
if (mmu_is_64bit(env->mmu_model)) {
|
2012-05-30 06:23:34 +02:00
|
|
|
/* XXX */
|
|
|
|
return 0;
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
2012-05-30 06:23:34 +02:00
|
|
|
return env->sr[sr_num];
|
|
|
|
}
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2012-05-30 06:23:34 +02:00
|
|
|
void helper_store_sr(CPUPPCState *env, target_ulong srnum, target_ulong value)
|
2012-05-30 06:23:33 +02:00
|
|
|
{
|
2014-12-13 17:48:18 +01:00
|
|
|
qemu_log_mask(CPU_LOG_MMU,
|
|
|
|
"%s: reg=%d " TARGET_FMT_lx " " TARGET_FMT_lx "\n", __func__,
|
2012-05-30 06:23:34 +02:00
|
|
|
(int)srnum, value, env->sr[srnum]);
|
2012-05-30 06:23:33 +02:00
|
|
|
#if defined(TARGET_PPC64)
|
2020-12-09 18:35:36 +01:00
|
|
|
if (mmu_is_64bit(env->mmu_model)) {
|
2019-03-23 03:07:57 +01:00
|
|
|
PowerPCCPU *cpu = env_archcpu(env);
|
2016-01-27 01:07:29 +01:00
|
|
|
uint64_t esid, vsid;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
/* ESID = srnum */
|
2016-01-27 01:07:29 +01:00
|
|
|
esid = ((uint64_t)(srnum & 0xf) << 28) | SLB_ESID_V;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
|
|
|
/* VSID = VSID */
|
2016-01-27 01:07:29 +01:00
|
|
|
vsid = (value & 0xfffffff) << 12;
|
2012-05-30 06:23:33 +02:00
|
|
|
/* flags = flags */
|
2016-01-27 01:07:29 +01:00
|
|
|
vsid |= ((value >> 27) & 0xf) << 8;
|
2012-05-30 06:23:33 +02:00
|
|
|
|
2016-01-27 01:07:29 +01:00
|
|
|
ppc_store_slb(cpu, srnum, esid, vsid);
|
2012-05-30 06:23:33 +02:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
if (env->sr[srnum] != value) {
|
|
|
|
env->sr[srnum] = value;
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Invalidating 256MB of virtual memory in 4kB pages is way
|
2020-10-09 08:44:37 +02:00
|
|
|
* longer than flushing the whole TLB.
|
2019-03-21 12:36:09 +01:00
|
|
|
*/
|
2012-05-30 06:23:33 +02:00
|
|
|
#if !defined(FLUSH_ALL_TLBS) && 0
|
|
|
|
{
|
|
|
|
target_ulong page, end;
|
|
|
|
/* Invalidate 256 MB of virtual memory */
|
|
|
|
page = (16 << 20) * srnum;
|
|
|
|
end = page + (16 << 20);
|
|
|
|
for (; page != end; page += TARGET_PAGE_SIZE) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush_page(env_cpu(env), page);
|
2012-05-30 06:23:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2016-09-20 18:34:59 +02:00
|
|
|
env->tlb_need_flush |= TLB_NEED_LOCAL_FLUSH;
|
2012-05-30 06:23:33 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:30 +02:00
|
|
|
/* TLB management */
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_tlbia(CPUPPCState *env)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppc_tlb_invalidate_all(env);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_tlbie(CPUPPCState *env, target_ulong addr)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppc_tlb_invalidate_one(env, addr);
|
|
|
|
}
|
|
|
|
|
2016-01-28 00:31:04 +01:00
|
|
|
void helper_tlbiva(CPUPPCState *env, target_ulong addr)
|
|
|
|
{
|
|
|
|
/* tlbiva instruction only exists on BookE */
|
|
|
|
assert(env->mmu_model == POWERPC_MMU_BOOKE);
|
|
|
|
/* XXX: TODO */
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "BookE MMU model is not implemented\n");
|
2016-01-28 00:31:04 +01:00
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:30 +02:00
|
|
|
/* Software driven TLBs management */
|
|
|
|
/* PowerPC 602/603 software TLB load instructions helpers */
|
2012-05-30 06:23:31 +02:00
|
|
|
static void do_6xx_tlb(CPUPPCState *env, target_ulong new_EPN, int is_code)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
target_ulong RPN, CMP, EPN;
|
|
|
|
int way;
|
|
|
|
|
|
|
|
RPN = env->spr[SPR_RPA];
|
|
|
|
if (is_code) {
|
|
|
|
CMP = env->spr[SPR_ICMP];
|
|
|
|
EPN = env->spr[SPR_IMISS];
|
|
|
|
} else {
|
|
|
|
CMP = env->spr[SPR_DCMP];
|
|
|
|
EPN = env->spr[SPR_DMISS];
|
|
|
|
}
|
|
|
|
way = (env->spr[SPR_SRR1] >> 17) & 1;
|
|
|
|
(void)EPN; /* avoid a compiler warning */
|
|
|
|
LOG_SWTLB("%s: EPN " TARGET_FMT_lx " " TARGET_FMT_lx " PTE0 " TARGET_FMT_lx
|
|
|
|
" PTE1 " TARGET_FMT_lx " way %d\n", __func__, new_EPN, EPN, CMP,
|
|
|
|
RPN, way);
|
|
|
|
/* Store this TLB */
|
|
|
|
ppc6xx_tlb_store(env, (uint32_t)(new_EPN & TARGET_PAGE_MASK),
|
|
|
|
way, is_code, CMP, RPN);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_6xx_tlbd(CPUPPCState *env, target_ulong EPN)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2012-05-30 06:23:31 +02:00
|
|
|
do_6xx_tlb(env, EPN, 0);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_6xx_tlbi(CPUPPCState *env, target_ulong EPN)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2012-05-30 06:23:31 +02:00
|
|
|
do_6xx_tlb(env, EPN, 1);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* PowerPC 74xx software TLB load instructions helpers */
|
2012-05-30 06:23:31 +02:00
|
|
|
static void do_74xx_tlb(CPUPPCState *env, target_ulong new_EPN, int is_code)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
target_ulong RPN, CMP, EPN;
|
|
|
|
int way;
|
|
|
|
|
|
|
|
RPN = env->spr[SPR_PTELO];
|
|
|
|
CMP = env->spr[SPR_PTEHI];
|
|
|
|
EPN = env->spr[SPR_TLBMISS] & ~0x3;
|
|
|
|
way = env->spr[SPR_TLBMISS] & 0x3;
|
|
|
|
(void)EPN; /* avoid a compiler warning */
|
|
|
|
LOG_SWTLB("%s: EPN " TARGET_FMT_lx " " TARGET_FMT_lx " PTE0 " TARGET_FMT_lx
|
|
|
|
" PTE1 " TARGET_FMT_lx " way %d\n", __func__, new_EPN, EPN, CMP,
|
|
|
|
RPN, way);
|
|
|
|
/* Store this TLB */
|
|
|
|
ppc6xx_tlb_store(env, (uint32_t)(new_EPN & TARGET_PAGE_MASK),
|
|
|
|
way, is_code, CMP, RPN);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_74xx_tlbd(CPUPPCState *env, target_ulong EPN)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2012-05-30 06:23:31 +02:00
|
|
|
do_74xx_tlb(env, EPN, 0);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_74xx_tlbi(CPUPPCState *env, target_ulong EPN)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2012-05-30 06:23:31 +02:00
|
|
|
do_74xx_tlb(env, EPN, 1);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* PowerPC 601 specific instructions (POWER bridge) */
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_rac(CPUPPCState *env, target_ulong addr)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
mmu_ctx_t ctx;
|
|
|
|
int nb_BATs;
|
|
|
|
target_ulong ret = 0;
|
|
|
|
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* We don't have to generate many instances of this instruction,
|
2012-05-30 06:23:30 +02:00
|
|
|
* as rac is supervisor only.
|
2019-03-21 12:36:09 +01:00
|
|
|
*
|
|
|
|
* XXX: FIX THIS: Pretend we have no BAT
|
2012-05-30 06:23:30 +02:00
|
|
|
*/
|
|
|
|
nb_BATs = env->nb_BATs;
|
|
|
|
env->nb_BATs = 0;
|
|
|
|
if (get_physical_address(env, &ctx, addr, 0, ACCESS_INT) == 0) {
|
|
|
|
ret = ctx.raddr;
|
|
|
|
}
|
|
|
|
env->nb_BATs = nb_BATs;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline target_ulong booke_tlb_to_page_size(int size)
|
|
|
|
{
|
|
|
|
return 1024 << (2 * size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int booke_page_size_to_tlb(target_ulong page_size)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
|
|
|
|
switch (page_size) {
|
|
|
|
case 0x00000400UL:
|
|
|
|
size = 0x0;
|
|
|
|
break;
|
|
|
|
case 0x00001000UL:
|
|
|
|
size = 0x1;
|
|
|
|
break;
|
|
|
|
case 0x00004000UL:
|
|
|
|
size = 0x2;
|
|
|
|
break;
|
|
|
|
case 0x00010000UL:
|
|
|
|
size = 0x3;
|
|
|
|
break;
|
|
|
|
case 0x00040000UL:
|
|
|
|
size = 0x4;
|
|
|
|
break;
|
|
|
|
case 0x00100000UL:
|
|
|
|
size = 0x5;
|
|
|
|
break;
|
|
|
|
case 0x00400000UL:
|
|
|
|
size = 0x6;
|
|
|
|
break;
|
|
|
|
case 0x01000000UL:
|
|
|
|
size = 0x7;
|
|
|
|
break;
|
|
|
|
case 0x04000000UL:
|
|
|
|
size = 0x8;
|
|
|
|
break;
|
|
|
|
case 0x10000000UL:
|
|
|
|
size = 0x9;
|
|
|
|
break;
|
|
|
|
case 0x40000000UL:
|
|
|
|
size = 0xA;
|
|
|
|
break;
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
case 0x000100000000ULL:
|
|
|
|
size = 0xB;
|
|
|
|
break;
|
|
|
|
case 0x000400000000ULL:
|
|
|
|
size = 0xC;
|
|
|
|
break;
|
|
|
|
case 0x001000000000ULL:
|
|
|
|
size = 0xD;
|
|
|
|
break;
|
|
|
|
case 0x004000000000ULL:
|
|
|
|
size = 0xE;
|
|
|
|
break;
|
|
|
|
case 0x010000000000ULL:
|
|
|
|
size = 0xF;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
size = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helpers for 4xx TLB management */
|
|
|
|
#define PPC4XX_TLB_ENTRY_MASK 0x0000003f /* Mask for 64 TLB entries */
|
|
|
|
|
|
|
|
#define PPC4XX_TLBHI_V 0x00000040
|
|
|
|
#define PPC4XX_TLBHI_E 0x00000020
|
|
|
|
#define PPC4XX_TLBHI_SIZE_MIN 0
|
|
|
|
#define PPC4XX_TLBHI_SIZE_MAX 7
|
|
|
|
#define PPC4XX_TLBHI_SIZE_DEFAULT 1
|
|
|
|
#define PPC4XX_TLBHI_SIZE_SHIFT 7
|
|
|
|
#define PPC4XX_TLBHI_SIZE_MASK 0x00000007
|
|
|
|
|
|
|
|
#define PPC4XX_TLBLO_EX 0x00000200
|
|
|
|
#define PPC4XX_TLBLO_WR 0x00000100
|
|
|
|
#define PPC4XX_TLBLO_ATTR_MASK 0x000000FF
|
|
|
|
#define PPC4XX_TLBLO_RPN_MASK 0xFFFFFC00
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_4xx_tlbre_hi(CPUPPCState *env, target_ulong entry)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
target_ulong ret;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
entry &= PPC4XX_TLB_ENTRY_MASK;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
ret = tlb->EPN;
|
|
|
|
if (tlb->prot & PAGE_VALID) {
|
|
|
|
ret |= PPC4XX_TLBHI_V;
|
|
|
|
}
|
|
|
|
size = booke_page_size_to_tlb(tlb->size);
|
|
|
|
if (size < PPC4XX_TLBHI_SIZE_MIN || size > PPC4XX_TLBHI_SIZE_MAX) {
|
|
|
|
size = PPC4XX_TLBHI_SIZE_DEFAULT;
|
|
|
|
}
|
|
|
|
ret |= size << PPC4XX_TLBHI_SIZE_SHIFT;
|
|
|
|
env->spr[SPR_40x_PID] = tlb->PID;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_4xx_tlbre_lo(CPUPPCState *env, target_ulong entry)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
target_ulong ret;
|
|
|
|
|
|
|
|
entry &= PPC4XX_TLB_ENTRY_MASK;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
ret = tlb->RPN;
|
|
|
|
if (tlb->prot & PAGE_EXEC) {
|
|
|
|
ret |= PPC4XX_TLBLO_EX;
|
|
|
|
}
|
|
|
|
if (tlb->prot & PAGE_WRITE) {
|
|
|
|
ret |= PPC4XX_TLBLO_WR;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_4xx_tlbwe_hi(CPUPPCState *env, target_ulong entry,
|
|
|
|
target_ulong val)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2019-03-23 03:07:57 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2012-05-30 06:23:30 +02:00
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
target_ulong page, end;
|
|
|
|
|
|
|
|
LOG_SWTLB("%s entry %d val " TARGET_FMT_lx "\n", __func__, (int)entry,
|
|
|
|
val);
|
|
|
|
entry &= PPC4XX_TLB_ENTRY_MASK;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
/* Invalidate previous TLB (if it's valid) */
|
|
|
|
if (tlb->prot & PAGE_VALID) {
|
|
|
|
end = tlb->EPN + tlb->size;
|
|
|
|
LOG_SWTLB("%s: invalidate old TLB %d start " TARGET_FMT_lx " end "
|
|
|
|
TARGET_FMT_lx "\n", __func__, (int)entry, tlb->EPN, end);
|
|
|
|
for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE) {
|
2013-09-04 01:29:02 +02:00
|
|
|
tlb_flush_page(cs, page);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
tlb->size = booke_tlb_to_page_size((val >> PPC4XX_TLBHI_SIZE_SHIFT)
|
|
|
|
& PPC4XX_TLBHI_SIZE_MASK);
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* We cannot handle TLB size < TARGET_PAGE_SIZE.
|
2018-08-21 13:27:48 +02:00
|
|
|
* If this ever occurs, we should implement TARGET_PAGE_BITS_VARY
|
2012-05-30 06:23:30 +02:00
|
|
|
*/
|
|
|
|
if ((val & PPC4XX_TLBHI_V) && tlb->size < TARGET_PAGE_SIZE) {
|
2013-09-04 01:29:02 +02:00
|
|
|
cpu_abort(cs, "TLB size " TARGET_FMT_lu " < %u "
|
2018-08-21 13:27:48 +02:00
|
|
|
"are not supported (%d)\n"
|
|
|
|
"Please implement TARGET_PAGE_BITS_VARY\n",
|
2012-05-30 06:23:30 +02:00
|
|
|
tlb->size, TARGET_PAGE_SIZE, (int)((val >> 7) & 0x7));
|
|
|
|
}
|
|
|
|
tlb->EPN = val & ~(tlb->size - 1);
|
|
|
|
if (val & PPC4XX_TLBHI_V) {
|
|
|
|
tlb->prot |= PAGE_VALID;
|
|
|
|
if (val & PPC4XX_TLBHI_E) {
|
|
|
|
/* XXX: TO BE FIXED */
|
2013-09-04 01:29:02 +02:00
|
|
|
cpu_abort(cs,
|
2012-05-30 06:23:30 +02:00
|
|
|
"Little-endian TLB entries are not supported by now\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tlb->prot &= ~PAGE_VALID;
|
|
|
|
}
|
|
|
|
tlb->PID = env->spr[SPR_40x_PID]; /* PID */
|
|
|
|
LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx " EPN " TARGET_FMT_lx
|
|
|
|
" size " TARGET_FMT_lx " prot %c%c%c%c PID %d\n", __func__,
|
|
|
|
(int)entry, tlb->RPN, tlb->EPN, tlb->size,
|
|
|
|
tlb->prot & PAGE_READ ? 'r' : '-',
|
|
|
|
tlb->prot & PAGE_WRITE ? 'w' : '-',
|
|
|
|
tlb->prot & PAGE_EXEC ? 'x' : '-',
|
|
|
|
tlb->prot & PAGE_VALID ? 'v' : '-', (int)tlb->PID);
|
|
|
|
/* Invalidate new TLB (if valid) */
|
|
|
|
if (tlb->prot & PAGE_VALID) {
|
|
|
|
end = tlb->EPN + tlb->size;
|
|
|
|
LOG_SWTLB("%s: invalidate TLB %d start " TARGET_FMT_lx " end "
|
|
|
|
TARGET_FMT_lx "\n", __func__, (int)entry, tlb->EPN, end);
|
|
|
|
for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE) {
|
2013-09-04 01:29:02 +02:00
|
|
|
tlb_flush_page(cs, page);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_4xx_tlbwe_lo(CPUPPCState *env, target_ulong entry,
|
|
|
|
target_ulong val)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
|
|
|
|
LOG_SWTLB("%s entry %i val " TARGET_FMT_lx "\n", __func__, (int)entry,
|
|
|
|
val);
|
|
|
|
entry &= PPC4XX_TLB_ENTRY_MASK;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
tlb->attr = val & PPC4XX_TLBLO_ATTR_MASK;
|
|
|
|
tlb->RPN = val & PPC4XX_TLBLO_RPN_MASK;
|
|
|
|
tlb->prot = PAGE_READ;
|
|
|
|
if (val & PPC4XX_TLBLO_EX) {
|
|
|
|
tlb->prot |= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
if (val & PPC4XX_TLBLO_WR) {
|
|
|
|
tlb->prot |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx " EPN " TARGET_FMT_lx
|
|
|
|
" size " TARGET_FMT_lx " prot %c%c%c%c PID %d\n", __func__,
|
|
|
|
(int)entry, tlb->RPN, tlb->EPN, tlb->size,
|
|
|
|
tlb->prot & PAGE_READ ? 'r' : '-',
|
|
|
|
tlb->prot & PAGE_WRITE ? 'w' : '-',
|
|
|
|
tlb->prot & PAGE_EXEC ? 'x' : '-',
|
|
|
|
tlb->prot & PAGE_VALID ? 'v' : '-', (int)tlb->PID);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_4xx_tlbsx(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
return ppcemb_tlb_search(env, address, env->spr[SPR_40x_PID]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* PowerPC 440 TLB management */
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_440_tlbwe(CPUPPCState *env, uint32_t word, target_ulong entry,
|
|
|
|
target_ulong value)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
target_ulong EPN, RPN, size;
|
|
|
|
int do_flush_tlbs;
|
|
|
|
|
|
|
|
LOG_SWTLB("%s word %d entry %d value " TARGET_FMT_lx "\n",
|
|
|
|
__func__, word, (int)entry, value);
|
|
|
|
do_flush_tlbs = 0;
|
|
|
|
entry &= 0x3F;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
switch (word) {
|
|
|
|
default:
|
|
|
|
/* Just here to please gcc */
|
|
|
|
case 0:
|
|
|
|
EPN = value & 0xFFFFFC00;
|
|
|
|
if ((tlb->prot & PAGE_VALID) && EPN != tlb->EPN) {
|
|
|
|
do_flush_tlbs = 1;
|
|
|
|
}
|
|
|
|
tlb->EPN = EPN;
|
|
|
|
size = booke_tlb_to_page_size((value >> 4) & 0xF);
|
|
|
|
if ((tlb->prot & PAGE_VALID) && tlb->size < size) {
|
|
|
|
do_flush_tlbs = 1;
|
|
|
|
}
|
|
|
|
tlb->size = size;
|
|
|
|
tlb->attr &= ~0x1;
|
|
|
|
tlb->attr |= (value >> 8) & 1;
|
|
|
|
if (value & 0x200) {
|
|
|
|
tlb->prot |= PAGE_VALID;
|
|
|
|
} else {
|
|
|
|
if (tlb->prot & PAGE_VALID) {
|
|
|
|
tlb->prot &= ~PAGE_VALID;
|
|
|
|
do_flush_tlbs = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tlb->PID = env->spr[SPR_440_MMUCR] & 0x000000FF;
|
|
|
|
if (do_flush_tlbs) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
RPN = value & 0xFFFFFC0F;
|
|
|
|
if ((tlb->prot & PAGE_VALID) && tlb->RPN != RPN) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
tlb->RPN = RPN;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
tlb->attr = (tlb->attr & 0x1) | (value & 0x0000FF00);
|
|
|
|
tlb->prot = tlb->prot & PAGE_VALID;
|
|
|
|
if (value & 0x1) {
|
|
|
|
tlb->prot |= PAGE_READ << 4;
|
|
|
|
}
|
|
|
|
if (value & 0x2) {
|
|
|
|
tlb->prot |= PAGE_WRITE << 4;
|
|
|
|
}
|
|
|
|
if (value & 0x4) {
|
|
|
|
tlb->prot |= PAGE_EXEC << 4;
|
|
|
|
}
|
|
|
|
if (value & 0x8) {
|
|
|
|
tlb->prot |= PAGE_READ;
|
|
|
|
}
|
|
|
|
if (value & 0x10) {
|
|
|
|
tlb->prot |= PAGE_WRITE;
|
|
|
|
}
|
|
|
|
if (value & 0x20) {
|
|
|
|
tlb->prot |= PAGE_EXEC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_440_tlbre(CPUPPCState *env, uint32_t word,
|
|
|
|
target_ulong entry)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcemb_tlb_t *tlb;
|
|
|
|
target_ulong ret;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
entry &= 0x3F;
|
|
|
|
tlb = &env->tlb.tlbe[entry];
|
|
|
|
switch (word) {
|
|
|
|
default:
|
|
|
|
/* Just here to please gcc */
|
|
|
|
case 0:
|
|
|
|
ret = tlb->EPN;
|
|
|
|
size = booke_page_size_to_tlb(tlb->size);
|
|
|
|
if (size < 0 || size > 0xF) {
|
|
|
|
size = 1;
|
|
|
|
}
|
|
|
|
ret |= size << 4;
|
|
|
|
if (tlb->attr & 0x1) {
|
|
|
|
ret |= 0x100;
|
|
|
|
}
|
|
|
|
if (tlb->prot & PAGE_VALID) {
|
|
|
|
ret |= 0x200;
|
|
|
|
}
|
|
|
|
env->spr[SPR_440_MMUCR] &= ~0x000000FF;
|
|
|
|
env->spr[SPR_440_MMUCR] |= tlb->PID;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
ret = tlb->RPN;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
ret = tlb->attr & ~0x1;
|
|
|
|
if (tlb->prot & (PAGE_READ << 4)) {
|
|
|
|
ret |= 0x1;
|
|
|
|
}
|
|
|
|
if (tlb->prot & (PAGE_WRITE << 4)) {
|
|
|
|
ret |= 0x2;
|
|
|
|
}
|
|
|
|
if (tlb->prot & (PAGE_EXEC << 4)) {
|
|
|
|
ret |= 0x4;
|
|
|
|
}
|
|
|
|
if (tlb->prot & PAGE_READ) {
|
|
|
|
ret |= 0x8;
|
|
|
|
}
|
|
|
|
if (tlb->prot & PAGE_WRITE) {
|
|
|
|
ret |= 0x10;
|
|
|
|
}
|
|
|
|
if (tlb->prot & PAGE_EXEC) {
|
|
|
|
ret |= 0x20;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
target_ulong helper_440_tlbsx(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
return ppcemb_tlb_search(env, address, env->spr[SPR_440_MMUCR] & 0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* PowerPC BookE 2.06 TLB management */
|
|
|
|
|
|
|
|
static ppcmas_tlb_t *booke206_cur_tlb(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
uint32_t tlbncfg = 0;
|
|
|
|
int esel = (env->spr[SPR_BOOKE_MAS0] & MAS0_ESEL_MASK) >> MAS0_ESEL_SHIFT;
|
|
|
|
int ea = (env->spr[SPR_BOOKE_MAS2] & MAS2_EPN_MASK);
|
|
|
|
int tlb;
|
|
|
|
|
|
|
|
tlb = (env->spr[SPR_BOOKE_MAS0] & MAS0_TLBSEL_MASK) >> MAS0_TLBSEL_SHIFT;
|
|
|
|
tlbncfg = env->spr[SPR_BOOKE_TLB0CFG + tlb];
|
|
|
|
|
|
|
|
if ((tlbncfg & TLBnCFG_HES) && (env->spr[SPR_BOOKE_MAS0] & MAS0_HES)) {
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "we don't support HES yet\n");
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return booke206_get_tlbm(env, tlb, ea, esel);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke_setpid(CPUPPCState *env, uint32_t pidn, target_ulong pid)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
env->spr[pidn] = pid;
|
|
|
|
/* changing PIDs mean we're in a different address space now */
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-21 08:59:07 +02:00
|
|
|
void helper_booke_set_eplc(CPUPPCState *env, target_ulong val)
|
|
|
|
{
|
|
|
|
env->spr[SPR_BOOKE_EPLC] = val & EPID_MASK;
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush_by_mmuidx(env_cpu(env), 1 << PPC_TLB_EPID_LOAD);
|
2018-09-21 08:59:07 +02:00
|
|
|
}
|
|
|
|
void helper_booke_set_epsc(CPUPPCState *env, target_ulong val)
|
|
|
|
{
|
|
|
|
env->spr[SPR_BOOKE_EPSC] = val & EPID_MASK;
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush_by_mmuidx(env_cpu(env), 1 << PPC_TLB_EPID_STORE);
|
2018-09-21 08:59:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 10:32:20 +01:00
|
|
|
static inline void flush_page(CPUPPCState *env, ppcmas_tlb_t *tlb)
|
|
|
|
{
|
|
|
|
if (booke206_tlb_to_page_size(env, tlb) == TARGET_PAGE_SIZE) {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush_page(env_cpu(env), tlb->mas2 & MAS2_EPN_MASK);
|
2018-01-15 10:32:20 +01:00
|
|
|
} else {
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2018-01-15 10:32:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbwe(CPUPPCState *env)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
uint32_t tlbncfg, tlbn;
|
|
|
|
ppcmas_tlb_t *tlb;
|
|
|
|
uint32_t size_tlb, size_ps;
|
2012-05-21 08:11:06 +02:00
|
|
|
target_ulong mask;
|
|
|
|
|
2012-05-30 06:23:30 +02:00
|
|
|
|
|
|
|
switch (env->spr[SPR_BOOKE_MAS0] & MAS0_WQ_MASK) {
|
|
|
|
case MAS0_WQ_ALWAYS:
|
|
|
|
/* good to go, write that entry */
|
|
|
|
break;
|
|
|
|
case MAS0_WQ_COND:
|
|
|
|
/* XXX check if reserved */
|
|
|
|
if (0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MAS0_WQ_CLR_RSRV:
|
|
|
|
/* XXX clear entry */
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
/* no idea what to do */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((env->spr[SPR_BOOKE_MAS0] & MAS0_ATSEL) == MAS0_ATSEL_LRAT) &&
|
|
|
|
!msr_gs) {
|
|
|
|
/* XXX we don't support direct LRAT setting yet */
|
|
|
|
fprintf(stderr, "cpu: don't support LRAT setting yet\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tlbn = (env->spr[SPR_BOOKE_MAS0] & MAS0_TLBSEL_MASK) >> MAS0_TLBSEL_SHIFT;
|
|
|
|
tlbncfg = env->spr[SPR_BOOKE_TLB0CFG + tlbn];
|
|
|
|
|
|
|
|
tlb = booke206_cur_tlb(env);
|
|
|
|
|
|
|
|
if (!tlb) {
|
2016-07-27 08:56:37 +02:00
|
|
|
raise_exception_err_ra(env, POWERPC_EXCP_PROGRAM,
|
|
|
|
POWERPC_EXCP_INVAL |
|
|
|
|
POWERPC_EXCP_INVAL_INVAL, GETPC());
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check that we support the targeted size */
|
|
|
|
size_tlb = (env->spr[SPR_BOOKE_MAS1] & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
|
|
|
|
size_ps = booke206_tlbnps(env, tlbn);
|
|
|
|
if ((env->spr[SPR_BOOKE_MAS1] & MAS1_VALID) && (tlbncfg & TLBnCFG_AVAIL) &&
|
|
|
|
!(size_ps & (1 << size_tlb))) {
|
2016-07-27 08:56:37 +02:00
|
|
|
raise_exception_err_ra(env, POWERPC_EXCP_PROGRAM,
|
|
|
|
POWERPC_EXCP_INVAL |
|
|
|
|
POWERPC_EXCP_INVAL_INVAL, GETPC());
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (msr_gs) {
|
2019-03-23 03:07:57 +01:00
|
|
|
cpu_abort(env_cpu(env), "missing HV implementation\n");
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
2018-01-15 10:32:20 +01:00
|
|
|
|
|
|
|
if (tlb->mas1 & MAS1_VALID) {
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Invalidate the page in QEMU TLB if it was a valid entry.
|
2018-01-15 10:32:20 +01:00
|
|
|
*
|
|
|
|
* In "PowerPC e500 Core Family Reference Manual, Rev. 1",
|
|
|
|
* Section "12.4.2 TLB Write Entry (tlbwe) Instruction":
|
|
|
|
* (https://www.nxp.com/docs/en/reference-manual/E500CORERM.pdf)
|
|
|
|
*
|
|
|
|
* "Note that when an L2 TLB entry is written, it may be displacing an
|
|
|
|
* already valid entry in the same L2 TLB location (a victim). If a
|
|
|
|
* valid L1 TLB entry corresponds to the L2 MMU victim entry, that L1
|
2019-03-21 12:36:09 +01:00
|
|
|
* TLB entry is automatically invalidated."
|
|
|
|
*/
|
2018-01-15 10:32:20 +01:00
|
|
|
flush_page(env, tlb);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:30 +02:00
|
|
|
tlb->mas7_3 = ((uint64_t)env->spr[SPR_BOOKE_MAS7] << 32) |
|
|
|
|
env->spr[SPR_BOOKE_MAS3];
|
|
|
|
tlb->mas1 = env->spr[SPR_BOOKE_MAS1];
|
|
|
|
|
2017-08-07 17:50:46 +02:00
|
|
|
if ((env->spr[SPR_MMUCFG] & MMUCFG_MAVN) == MMUCFG_MAVN_V2) {
|
|
|
|
/* For TLB which has a fixed size TSIZE is ignored with MAV2 */
|
|
|
|
booke206_fixed_size_tlbn(env, tlbn, tlb);
|
|
|
|
} else {
|
|
|
|
if (!(tlbncfg & TLBnCFG_AVAIL)) {
|
|
|
|
/* force !AVAIL TLB entries to correct page size */
|
|
|
|
tlb->mas1 &= ~MAS1_TSIZE_MASK;
|
|
|
|
/* XXX can be configured in MMUCSR0 */
|
|
|
|
tlb->mas1 |= (tlbncfg & TLBnCFG_MINSIZE) >> 12;
|
|
|
|
}
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2012-05-21 08:11:06 +02:00
|
|
|
/* Make a mask from TLB size to discard invalid bits in EPN field */
|
|
|
|
mask = ~(booke206_tlb_to_page_size(env, tlb) - 1);
|
|
|
|
/* Add a mask for page attributes */
|
|
|
|
mask |= MAS2_ACM | MAS2_VLE | MAS2_W | MAS2_I | MAS2_M | MAS2_G | MAS2_E;
|
|
|
|
|
|
|
|
if (!msr_cm) {
|
2019-03-21 12:36:09 +01:00
|
|
|
/*
|
|
|
|
* Executing a tlbwe instruction in 32-bit mode will set bits
|
|
|
|
* 0:31 of the TLB EPN field to zero.
|
2012-05-21 08:11:06 +02:00
|
|
|
*/
|
|
|
|
mask &= 0xffffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
tlb->mas2 = env->spr[SPR_BOOKE_MAS2] & mask;
|
2012-05-30 06:23:30 +02:00
|
|
|
|
|
|
|
if (!(tlbncfg & TLBnCFG_IPROT)) {
|
|
|
|
/* no IPROT supported by TLB */
|
|
|
|
tlb->mas1 &= ~MAS1_IPROT;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:32:20 +01:00
|
|
|
flush_page(env, tlb);
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void booke206_tlb_to_mas(CPUPPCState *env, ppcmas_tlb_t *tlb)
|
|
|
|
{
|
|
|
|
int tlbn = booke206_tlbm_to_tlbn(env, tlb);
|
|
|
|
int way = booke206_tlbm_to_way(env, tlb);
|
|
|
|
|
|
|
|
env->spr[SPR_BOOKE_MAS0] = tlbn << MAS0_TLBSEL_SHIFT;
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= way << MAS0_ESEL_SHIFT;
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT;
|
|
|
|
|
|
|
|
env->spr[SPR_BOOKE_MAS1] = tlb->mas1;
|
|
|
|
env->spr[SPR_BOOKE_MAS2] = tlb->mas2;
|
|
|
|
env->spr[SPR_BOOKE_MAS3] = tlb->mas7_3;
|
|
|
|
env->spr[SPR_BOOKE_MAS7] = tlb->mas7_3 >> 32;
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbre(CPUPPCState *env)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcmas_tlb_t *tlb = NULL;
|
|
|
|
|
|
|
|
tlb = booke206_cur_tlb(env);
|
|
|
|
if (!tlb) {
|
|
|
|
env->spr[SPR_BOOKE_MAS1] = 0;
|
|
|
|
} else {
|
|
|
|
booke206_tlb_to_mas(env, tlb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbsx(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
ppcmas_tlb_t *tlb = NULL;
|
|
|
|
int i, j;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr raddr;
|
2012-05-30 06:23:30 +02:00
|
|
|
uint32_t spid, sas;
|
|
|
|
|
|
|
|
spid = (env->spr[SPR_BOOKE_MAS6] & MAS6_SPID_MASK) >> MAS6_SPID_SHIFT;
|
|
|
|
sas = env->spr[SPR_BOOKE_MAS6] & MAS6_SAS;
|
|
|
|
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
int ways = booke206_tlb_ways(env, i);
|
|
|
|
|
|
|
|
for (j = 0; j < ways; j++) {
|
|
|
|
tlb = booke206_get_tlbm(env, i, address, j);
|
|
|
|
|
|
|
|
if (!tlb) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ppcmas_tlb_check(env, tlb, &raddr, address, spid)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sas != ((tlb->mas1 & MAS1_TS) >> MAS1_TS_SHIFT)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
booke206_tlb_to_mas(env, tlb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no entry found, fill with defaults */
|
|
|
|
env->spr[SPR_BOOKE_MAS0] = env->spr[SPR_BOOKE_MAS4] & MAS4_TLBSELD_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS1] = env->spr[SPR_BOOKE_MAS4] & MAS4_TSIZED_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS2] = env->spr[SPR_BOOKE_MAS4] & MAS4_WIMGED_MASK;
|
|
|
|
env->spr[SPR_BOOKE_MAS3] = 0;
|
|
|
|
env->spr[SPR_BOOKE_MAS7] = 0;
|
|
|
|
|
|
|
|
if (env->spr[SPR_BOOKE_MAS6] & MAS6_SAS) {
|
|
|
|
env->spr[SPR_BOOKE_MAS1] |= MAS1_TS;
|
|
|
|
}
|
|
|
|
|
|
|
|
env->spr[SPR_BOOKE_MAS1] |= (env->spr[SPR_BOOKE_MAS6] >> 16)
|
|
|
|
<< MAS1_TID_SHIFT;
|
|
|
|
|
|
|
|
/* next victim logic */
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_ESEL_SHIFT;
|
|
|
|
env->last_way++;
|
|
|
|
env->last_way &= booke206_tlb_ways(env, 0) - 1;
|
|
|
|
env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void booke206_invalidate_ea_tlb(CPUPPCState *env, int tlbn,
|
|
|
|
uint32_t ea)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ways = booke206_tlb_ways(env, tlbn);
|
|
|
|
target_ulong mask;
|
|
|
|
|
|
|
|
for (i = 0; i < ways; i++) {
|
|
|
|
ppcmas_tlb_t *tlb = booke206_get_tlbm(env, tlbn, ea, i);
|
|
|
|
if (!tlb) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
mask = ~(booke206_tlb_to_page_size(env, tlb) - 1);
|
|
|
|
if (((tlb->mas2 & MAS2_EPN_MASK) == (ea & mask)) &&
|
|
|
|
!(tlb->mas1 & MAS1_IPROT)) {
|
|
|
|
tlb->mas1 &= ~MAS1_VALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbivax(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
2016-09-20 18:35:01 +02:00
|
|
|
CPUState *cs;
|
2013-09-04 01:29:02 +02:00
|
|
|
|
2012-05-30 06:23:30 +02:00
|
|
|
if (address & 0x4) {
|
|
|
|
/* flush all entries */
|
|
|
|
if (address & 0x8) {
|
|
|
|
/* flush all of TLB1 */
|
|
|
|
booke206_flush_tlb(env, BOOKE206_FLUSH_TLB1, 1);
|
|
|
|
} else {
|
|
|
|
/* flush all of TLB0 */
|
|
|
|
booke206_flush_tlb(env, BOOKE206_FLUSH_TLB0, 0);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (address & 0x8) {
|
|
|
|
/* flush TLB1 entries */
|
|
|
|
booke206_invalidate_ea_tlb(env, 1, address);
|
2016-09-20 18:35:01 +02:00
|
|
|
CPU_FOREACH(cs) {
|
2016-11-14 15:17:28 +01:00
|
|
|
tlb_flush(cs);
|
2016-09-20 18:35:01 +02:00
|
|
|
}
|
2012-05-30 06:23:30 +02:00
|
|
|
} else {
|
|
|
|
/* flush TLB0 entries */
|
|
|
|
booke206_invalidate_ea_tlb(env, 0, address);
|
2016-09-20 18:35:01 +02:00
|
|
|
CPU_FOREACH(cs) {
|
|
|
|
tlb_flush_page(cs, address & MAS2_EPN_MASK);
|
|
|
|
}
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbilx0(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
/* XXX missing LPID handling */
|
|
|
|
booke206_flush_tlb(env, -1, 1);
|
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbilx1(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int tid = (env->spr[SPR_BOOKE_MAS6] & MAS6_SPID);
|
|
|
|
ppcmas_tlb_t *tlb = env->tlb.tlbm;
|
|
|
|
int tlb_size;
|
|
|
|
|
|
|
|
/* XXX missing LPID handling */
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
tlb_size = booke206_tlb_size(env, i);
|
|
|
|
for (j = 0; j < tlb_size; j++) {
|
|
|
|
if (!(tlb[j].mas1 & MAS1_IPROT) &&
|
|
|
|
((tlb[j].mas1 & MAS1_TID_MASK) == tid)) {
|
|
|
|
tlb[j].mas1 &= ~MAS1_VALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tlb += booke206_tlb_size(env, i);
|
|
|
|
}
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2012-05-30 06:23:31 +02:00
|
|
|
void helper_booke206_tlbilx3(CPUPPCState *env, target_ulong address)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
ppcmas_tlb_t *tlb;
|
|
|
|
int tid = (env->spr[SPR_BOOKE_MAS6] & MAS6_SPID);
|
|
|
|
int pid = tid >> MAS6_SPID_SHIFT;
|
|
|
|
int sgs = env->spr[SPR_BOOKE_MAS5] & MAS5_SGS;
|
|
|
|
int ind = (env->spr[SPR_BOOKE_MAS6] & MAS6_SIND) ? MAS1_IND : 0;
|
|
|
|
/* XXX check for unsupported isize and raise an invalid opcode then */
|
|
|
|
int size = env->spr[SPR_BOOKE_MAS6] & MAS6_ISIZE_MASK;
|
|
|
|
/* XXX implement MAV2 handling */
|
|
|
|
bool mav2 = false;
|
|
|
|
|
|
|
|
/* XXX missing LPID handling */
|
|
|
|
/* flush by pid and ea */
|
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
int ways = booke206_tlb_ways(env, i);
|
|
|
|
|
|
|
|
for (j = 0; j < ways; j++) {
|
|
|
|
tlb = booke206_get_tlbm(env, i, address, j);
|
|
|
|
if (!tlb) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((ppcmas_tlb_check(env, tlb, NULL, address, pid) != 0) ||
|
|
|
|
(tlb->mas1 & MAS1_IPROT) ||
|
|
|
|
((tlb->mas1 & MAS1_IND) != ind) ||
|
|
|
|
((tlb->mas8 & MAS8_TGS) != sgs)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (mav2 && ((tlb->mas1 & MAS1_TSIZE_MASK) != size)) {
|
|
|
|
/* XXX only check when MMUCFG[TWC] || TLBnCFG[HES] */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* XXX e500mc doesn't match SAS, but other cores might */
|
|
|
|
tlb->mas1 &= ~MAS1_VALID;
|
|
|
|
}
|
|
|
|
}
|
2019-03-23 03:07:57 +01:00
|
|
|
tlb_flush(env_cpu(env));
|
2012-05-30 06:23:30 +02:00
|
|
|
}
|
|
|
|
|
2014-05-28 19:25:36 +02:00
|
|
|
void helper_booke206_tlbflush(CPUPPCState *env, target_ulong type)
|
2012-05-30 06:23:30 +02:00
|
|
|
{
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
if (type & 2) {
|
|
|
|
flags |= BOOKE206_FLUSH_TLB1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type & 4) {
|
|
|
|
flags |= BOOKE206_FLUSH_TLB0;
|
|
|
|
}
|
|
|
|
|
|
|
|
booke206_flush_tlb(env, flags, 1);
|
|
|
|
}
|
2013-03-12 01:31:49 +01:00
|
|
|
|
|
|
|
|
2016-09-20 18:35:00 +02:00
|
|
|
void helper_check_tlb_flush_local(CPUPPCState *env)
|
ppc: Do some batching of TCG tlb flushes
On ppc64 especially, we flush the tlb on any slbie or tlbie instruction.
However, those instructions often come in bursts of 3 or more (context
switch will favor a series of slbie's for example to an slbia if the
SLB has less than a certain number of entries in it, and tlbie's can
happen in a series, with PAPR, H_BULK_REMOVE can remove up to 4 entries
at a time.
Doing a tlb_flush() each time is a waste of time. We end up doing a memset
of the whole TLB, reloading it for the next instruction, memset'ing again,
etc...
Those instructions don't have to take effect immediately. For slbie, they
can wait for the next context synchronizing event. For tlbie, the next
tlbsync.
This implements batching by keeping a flag that indicates that we have a
TLB in need of flushing. We check it on interrupts, rfi's, isync's and
tlbsync and flush the TLB if needed.
This reduces the number of tlb_flush() on a boot to a ubuntu installer
first dialog screen from roughly 360K down to 36K.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
[clg: added a 'CPUPPCState *' variable in h_remove() and
h_bulk_remove() ]
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: removed spurious whitespace change, use 0/1 not true/false
consistently, since tlb_need_flush has int type]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-05-03 18:03:25 +02:00
|
|
|
{
|
2016-09-20 18:35:00 +02:00
|
|
|
check_tlb_flush(env, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void helper_check_tlb_flush_global(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
check_tlb_flush(env, true);
|
ppc: Do some batching of TCG tlb flushes
On ppc64 especially, we flush the tlb on any slbie or tlbie instruction.
However, those instructions often come in bursts of 3 or more (context
switch will favor a series of slbie's for example to an slbia if the
SLB has less than a certain number of entries in it, and tlbie's can
happen in a series, with PAPR, H_BULK_REMOVE can remove up to 4 entries
at a time.
Doing a tlb_flush() each time is a waste of time. We end up doing a memset
of the whole TLB, reloading it for the next instruction, memset'ing again,
etc...
Those instructions don't have to take effect immediately. For slbie, they
can wait for the next context synchronizing event. For tlbie, the next
tlbsync.
This implements batching by keeping a flag that indicates that we have a
TLB in need of flushing. We check it on interrupts, rfi's, isync's and
tlbsync and flush the TLB if needed.
This reduces the number of tlb_flush() on a boot to a ubuntu installer
first dialog screen from roughly 360K down to 36K.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
[clg: added a 'CPUPPCState *' variable in h_remove() and
h_bulk_remove() ]
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: removed spurious whitespace change, use 0/1 not true/false
consistently, since tlb_need_flush has int type]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-05-03 18:03:25 +02:00
|
|
|
}
|
2021-05-25 13:53:53 +02:00
|
|
|
#endif /* CONFIG_TCG */
|
ppc: Do some batching of TCG tlb flushes
On ppc64 especially, we flush the tlb on any slbie or tlbie instruction.
However, those instructions often come in bursts of 3 or more (context
switch will favor a series of slbie's for example to an slbia if the
SLB has less than a certain number of entries in it, and tlbie's can
happen in a series, with PAPR, H_BULK_REMOVE can remove up to 4 entries
at a time.
Doing a tlb_flush() each time is a waste of time. We end up doing a memset
of the whole TLB, reloading it for the next instruction, memset'ing again,
etc...
Those instructions don't have to take effect immediately. For slbie, they
can wait for the next context synchronizing event. For tlbie, the next
tlbsync.
This implements batching by keeping a flag that indicates that we have a
TLB in need of flushing. We check it on interrupts, rfi's, isync's and
tlbsync and flush the TLB if needed.
This reduces the number of tlb_flush() on a boot to a ubuntu installer
first dialog screen from roughly 360K down to 36K.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
[clg: added a 'CPUPPCState *' variable in h_remove() and
h_bulk_remove() ]
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: removed spurious whitespace change, use 0/1 not true/false
consistently, since tlb_need_flush has int type]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-05-03 18:03:25 +02:00
|
|
|
|
2013-03-12 01:31:49 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
2021-06-21 14:51:13 +02:00
|
|
|
static bool ppc_xlate(PowerPCCPU *cpu, vaddr eaddr, MMUAccessType access_type,
|
|
|
|
hwaddr *raddrp, int *psizep, int *protp,
|
|
|
|
int mmu_idx, bool guest_visible)
|
2021-06-21 14:51:12 +02:00
|
|
|
{
|
2021-06-21 14:51:13 +02:00
|
|
|
switch (cpu->env.mmu_model) {
|
2021-06-21 14:51:12 +02:00
|
|
|
#if defined(TARGET_PPC64)
|
2021-06-21 14:51:13 +02:00
|
|
|
case POWERPC_MMU_3_00:
|
|
|
|
if (ppc64_v3_radix(cpu)) {
|
|
|
|
return ppc_radix64_xlate(cpu, eaddr, access_type,
|
target/ppc: fix address translation bug for radix mmus
This commit attempts to fix a technical hiccup first mentioned by Richard
Henderson in
https://lists.nongnu.org/archive/html/qemu-devel/2021-05/msg06247.html
To sumarize the hiccup here, when radix-style mmus are translating an
address, they might need to call a second level of translation, with
hypervisor privileges. However, the way it was being done up until
this point meant that the second level translation had the same
privileges as the first level. It could lead to a bug in address
translation when running KVM inside a TCG guest, but this bug was never
experienced by users, so this isn't as much a bug fix as it is a
correctness cleanup.
This patch attempts that cleanup by making radix64_*_xlate functions
receive the mmu_idx, and passing one with the correct permission for the
second level translation.
The mmuidx macros added by this patch are only correct for non-bookE
mmus, because BookE style set the IS and DS bits inverted and there
might be other subtle differences. However, there doesn't seem to be
BookE cpus that have radix-style mmus, so we left a comment there to
document the issue, in case a machine does have that and was missed.
As part of this cleanup, we now need to send the correct mmmu_idx
when calling get_phys_page_debug, otherwise we might not be able to see the
memory that the CPU could
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Tested-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20210628133610.1143-2-bruno.larsen@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2021-06-28 15:36:08 +02:00
|
|
|
raddrp, psizep, protp, mmu_idx, guest_visible);
|
2021-06-21 14:51:13 +02:00
|
|
|
}
|
|
|
|
/* fall through */
|
2021-06-21 14:51:12 +02:00
|
|
|
case POWERPC_MMU_64B:
|
|
|
|
case POWERPC_MMU_2_03:
|
|
|
|
case POWERPC_MMU_2_06:
|
|
|
|
case POWERPC_MMU_2_07:
|
2021-06-21 14:51:13 +02:00
|
|
|
return ppc_hash64_xlate(cpu, eaddr, access_type,
|
2021-06-28 15:36:10 +02:00
|
|
|
raddrp, psizep, protp, mmu_idx, guest_visible);
|
2021-06-21 14:51:12 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
case POWERPC_MMU_32B:
|
|
|
|
case POWERPC_MMU_601:
|
2021-06-21 14:51:13 +02:00
|
|
|
return ppc_hash32_xlate(cpu, eaddr, access_type,
|
2021-07-06 17:03:16 +02:00
|
|
|
raddrp, psizep, protp, mmu_idx, guest_visible);
|
2021-06-21 14:51:12 +02:00
|
|
|
|
|
|
|
default:
|
2021-06-21 14:51:13 +02:00
|
|
|
return ppc_jumbo_xlate(cpu, eaddr, access_type, raddrp,
|
|
|
|
psizep, protp, mmu_idx, guest_visible);
|
2021-06-21 14:51:12 +02:00
|
|
|
}
|
2021-06-21 14:51:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hwaddr ppc_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
hwaddr raddr;
|
|
|
|
int s, p;
|
2021-06-21 14:51:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Some MMUs have separate TLBs for code and data. If we only
|
|
|
|
* try an MMU_DATA_LOAD, we may not be able to read instructions
|
|
|
|
* mapped by code TLBs, so we also try a MMU_INST_FETCH.
|
|
|
|
*/
|
target/ppc: fix address translation bug for radix mmus
This commit attempts to fix a technical hiccup first mentioned by Richard
Henderson in
https://lists.nongnu.org/archive/html/qemu-devel/2021-05/msg06247.html
To sumarize the hiccup here, when radix-style mmus are translating an
address, they might need to call a second level of translation, with
hypervisor privileges. However, the way it was being done up until
this point meant that the second level translation had the same
privileges as the first level. It could lead to a bug in address
translation when running KVM inside a TCG guest, but this bug was never
experienced by users, so this isn't as much a bug fix as it is a
correctness cleanup.
This patch attempts that cleanup by making radix64_*_xlate functions
receive the mmu_idx, and passing one with the correct permission for the
second level translation.
The mmuidx macros added by this patch are only correct for non-bookE
mmus, because BookE style set the IS and DS bits inverted and there
might be other subtle differences. However, there doesn't seem to be
BookE cpus that have radix-style mmus, so we left a comment there to
document the issue, in case a machine does have that and was missed.
As part of this cleanup, we now need to send the correct mmmu_idx
when calling get_phys_page_debug, otherwise we might not be able to see the
memory that the CPU could
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Tested-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20210628133610.1143-2-bruno.larsen@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2021-06-28 15:36:08 +02:00
|
|
|
if (ppc_xlate(cpu, addr, MMU_DATA_LOAD, &raddr, &s, &p,
|
|
|
|
cpu_mmu_index(&cpu->env, false), false) ||
|
|
|
|
ppc_xlate(cpu, addr, MMU_INST_FETCH, &raddr, &s, &p,
|
|
|
|
cpu_mmu_index(&cpu->env, true), false)) {
|
2021-06-21 14:51:12 +02:00
|
|
|
return raddr & TARGET_PAGE_MASK;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-06-21 14:51:14 +02:00
|
|
|
#ifdef CONFIG_TCG
|
2021-06-21 14:51:13 +02:00
|
|
|
bool ppc_cpu_tlb_fill(CPUState *cs, vaddr eaddr, int size,
|
2019-04-02 12:03:41 +02:00
|
|
|
MMUAccessType access_type, int mmu_idx,
|
|
|
|
bool probe, uintptr_t retaddr)
|
2013-03-12 01:31:49 +01:00
|
|
|
{
|
2013-08-27 00:28:06 +02:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
2021-06-21 14:51:13 +02:00
|
|
|
hwaddr raddr;
|
|
|
|
int page_size, prot;
|
2021-06-21 14:51:06 +02:00
|
|
|
|
2021-06-21 14:51:13 +02:00
|
|
|
if (ppc_xlate(cpu, eaddr, access_type, &raddr,
|
|
|
|
&page_size, &prot, mmu_idx, !probe)) {
|
|
|
|
tlb_set_page(cs, eaddr & TARGET_PAGE_MASK, raddr & TARGET_PAGE_MASK,
|
|
|
|
prot, mmu_idx, 1UL << page_size);
|
|
|
|
return true;
|
2013-03-13 01:40:33 +01:00
|
|
|
}
|
2021-06-21 14:51:13 +02:00
|
|
|
if (probe) {
|
|
|
|
return false;
|
2013-03-12 01:31:49 +01:00
|
|
|
}
|
2021-06-21 14:51:13 +02:00
|
|
|
raise_exception_err_ra(&cpu->env, cs->exception_index,
|
|
|
|
cpu->env.error_code, retaddr);
|
2019-04-02 12:03:41 +02:00
|
|
|
}
|
2021-06-21 14:51:14 +02:00
|
|
|
#endif
|