|
|
26ba25 |
From 3b97963ddb435e25f758032691cb2315570a2093 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: David Gibson <dgibson@redhat.com>
|
|
|
26ba25 |
Date: Mon, 12 Nov 2018 01:28:32 +0000
|
|
|
26ba25 |
Subject: [PATCH 01/16] target/ppc: add basic support for PTCR on POWER9
|
|
|
26ba25 |
MIME-Version: 1.0
|
|
|
26ba25 |
Content-Type: text/plain; charset=UTF-8
|
|
|
26ba25 |
Content-Transfer-Encoding: 8bit
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: David Gibson <dgibson@redhat.com>
|
|
|
26ba25 |
Message-id: <20181112012835.21863-2-dgibson@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 82978
|
|
|
26ba25 |
O-Subject: [RHEL-8 qemu-kvm PATCH 1/4] target/ppc: add basic support for PTCR on POWER9
|
|
|
26ba25 |
Bugzilla: 1639069
|
|
|
26ba25 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Serhii Popovych <spopovyc@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
From: Cédric Le Goater <clg@kaod.org>
|
|
|
26ba25 |
|
|
|
26ba25 |
The Partition Table Control Register (PTCR) is a hypervisor privileged
|
|
|
26ba25 |
SPR. It contains the host real address of the Partition Table and its
|
|
|
26ba25 |
size.
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Cédric Le Goater <clg@kaod.org>
|
|
|
26ba25 |
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
|
|
26ba25 |
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
|
|
|
26ba25 |
(cherry picked from commit 4a7518e0fdaa20525730ae0709a4afa0960a6c67)
|
|
|
26ba25 |
|
|
|
26ba25 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1639069
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: David Gibson <dgibson@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
target/ppc/cpu.h | 2 ++
|
|
|
26ba25 |
target/ppc/helper.h | 1 +
|
|
|
26ba25 |
target/ppc/misc_helper.c | 12 ++++++++++++
|
|
|
26ba25 |
target/ppc/mmu-book3s-v3.h | 6 ++++++
|
|
|
26ba25 |
target/ppc/mmu_helper.c | 29 +++++++++++++++++++++++++++++
|
|
|
26ba25 |
target/ppc/translate.c | 3 +++
|
|
|
26ba25 |
target/ppc/translate_init.c | 18 ++++++++++++++++++
|
|
|
26ba25 |
7 files changed, 71 insertions(+)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
|
|
|
26ba25 |
index 1932c2e..8f3cf44 100644
|
|
|
26ba25 |
--- a/target/ppc/cpu.h
|
|
|
26ba25 |
+++ b/target/ppc/cpu.h
|
|
|
26ba25 |
@@ -1313,6 +1313,7 @@ int ppc_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int size, int rw,
|
|
|
26ba25 |
|
|
|
26ba25 |
#if !defined(CONFIG_USER_ONLY)
|
|
|
26ba25 |
void ppc_store_sdr1 (CPUPPCState *env, target_ulong value);
|
|
|
26ba25 |
+void ppc_store_ptcr(CPUPPCState *env, target_ulong value);
|
|
|
26ba25 |
#endif /* !defined(CONFIG_USER_ONLY) */
|
|
|
26ba25 |
void ppc_store_msr (CPUPPCState *env, target_ulong value);
|
|
|
26ba25 |
|
|
|
26ba25 |
@@ -1604,6 +1605,7 @@ void ppc_compat_add_property(Object *obj, const char *name,
|
|
|
26ba25 |
#define SPR_BOOKE_GIVOR13 (0x1BC)
|
|
|
26ba25 |
#define SPR_BOOKE_GIVOR14 (0x1BD)
|
|
|
26ba25 |
#define SPR_TIR (0x1BE)
|
|
|
26ba25 |
+#define SPR_PTCR (0x1D0)
|
|
|
26ba25 |
#define SPR_BOOKE_SPEFSCR (0x200)
|
|
|
26ba25 |
#define SPR_Exxx_BBEAR (0x201)
|
|
|
26ba25 |
#define SPR_Exxx_BBTAR (0x202)
|
|
|
26ba25 |
diff --git a/target/ppc/helper.h b/target/ppc/helper.h
|
|
|
26ba25 |
index 5b73917..19453c6 100644
|
|
|
26ba25 |
--- a/target/ppc/helper.h
|
|
|
26ba25 |
+++ b/target/ppc/helper.h
|
|
|
26ba25 |
@@ -709,6 +709,7 @@ DEF_HELPER_FLAGS_1(load_601_rtcu, TCG_CALL_NO_RWG, tl, env)
|
|
|
26ba25 |
#if !defined(CONFIG_USER_ONLY)
|
|
|
26ba25 |
#if defined(TARGET_PPC64)
|
|
|
26ba25 |
DEF_HELPER_FLAGS_1(load_purr, TCG_CALL_NO_RWG, tl, env)
|
|
|
26ba25 |
+DEF_HELPER_2(store_ptcr, void, env, tl)
|
|
|
26ba25 |
#endif
|
|
|
26ba25 |
DEF_HELPER_2(store_sdr1, void, env, tl)
|
|
|
26ba25 |
DEF_HELPER_2(store_pidr, void, env, tl)
|
|
|
26ba25 |
diff --git a/target/ppc/misc_helper.c b/target/ppc/misc_helper.c
|
|
|
26ba25 |
index 0e42178..8c8cba5 100644
|
|
|
26ba25 |
--- a/target/ppc/misc_helper.c
|
|
|
26ba25 |
+++ b/target/ppc/misc_helper.c
|
|
|
26ba25 |
@@ -88,6 +88,18 @@ void helper_store_sdr1(CPUPPCState *env, target_ulong val)
|
|
|
26ba25 |
}
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
+#if defined(TARGET_PPC64)
|
|
|
26ba25 |
+void helper_store_ptcr(CPUPPCState *env, target_ulong val)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+ PowerPCCPU *cpu = ppc_env_get_cpu(env);
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ if (env->spr[SPR_PTCR] != val) {
|
|
|
26ba25 |
+ ppc_store_ptcr(env, val);
|
|
|
26ba25 |
+ tlb_flush(CPU(cpu));
|
|
|
26ba25 |
+ }
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+#endif /* defined(TARGET_PPC64) */
|
|
|
26ba25 |
+
|
|
|
26ba25 |
void helper_store_pidr(CPUPPCState *env, target_ulong val)
|
|
|
26ba25 |
{
|
|
|
26ba25 |
PowerPCCPU *cpu = ppc_env_get_cpu(env);
|
|
|
26ba25 |
diff --git a/target/ppc/mmu-book3s-v3.h b/target/ppc/mmu-book3s-v3.h
|
|
|
26ba25 |
index 56095da..fdf8098 100644
|
|
|
26ba25 |
--- a/target/ppc/mmu-book3s-v3.h
|
|
|
26ba25 |
+++ b/target/ppc/mmu-book3s-v3.h
|
|
|
26ba25 |
@@ -22,6 +22,12 @@
|
|
|
26ba25 |
|
|
|
26ba25 |
#ifndef CONFIG_USER_ONLY
|
|
|
26ba25 |
|
|
|
26ba25 |
+/*
|
|
|
26ba25 |
+ * Partition table definitions
|
|
|
26ba25 |
+ */
|
|
|
26ba25 |
+#define PTCR_PATB 0x0FFFFFFFFFFFF000ULL /* Partition Table Base */
|
|
|
26ba25 |
+#define PTCR_PATS 0x000000000000001FULL /* Partition Table Size */
|
|
|
26ba25 |
+
|
|
|
26ba25 |
/* Partition Table Entry Fields */
|
|
|
26ba25 |
#define PATBE1_GR 0x8000000000000000
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c
|
|
|
26ba25 |
index 5568d16..e2197a5 100644
|
|
|
26ba25 |
--- a/target/ppc/mmu_helper.c
|
|
|
26ba25 |
+++ b/target/ppc/mmu_helper.c
|
|
|
26ba25 |
@@ -2028,6 +2028,35 @@ void ppc_store_sdr1(CPUPPCState *env, target_ulong value)
|
|
|
26ba25 |
env->spr[SPR_SDR1] = value;
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
+#if defined(TARGET_PPC64)
|
|
|
26ba25 |
+void ppc_store_ptcr(CPUPPCState *env, target_ulong value)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+ PowerPCCPU *cpu = ppc_env_get_cpu(env);
|
|
|
26ba25 |
+ target_ulong ptcr_mask = PTCR_PATB | PTCR_PATS;
|
|
|
26ba25 |
+ target_ulong patbsize = value & PTCR_PATS;
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ qemu_log_mask(CPU_LOG_MMU, "%s: " TARGET_FMT_lx "\n", __func__, value);
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ assert(!cpu->vhyp);
|
|
|
26ba25 |
+ assert(env->mmu_model & POWERPC_MMU_3_00);
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ if (value & ~ptcr_mask) {
|
|
|
26ba25 |
+ error_report("Invalid bits 0x"TARGET_FMT_lx" set in PTCR",
|
|
|
26ba25 |
+ value & ~ptcr_mask);
|
|
|
26ba25 |
+ value &= ptcr_mask;
|
|
|
26ba25 |
+ }
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ if (patbsize > 24) {
|
|
|
26ba25 |
+ error_report("Invalid Partition Table size 0x" TARGET_FMT_lx
|
|
|
26ba25 |
+ " stored in PTCR", patbsize);
|
|
|
26ba25 |
+ return;
|
|
|
26ba25 |
+ }
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ env->spr[SPR_PTCR] = value;
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+#endif /* defined(TARGET_PPC64) */
|
|
|
26ba25 |
+
|
|
|
26ba25 |
/* Segment registers load and store */
|
|
|
26ba25 |
target_ulong helper_load_sr(CPUPPCState *env, target_ulong sr_num)
|
|
|
26ba25 |
{
|
|
|
26ba25 |
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
|
|
|
26ba25 |
index 3457d29..7da9b67 100644
|
|
|
26ba25 |
--- a/target/ppc/translate.c
|
|
|
26ba25 |
+++ b/target/ppc/translate.c
|
|
|
26ba25 |
@@ -7136,6 +7136,9 @@ void ppc_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
|
|
|
26ba25 |
if (env->spr_cb[SPR_SDR1].name) { /* SDR1 Exists */
|
|
|
26ba25 |
cpu_fprintf(f, " SDR1 " TARGET_FMT_lx " ", env->spr[SPR_SDR1]);
|
|
|
26ba25 |
}
|
|
|
26ba25 |
+ if (env->spr_cb[SPR_PTCR].name) { /* PTCR Exists */
|
|
|
26ba25 |
+ cpu_fprintf(f, " PTCR " TARGET_FMT_lx " ", env->spr[SPR_PTCR]);
|
|
|
26ba25 |
+ }
|
|
|
26ba25 |
cpu_fprintf(f, " DAR " TARGET_FMT_lx " DSISR " TARGET_FMT_lx "\n",
|
|
|
26ba25 |
env->spr[SPR_DAR], env->spr[SPR_DSISR]);
|
|
|
26ba25 |
break;
|
|
|
26ba25 |
diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c
|
|
|
26ba25 |
index 17b06c7..926efbc 100644
|
|
|
26ba25 |
--- a/target/ppc/translate_init.c
|
|
|
26ba25 |
+++ b/target/ppc/translate_init.c
|
|
|
26ba25 |
@@ -420,6 +420,11 @@ static void spr_write_hior(DisasContext *ctx, int sprn, int gprn)
|
|
|
26ba25 |
tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, excp_prefix));
|
|
|
26ba25 |
tcg_temp_free(t0);
|
|
|
26ba25 |
}
|
|
|
26ba25 |
+static void spr_write_ptcr(DisasContext *ctx, int sprn, int gprn)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+ gen_helper_store_ptcr(cpu_env, cpu_gpr[gprn]);
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
#endif
|
|
|
26ba25 |
#endif
|
|
|
26ba25 |
|
|
|
26ba25 |
@@ -8167,6 +8172,18 @@ static void gen_spr_power8_rpr(CPUPPCState *env)
|
|
|
26ba25 |
#endif
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
+static void gen_spr_power9_mmu(CPUPPCState *env)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+#if !defined(CONFIG_USER_ONLY)
|
|
|
26ba25 |
+ /* Partition Table Control */
|
|
|
26ba25 |
+ spr_register_hv(env, SPR_PTCR, "PTCR",
|
|
|
26ba25 |
+ SPR_NOACCESS, SPR_NOACCESS,
|
|
|
26ba25 |
+ SPR_NOACCESS, SPR_NOACCESS,
|
|
|
26ba25 |
+ &spr_read_generic, &spr_write_ptcr,
|
|
|
26ba25 |
+ 0x00000000);
|
|
|
26ba25 |
+#endif
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
static void init_proc_book3s_common(CPUPPCState *env)
|
|
|
26ba25 |
{
|
|
|
26ba25 |
gen_spr_ne_601(env);
|
|
|
26ba25 |
@@ -8761,6 +8778,7 @@ static void init_proc_POWER9(CPUPPCState *env)
|
|
|
26ba25 |
gen_spr_power8_ic(env);
|
|
|
26ba25 |
gen_spr_power8_book4(env);
|
|
|
26ba25 |
gen_spr_power8_rpr(env);
|
|
|
26ba25 |
+ gen_spr_power9_mmu(env);
|
|
|
26ba25 |
|
|
|
26ba25 |
/* POWER9 Specific registers */
|
|
|
26ba25 |
spr_register_kvm(env, SPR_TIDR, "TIDR", NULL, NULL,
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|