* [Qemu-devel] [PATCH v3 1/6] target-microblaze: Fix up indentation
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
@ 2015-05-29 6:29 ` Alistair Francis
2015-05-29 6:30 ` [Qemu-devel] [PATCH v3 2/6] target-microblaze: Preserve the pvr registers during reset Alistair Francis
` (5 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:29 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Fix up the incorrect indentation level in the helper_stackprot() function.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
---
target-microblaze/op_helper.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/target-microblaze/op_helper.c b/target-microblaze/op_helper.c
index a4c8f04..d2b3624 100644
--- a/target-microblaze/op_helper.c
+++ b/target-microblaze/op_helper.c
@@ -468,11 +468,11 @@ void helper_memalign(CPUMBState *env, uint32_t addr, uint32_t dr, uint32_t wr,
void helper_stackprot(CPUMBState *env, uint32_t addr)
{
if (addr < env->slr || addr > env->shr) {
- qemu_log("Stack protector violation at %x %x %x\n",
- addr, env->slr, env->shr);
- env->sregs[SR_EAR] = addr;
- env->sregs[SR_ESR] = ESR_EC_STACKPROT;
- helper_raise_exception(env, EXCP_HW_EXCP);
+ qemu_log("Stack protector violation at %x %x %x\n",
+ addr, env->slr, env->shr);
+ env->sregs[SR_EAR] = addr;
+ env->sregs[SR_ESR] = ESR_EC_STACKPROT;
+ helper_raise_exception(env, EXCP_HW_EXCP);
}
}
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH v3 2/6] target-microblaze: Preserve the pvr registers during reset
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
2015-05-29 6:29 ` [Qemu-devel] [PATCH v3 1/6] target-microblaze: Fix up indentation Alistair Francis
@ 2015-05-29 6:30 ` Alistair Francis
2015-05-29 6:30 ` [Qemu-devel] [PATCH v3 3/6] target-microblaze: Allow the stack protection to be disabled Alistair Francis
` (4 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:30 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Move the Microblaze PVR registers to the end of the CPUMBState
and preserve them during reset. This is similar to what the
QEMU ARM model does with some of it's registers.
This allows the Microblaze PVR registers to only be set once
at realise instead of constantly at reset.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
---
V2:
- Remove the memset and cpu_reset functions as they aren't
required in the realize and I'm touching them anyway.
NOTE: The individual machine resets still write to the PVR
registers on each reset. This is no longer required as it only
needs to be done once. Instead of moving them now, they are
being left there and will be removed when they are all
converted to the standard CPU properties.
target-microblaze/cpu.c | 40 ++++++++++++++++++++++------------------
target-microblaze/cpu.h | 10 ++++++----
2 files changed, 28 insertions(+), 22 deletions(-)
diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
index 67e3182..95be540 100644
--- a/target-microblaze/cpu.c
+++ b/target-microblaze/cpu.c
@@ -63,13 +63,34 @@ static void mb_cpu_reset(CPUState *s)
mcc->parent_reset(s);
- memset(env, 0, sizeof(CPUMBState));
+ memset(env, 0, offsetof(CPUMBState, pvr));
env->res_addr = RES_ADDR_NONE;
tlb_flush(s, 1);
/* Disable stack protector. */
env->shr = ~0;
+#if defined(CONFIG_USER_ONLY)
+ /* start in user mode with interrupts enabled. */
+ env->sregs[SR_MSR] = MSR_EE | MSR_IE | MSR_VM | MSR_UM;
+#else
+ env->sregs[SR_MSR] = 0;
+ mmu_init(&env->mmu);
+ env->mmu.c_mmu = 3;
+ env->mmu.c_mmu_tlb_access = 3;
+ env->mmu.c_mmu_zones = 16;
+#endif
+}
+
+static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
+{
+ CPUState *cs = CPU(dev);
+ MicroBlazeCPUClass *mcc = MICROBLAZE_CPU_GET_CLASS(dev);
+ MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
+ CPUMBState *env = &cpu->env;
+
+ qemu_init_vcpu(cs);
+
env->pvr.regs[0] = PVR0_PVR_FULL_MASK \
| PVR0_USE_BARREL_MASK \
| PVR0_USE_DIV_MASK \
@@ -99,25 +120,8 @@ static void mb_cpu_reset(CPUState *s)
env->sregs[SR_PC] = cpu->base_vectors;
#if defined(CONFIG_USER_ONLY)
- /* start in user mode with interrupts enabled. */
- env->sregs[SR_MSR] = MSR_EE | MSR_IE | MSR_VM | MSR_UM;
env->pvr.regs[10] = 0x0c000000; /* Spartan 3a dsp. */
-#else
- env->sregs[SR_MSR] = 0;
- mmu_init(&env->mmu);
- env->mmu.c_mmu = 3;
- env->mmu.c_mmu_tlb_access = 3;
- env->mmu.c_mmu_zones = 16;
#endif
-}
-
-static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
-{
- CPUState *cs = CPU(dev);
- MicroBlazeCPUClass *mcc = MICROBLAZE_CPU_GET_CLASS(dev);
-
- cpu_reset(cs);
- qemu_init_vcpu(cs);
mcc->parent_realize(dev, errp);
}
diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index 4ea04ac..e4c1cde 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -260,16 +260,18 @@ struct CPUMBState {
#define IFLAGS_TB_MASK (D_FLAG | IMM_FLAG | DRTI_FLAG | DRTE_FLAG | DRTB_FLAG)
uint32_t iflags;
- struct {
- uint32_t regs[16];
- } pvr;
-
#if !defined(CONFIG_USER_ONLY)
/* Unified MMU. */
struct microblaze_mmu mmu;
#endif
CPU_COMMON
+
+ /* These fields are preserved on reset. */
+
+ struct {
+ uint32_t regs[16];
+ } pvr;
};
#include "cpu-qom.h"
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH v3 3/6] target-microblaze: Allow the stack protection to be disabled
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
2015-05-29 6:29 ` [Qemu-devel] [PATCH v3 1/6] target-microblaze: Fix up indentation Alistair Francis
2015-05-29 6:30 ` [Qemu-devel] [PATCH v3 2/6] target-microblaze: Preserve the pvr registers during reset Alistair Francis
@ 2015-05-29 6:30 ` Alistair Francis
2015-05-29 6:46 ` Edgar E. Iglesias
2015-05-29 6:31 ` [Qemu-devel] [PATCH v3 4/6] target-microblaze: Tidy up the base-vectors property Alistair Francis
` (3 subsequent siblings)
6 siblings, 1 reply; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:30 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Microblaze stack protection is configurable and isn't always enabled.
This patch allows the stack protection to be disabled from the
CPU properties.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
V3:
- Enable stack protection by default
V2:
- Change the variable name to stackprot
- Include protection for the second time stack protection
is enabled
- Disable stack protection by default
Changes since RFC:
- Move the cfg.stackproc check into translate.c
- Set the PVR register
target-microblaze/cpu-qom.h | 5 +++++
target-microblaze/cpu.c | 5 +++++
target-microblaze/cpu.h | 1 +
target-microblaze/translate.c | 4 ++--
4 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h
index e3e0701..e08adb9 100644
--- a/target-microblaze/cpu-qom.h
+++ b/target-microblaze/cpu-qom.h
@@ -59,6 +59,11 @@ typedef struct MicroBlazeCPU {
uint32_t base_vectors;
/*< public >*/
+ /* Microblaze Configuration Settings */
+ struct {
+ bool stackprot;
+ } cfg;
+
CPUMBState env;
} MicroBlazeCPU;
diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
index 95be540..d3dad4a 100644
--- a/target-microblaze/cpu.c
+++ b/target-microblaze/cpu.c
@@ -114,6 +114,9 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
| PVR2_USE_FPU2_MASK \
| PVR2_FPU_EXC_MASK \
| 0;
+
+ env->pvr.regs[0] |= cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0;
+
env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */
env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17);
@@ -156,6 +159,8 @@ static const VMStateDescription vmstate_mb_cpu = {
static Property mb_properties[] = {
DEFINE_PROP_UINT32("xlnx.base-vectors", MicroBlazeCPU, base_vectors, 0),
+ DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
+ true),
DEFINE_PROP_END_OF_LIST(),
};
diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index e4c1cde..481f463 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -128,6 +128,7 @@ typedef struct CPUMBState CPUMBState;
#define PVR0_FAULT 0x00100000
#define PVR0_VERSION_MASK 0x0000FF00
#define PVR0_USER1_MASK 0x000000FF
+#define PVR0_SPROT_MASK 0x00000001
/* User 2 PVR mask */
#define PVR1_USER2_MASK 0xFFFFFFFF
diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c
index 4068946..bd10b40 100644
--- a/target-microblaze/translate.c
+++ b/target-microblaze/translate.c
@@ -862,7 +862,7 @@ static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
int stackprot = 0;
/* All load/stores use ra. */
- if (dc->ra == 1) {
+ if (dc->ra == 1 && dc->cpu->cfg.stackprot) {
stackprot = 1;
}
@@ -875,7 +875,7 @@ static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
return &cpu_R[dc->ra];
}
- if (dc->rb == 1) {
+ if (dc->rb == 1 && dc->cpu->cfg.stackprot) {
stackprot = 1;
}
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH v3 3/6] target-microblaze: Allow the stack protection to be disabled
2015-05-29 6:30 ` [Qemu-devel] [PATCH v3 3/6] target-microblaze: Allow the stack protection to be disabled Alistair Francis
@ 2015-05-29 6:46 ` Edgar E. Iglesias
0 siblings, 0 replies; 12+ messages in thread
From: Edgar E. Iglesias @ 2015-05-29 6:46 UTC (permalink / raw)
To: Alistair Francis; +Cc: peter.crosthwaite, qemu-devel, afaerber, rth
On Fri, May 29, 2015 at 04:30:43PM +1000, Alistair Francis wrote:
> Microblaze stack protection is configurable and isn't always enabled.
> This patch allows the stack protection to be disabled from the
> CPU properties.
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> ---
> V3:
> - Enable stack protection by default
> V2:
> - Change the variable name to stackprot
> - Include protection for the second time stack protection
> is enabled
> - Disable stack protection by default
> Changes since RFC:
> - Move the cfg.stackproc check into translate.c
> - Set the PVR register
>
> target-microblaze/cpu-qom.h | 5 +++++
> target-microblaze/cpu.c | 5 +++++
> target-microblaze/cpu.h | 1 +
> target-microblaze/translate.c | 4 ++--
> 4 files changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h
> index e3e0701..e08adb9 100644
> --- a/target-microblaze/cpu-qom.h
> +++ b/target-microblaze/cpu-qom.h
> @@ -59,6 +59,11 @@ typedef struct MicroBlazeCPU {
> uint32_t base_vectors;
> /*< public >*/
>
> + /* Microblaze Configuration Settings */
> + struct {
> + bool stackprot;
> + } cfg;
> +
> CPUMBState env;
> } MicroBlazeCPU;
>
> diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
> index 95be540..d3dad4a 100644
> --- a/target-microblaze/cpu.c
> +++ b/target-microblaze/cpu.c
> @@ -114,6 +114,9 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
> | PVR2_USE_FPU2_MASK \
> | PVR2_FPU_EXC_MASK \
> | 0;
> +
> + env->pvr.regs[0] |= cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0;
> +
> env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */
> env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17);
>
> @@ -156,6 +159,8 @@ static const VMStateDescription vmstate_mb_cpu = {
>
> static Property mb_properties[] = {
> DEFINE_PROP_UINT32("xlnx.base-vectors", MicroBlazeCPU, base_vectors, 0),
> + DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
> + true),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
> index e4c1cde..481f463 100644
> --- a/target-microblaze/cpu.h
> +++ b/target-microblaze/cpu.h
> @@ -128,6 +128,7 @@ typedef struct CPUMBState CPUMBState;
> #define PVR0_FAULT 0x00100000
> #define PVR0_VERSION_MASK 0x0000FF00
> #define PVR0_USER1_MASK 0x000000FF
> +#define PVR0_SPROT_MASK 0x00000001
>
> /* User 2 PVR mask */
> #define PVR1_USER2_MASK 0xFFFFFFFF
> diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c
> index 4068946..bd10b40 100644
> --- a/target-microblaze/translate.c
> +++ b/target-microblaze/translate.c
> @@ -862,7 +862,7 @@ static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
> int stackprot = 0;
>
> /* All load/stores use ra. */
> - if (dc->ra == 1) {
> + if (dc->ra == 1 && dc->cpu->cfg.stackprot) {
> stackprot = 1;
> }
>
> @@ -875,7 +875,7 @@ static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
> return &cpu_R[dc->ra];
> }
>
> - if (dc->rb == 1) {
> + if (dc->rb == 1 && dc->cpu->cfg.stackprot) {
> stackprot = 1;
> }
>
> --
> 1.7.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH v3 4/6] target-microblaze: Tidy up the base-vectors property
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
` (2 preceding siblings ...)
2015-05-29 6:30 ` [Qemu-devel] [PATCH v3 3/6] target-microblaze: Allow the stack protection to be disabled Alistair Francis
@ 2015-05-29 6:31 ` Alistair Francis
2015-05-29 6:31 ` [Qemu-devel] [PATCH v3 5/6] target-microblaze: Convert use-fpu to a CPU property Alistair Francis
` (2 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:31 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Rename the "xlnx.base-vectors" string to "base-vectors" and
move the base_vectors variable into the cfg struct.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
---
target-microblaze/cpu-qom.h | 3 ++-
target-microblaze/cpu.c | 4 ++--
target-microblaze/helper.c | 8 ++++----
3 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h
index e08adb9..dd04199 100644
--- a/target-microblaze/cpu-qom.h
+++ b/target-microblaze/cpu-qom.h
@@ -56,12 +56,13 @@ typedef struct MicroBlazeCPUClass {
typedef struct MicroBlazeCPU {
/*< private >*/
CPUState parent_obj;
- uint32_t base_vectors;
+
/*< public >*/
/* Microblaze Configuration Settings */
struct {
bool stackprot;
+ uint32_t base_vectors;
} cfg;
CPUMBState env;
diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
index d3dad4a..0f805d3 100644
--- a/target-microblaze/cpu.c
+++ b/target-microblaze/cpu.c
@@ -120,7 +120,7 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */
env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17);
- env->sregs[SR_PC] = cpu->base_vectors;
+ env->sregs[SR_PC] = cpu->cfg.base_vectors;
#if defined(CONFIG_USER_ONLY)
env->pvr.regs[10] = 0x0c000000; /* Spartan 3a dsp. */
@@ -158,7 +158,7 @@ static const VMStateDescription vmstate_mb_cpu = {
};
static Property mb_properties[] = {
- DEFINE_PROP_UINT32("xlnx.base-vectors", MicroBlazeCPU, base_vectors, 0),
+ DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0),
DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
true),
DEFINE_PROP_END_OF_LIST(),
diff --git a/target-microblaze/helper.c b/target-microblaze/helper.c
index 32896f4..69c3252 100644
--- a/target-microblaze/helper.c
+++ b/target-microblaze/helper.c
@@ -154,7 +154,7 @@ void mb_cpu_do_interrupt(CPUState *cs)
env->sregs[SR_ESR], env->iflags);
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
env->iflags &= ~(IMM_FLAG | D_FLAG);
- env->sregs[SR_PC] = cpu->base_vectors + 0x20;
+ env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x20;
break;
case EXCP_MMU:
@@ -194,7 +194,7 @@ void mb_cpu_do_interrupt(CPUState *cs)
env->sregs[SR_PC], env->sregs[SR_EAR], env->iflags);
log_cpu_state_mask(CPU_LOG_INT, cs, 0);
env->iflags &= ~(IMM_FLAG | D_FLAG);
- env->sregs[SR_PC] = cpu->base_vectors + 0x20;
+ env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x20;
break;
case EXCP_IRQ:
@@ -235,7 +235,7 @@ void mb_cpu_do_interrupt(CPUState *cs)
env->sregs[SR_MSR] |= t;
env->regs[14] = env->sregs[SR_PC];
- env->sregs[SR_PC] = cpu->base_vectors + 0x10;
+ env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x10;
//log_cpu_state_mask(CPU_LOG_INT, cs, 0);
break;
@@ -254,7 +254,7 @@ void mb_cpu_do_interrupt(CPUState *cs)
if (cs->exception_index == EXCP_HW_BREAK) {
env->regs[16] = env->sregs[SR_PC];
env->sregs[SR_MSR] |= MSR_BIP;
- env->sregs[SR_PC] = cpu->base_vectors + 0x18;
+ env->sregs[SR_PC] = cpu->cfg.base_vectors + 0x18;
} else
env->sregs[SR_PC] = env->btarget;
break;
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH v3 5/6] target-microblaze: Convert use-fpu to a CPU property
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
` (3 preceding siblings ...)
2015-05-29 6:31 ` [Qemu-devel] [PATCH v3 4/6] target-microblaze: Tidy up the base-vectors property Alistair Francis
@ 2015-05-29 6:31 ` Alistair Francis
2015-05-29 6:51 ` Edgar E. Iglesias
2015-05-29 6:32 ` [Qemu-devel] [PATCH v3 6/6] target-microblaze: Disable stack protection by default Alistair Francis
2015-05-29 6:58 ` [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Edgar E. Iglesias
6 siblings, 1 reply; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:31 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Originally the use-fpu PVR bits were manually set for each machine. This
is a hassle and difficult to read, instead set them based on the CPU
properties.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
---
V3:
- Add comments explaing the FPU levels
V2:
- Remove unnecessary declaration of r
Changes since RFC:
- Tidy up the if logic
hw/microblaze/petalogix_ml605_mmu.c | 7 +++++--
target-microblaze/cpu-qom.h | 1 +
target-microblaze/cpu.c | 13 ++++++++++---
target-microblaze/translate.c | 10 +++-------
4 files changed, 19 insertions(+), 12 deletions(-)
diff --git a/hw/microblaze/petalogix_ml605_mmu.c b/hw/microblaze/petalogix_ml605_mmu.c
index 48c264b..05c120a 100644
--- a/hw/microblaze/petalogix_ml605_mmu.c
+++ b/hw/microblaze/petalogix_ml605_mmu.c
@@ -71,9 +71,8 @@ static void machine_cpu_reset(MicroBlazeCPU *cpu)
env->pvr.regs[10] = 0x0e000000; /* virtex 6 */
/* setup pvr to match kernel setting */
env->pvr.regs[5] |= PVR5_DCACHE_WRITEBACK_MASK;
- env->pvr.regs[0] |= PVR0_USE_FPU_MASK | PVR0_ENDI;
+ env->pvr.regs[0] |= PVR0_ENDI;
env->pvr.regs[0] = (env->pvr.regs[0] & ~PVR0_VERSION_MASK) | (0x14 << 8);
- env->pvr.regs[2] ^= PVR2_USE_FPU2_MASK;
env->pvr.regs[4] = 0xc56b8000;
env->pvr.regs[5] = 0xc56be000;
}
@@ -95,6 +94,10 @@ petalogix_ml605_init(MachineState *machine)
/* init CPUs */
cpu = MICROBLAZE_CPU(object_new(TYPE_MICROBLAZE_CPU));
+ /* Use FPU but don't use floating point conversion and square
+ * root instructions
+ */
+ object_property_set_int(OBJECT(cpu), 1, "use-fpu", &error_abort);
object_property_set_bool(OBJECT(cpu), true, "realized", &error_abort);
/* Attach emulated BRAM through the LMB. */
diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h
index dd04199..a6474f9 100644
--- a/target-microblaze/cpu-qom.h
+++ b/target-microblaze/cpu-qom.h
@@ -63,6 +63,7 @@ typedef struct MicroBlazeCPU {
struct {
bool stackprot;
uint32_t base_vectors;
+ uint8_t usefpu;
} cfg;
CPUMBState env;
diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
index 0f805d3..b857056 100644
--- a/target-microblaze/cpu.c
+++ b/target-microblaze/cpu.c
@@ -110,12 +110,14 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
| PVR2_USE_DIV_MASK \
| PVR2_USE_HW_MUL_MASK \
| PVR2_USE_MUL64_MASK \
- | PVR2_USE_FPU_MASK \
- | PVR2_USE_FPU2_MASK \
| PVR2_FPU_EXC_MASK \
| 0;
- env->pvr.regs[0] |= cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0;
+ env->pvr.regs[0] |= (cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0) |
+ (cpu->cfg.usefpu ? PVR0_USE_FPU_MASK : 0);
+
+ env->pvr.regs[2] |= (cpu->cfg.usefpu ? PVR2_USE_FPU_MASK : 0) |
+ (cpu->cfg.usefpu > 1 ? PVR2_USE_FPU2_MASK : 0);
env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */
env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17);
@@ -161,6 +163,11 @@ static Property mb_properties[] = {
DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0),
DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
true),
+ /* If use-fpu > 0 - FPU is enabled
+ * If use-fpu = 2 - Floating point conversion and square root instructions
+ * are enabled
+ */
+ DEFINE_PROP_UINT8("use-fpu", MicroBlazeCPU, cfg.usefpu, 2),
DEFINE_PROP_END_OF_LIST(),
};
diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c
index bd10b40..8187700 100644
--- a/target-microblaze/translate.c
+++ b/target-microblaze/translate.c
@@ -1411,15 +1411,11 @@ static void dec_rts(DisasContext *dc)
static int dec_check_fpuv2(DisasContext *dc)
{
- int r;
-
- r = dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU2_MASK;
-
- if (!r && (dc->tb_flags & MSR_EE_FLAG)) {
+ if ((dc->cpu->cfg.usefpu != 2) && (dc->tb_flags & MSR_EE_FLAG)) {
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_FPU);
t_gen_raise_exception(dc, EXCP_HW_EXCP);
}
- return r;
+ return (dc->cpu->cfg.usefpu == 2) ? 0 : PVR2_USE_FPU2_MASK;
}
static void dec_fpu(DisasContext *dc)
@@ -1428,7 +1424,7 @@ static void dec_fpu(DisasContext *dc)
if ((dc->tb_flags & MSR_EE_FLAG)
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
- && !((dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU_MASK))) {
+ && (dc->cpu->cfg.usefpu != 1)) {
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
t_gen_raise_exception(dc, EXCP_HW_EXCP);
return;
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH v3 5/6] target-microblaze: Convert use-fpu to a CPU property
2015-05-29 6:31 ` [Qemu-devel] [PATCH v3 5/6] target-microblaze: Convert use-fpu to a CPU property Alistair Francis
@ 2015-05-29 6:51 ` Edgar E. Iglesias
0 siblings, 0 replies; 12+ messages in thread
From: Edgar E. Iglesias @ 2015-05-29 6:51 UTC (permalink / raw)
To: Alistair Francis; +Cc: peter.crosthwaite, qemu-devel, afaerber, rth
On Fri, May 29, 2015 at 04:31:58PM +1000, Alistair Francis wrote:
> Originally the use-fpu PVR bits were manually set for each machine. This
> is a hassle and difficult to read, instead set them based on the CPU
> properties.
The dt bindings for use-fpu are a bit non-intuivie unfortunately...
Anyway:
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
> ---
> V3:
> - Add comments explaing the FPU levels
> V2:
> - Remove unnecessary declaration of r
> Changes since RFC:
> - Tidy up the if logic
>
> hw/microblaze/petalogix_ml605_mmu.c | 7 +++++--
> target-microblaze/cpu-qom.h | 1 +
> target-microblaze/cpu.c | 13 ++++++++++---
> target-microblaze/translate.c | 10 +++-------
> 4 files changed, 19 insertions(+), 12 deletions(-)
>
> diff --git a/hw/microblaze/petalogix_ml605_mmu.c b/hw/microblaze/petalogix_ml605_mmu.c
> index 48c264b..05c120a 100644
> --- a/hw/microblaze/petalogix_ml605_mmu.c
> +++ b/hw/microblaze/petalogix_ml605_mmu.c
> @@ -71,9 +71,8 @@ static void machine_cpu_reset(MicroBlazeCPU *cpu)
> env->pvr.regs[10] = 0x0e000000; /* virtex 6 */
> /* setup pvr to match kernel setting */
> env->pvr.regs[5] |= PVR5_DCACHE_WRITEBACK_MASK;
> - env->pvr.regs[0] |= PVR0_USE_FPU_MASK | PVR0_ENDI;
> + env->pvr.regs[0] |= PVR0_ENDI;
> env->pvr.regs[0] = (env->pvr.regs[0] & ~PVR0_VERSION_MASK) | (0x14 << 8);
> - env->pvr.regs[2] ^= PVR2_USE_FPU2_MASK;
> env->pvr.regs[4] = 0xc56b8000;
> env->pvr.regs[5] = 0xc56be000;
> }
> @@ -95,6 +94,10 @@ petalogix_ml605_init(MachineState *machine)
>
> /* init CPUs */
> cpu = MICROBLAZE_CPU(object_new(TYPE_MICROBLAZE_CPU));
> + /* Use FPU but don't use floating point conversion and square
> + * root instructions
> + */
> + object_property_set_int(OBJECT(cpu), 1, "use-fpu", &error_abort);
> object_property_set_bool(OBJECT(cpu), true, "realized", &error_abort);
>
> /* Attach emulated BRAM through the LMB. */
> diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h
> index dd04199..a6474f9 100644
> --- a/target-microblaze/cpu-qom.h
> +++ b/target-microblaze/cpu-qom.h
> @@ -63,6 +63,7 @@ typedef struct MicroBlazeCPU {
> struct {
> bool stackprot;
> uint32_t base_vectors;
> + uint8_t usefpu;
> } cfg;
>
> CPUMBState env;
> diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
> index 0f805d3..b857056 100644
> --- a/target-microblaze/cpu.c
> +++ b/target-microblaze/cpu.c
> @@ -110,12 +110,14 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
> | PVR2_USE_DIV_MASK \
> | PVR2_USE_HW_MUL_MASK \
> | PVR2_USE_MUL64_MASK \
> - | PVR2_USE_FPU_MASK \
> - | PVR2_USE_FPU2_MASK \
> | PVR2_FPU_EXC_MASK \
> | 0;
>
> - env->pvr.regs[0] |= cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0;
> + env->pvr.regs[0] |= (cpu->cfg.stackprot ? PVR0_SPROT_MASK : 0) |
> + (cpu->cfg.usefpu ? PVR0_USE_FPU_MASK : 0);
> +
> + env->pvr.regs[2] |= (cpu->cfg.usefpu ? PVR2_USE_FPU_MASK : 0) |
> + (cpu->cfg.usefpu > 1 ? PVR2_USE_FPU2_MASK : 0);
>
> env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */
> env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17);
> @@ -161,6 +163,11 @@ static Property mb_properties[] = {
> DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0),
> DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
> true),
> + /* If use-fpu > 0 - FPU is enabled
> + * If use-fpu = 2 - Floating point conversion and square root instructions
> + * are enabled
> + */
> + DEFINE_PROP_UINT8("use-fpu", MicroBlazeCPU, cfg.usefpu, 2),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c
> index bd10b40..8187700 100644
> --- a/target-microblaze/translate.c
> +++ b/target-microblaze/translate.c
> @@ -1411,15 +1411,11 @@ static void dec_rts(DisasContext *dc)
>
> static int dec_check_fpuv2(DisasContext *dc)
> {
> - int r;
> -
> - r = dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU2_MASK;
> -
> - if (!r && (dc->tb_flags & MSR_EE_FLAG)) {
> + if ((dc->cpu->cfg.usefpu != 2) && (dc->tb_flags & MSR_EE_FLAG)) {
> tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_FPU);
> t_gen_raise_exception(dc, EXCP_HW_EXCP);
> }
> - return r;
> + return (dc->cpu->cfg.usefpu == 2) ? 0 : PVR2_USE_FPU2_MASK;
> }
>
> static void dec_fpu(DisasContext *dc)
> @@ -1428,7 +1424,7 @@ static void dec_fpu(DisasContext *dc)
>
> if ((dc->tb_flags & MSR_EE_FLAG)
> && (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
> - && !((dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU_MASK))) {
> + && (dc->cpu->cfg.usefpu != 1)) {
> tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
> t_gen_raise_exception(dc, EXCP_HW_EXCP);
> return;
> --
> 1.7.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH v3 6/6] target-microblaze: Disable stack protection by default
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
` (4 preceding siblings ...)
2015-05-29 6:31 ` [Qemu-devel] [PATCH v3 5/6] target-microblaze: Convert use-fpu to a CPU property Alistair Francis
@ 2015-05-29 6:32 ` Alistair Francis
2015-05-29 6:52 ` Edgar E. Iglesias
2015-05-29 6:58 ` [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Edgar E. Iglesias
6 siblings, 1 reply; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 6:32 UTC (permalink / raw)
To: qemu-devel, edgar.iglesias
Cc: peter.crosthwaite, rth, afaerber, alistair.francis
Stack protection is not available when the MMU is enabled.
As the MMU is enabled by default, disable stack protection
by default.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
target-microblaze/cpu.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
index b857056..13ae49a 100644
--- a/target-microblaze/cpu.c
+++ b/target-microblaze/cpu.c
@@ -162,7 +162,7 @@ static const VMStateDescription vmstate_mb_cpu = {
static Property mb_properties[] = {
DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0),
DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
- true),
+ false),
/* If use-fpu > 0 - FPU is enabled
* If use-fpu = 2 - Floating point conversion and square root instructions
* are enabled
--
1.7.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH v3 6/6] target-microblaze: Disable stack protection by default
2015-05-29 6:32 ` [Qemu-devel] [PATCH v3 6/6] target-microblaze: Disable stack protection by default Alistair Francis
@ 2015-05-29 6:52 ` Edgar E. Iglesias
0 siblings, 0 replies; 12+ messages in thread
From: Edgar E. Iglesias @ 2015-05-29 6:52 UTC (permalink / raw)
To: Alistair Francis; +Cc: peter.crosthwaite, qemu-devel, afaerber, rth
On Fri, May 29, 2015 at 04:32:35PM +1000, Alistair Francis wrote:
> Stack protection is not available when the MMU is enabled.
> As the MMU is enabled by default, disable stack protection
> by default.
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> ---
>
> target-microblaze/cpu.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c
> index b857056..13ae49a 100644
> --- a/target-microblaze/cpu.c
> +++ b/target-microblaze/cpu.c
> @@ -162,7 +162,7 @@ static const VMStateDescription vmstate_mb_cpu = {
> static Property mb_properties[] = {
> DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0),
> DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot,
> - true),
> + false),
> /* If use-fpu > 0 - FPU is enabled
> * If use-fpu = 2 - Floating point conversion and square root instructions
> * are enabled
> --
> 1.7.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options
2015-05-29 6:28 [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Alistair Francis
` (5 preceding siblings ...)
2015-05-29 6:32 ` [Qemu-devel] [PATCH v3 6/6] target-microblaze: Disable stack protection by default Alistair Francis
@ 2015-05-29 6:58 ` Edgar E. Iglesias
2015-05-29 7:08 ` Alistair Francis
6 siblings, 1 reply; 12+ messages in thread
From: Edgar E. Iglesias @ 2015-05-29 6:58 UTC (permalink / raw)
To: Alistair Francis; +Cc: peter.crosthwaite, qemu-devel, afaerber, rth
On Fri, May 29, 2015 at 04:28:51PM +1000, Alistair Francis wrote:
> Firstly this patch series tidies up some code and removes
> a "xlnx." prefix.
>
> Then it moves the Microblaze PVR registers to the end
> of the CPUMBState to preserve them during reset. This
> allows most of the operations on them to be moved from
> the reset to the realise. Except for the machine specific
> ones which will be moved when the other properties are
> converted across to standard QEMU props, after this patch
> series is accepted (either merged or the method I'm using
> is approved). See the individual commit for more details.
>
> Next it adds the "use-stack-protection" property
> to the Microblaze CPU, which allows stack protection to be
> disabled.
>
> It also converts the previously hardcoded method of enabling
> the FPU to use standard QEMU properties. This simplifies the
> logic in the target-microblaze translate.c.
>
> V3:
> - Split disabling stack protection into a seperate patch
> - Add comments detailing the use-fpu values
> V2:
> - Small fixes
> - Disable stack protection by default
> - Remove the memset and cpu_reset functions from the MB realise
> Changes since RFC:
> - Preserve the PVR registers during resets
> - Move most of the logic into realise functions
> - Small name and function changes
Thanks Alistair,
I've added this into my MicroBlaze queue.
Cheers,
Edgar
>
> Alistair Francis (6):
> target-microblaze: Fix up indentation
> target-microblaze: Preserve the pvr registers during reset
> target-microblaze: Allow the stack protection to be disabled
> target-microblaze: Tidy up the base-vectors property
> target-microblaze: Convert use-fpu to a CPU property
> target-microblaze: Disable stack protection by default
>
> hw/microblaze/petalogix_ml605_mmu.c | 7 +++-
> target-microblaze/cpu-qom.h | 9 +++++-
> target-microblaze/cpu.c | 60 ++++++++++++++++++++++-------------
> target-microblaze/cpu.h | 11 ++++--
> target-microblaze/helper.c | 8 ++--
> target-microblaze/op_helper.c | 10 +++---
> target-microblaze/translate.c | 14 +++-----
> 7 files changed, 72 insertions(+), 47 deletions(-)
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options
2015-05-29 6:58 ` [Qemu-devel] [PATCH v3 0/6] Add Microblaze configuration options Edgar E. Iglesias
@ 2015-05-29 7:08 ` Alistair Francis
0 siblings, 0 replies; 12+ messages in thread
From: Alistair Francis @ 2015-05-29 7:08 UTC (permalink / raw)
To: Edgar E. Iglesias
Cc: Peter Crosthwaite, Richard Henderson,
qemu-devel@nongnu.org Developers, Andreas Färber,
Alistair Francis
On Fri, May 29, 2015 at 4:58 PM, Edgar E. Iglesias
<edgar.iglesias@xilinx.com> wrote:
> On Fri, May 29, 2015 at 04:28:51PM +1000, Alistair Francis wrote:
>> Firstly this patch series tidies up some code and removes
>> a "xlnx." prefix.
>>
>> Then it moves the Microblaze PVR registers to the end
>> of the CPUMBState to preserve them during reset. This
>> allows most of the operations on them to be moved from
>> the reset to the realise. Except for the machine specific
>> ones which will be moved when the other properties are
>> converted across to standard QEMU props, after this patch
>> series is accepted (either merged or the method I'm using
>> is approved). See the individual commit for more details.
>>
>> Next it adds the "use-stack-protection" property
>> to the Microblaze CPU, which allows stack protection to be
>> disabled.
>>
>> It also converts the previously hardcoded method of enabling
>> the FPU to use standard QEMU properties. This simplifies the
>> logic in the target-microblaze translate.c.
>>
>> V3:
>> - Split disabling stack protection into a seperate patch
>> - Add comments detailing the use-fpu values
>> V2:
>> - Small fixes
>> - Disable stack protection by default
>> - Remove the memset and cpu_reset functions from the MB realise
>> Changes since RFC:
>> - Preserve the PVR registers during resets
>> - Move most of the logic into realise functions
>> - Small name and function changes
>
> Thanks Alistair,
>
> I've added this into my MicroBlaze queue.
Thanks Edgar,
I'll start working on the next set next week
Thanks,
Alistair
>
> Cheers,
> Edgar
>
>
>
>>
>> Alistair Francis (6):
>> target-microblaze: Fix up indentation
>> target-microblaze: Preserve the pvr registers during reset
>> target-microblaze: Allow the stack protection to be disabled
>> target-microblaze: Tidy up the base-vectors property
>> target-microblaze: Convert use-fpu to a CPU property
>> target-microblaze: Disable stack protection by default
>>
>> hw/microblaze/petalogix_ml605_mmu.c | 7 +++-
>> target-microblaze/cpu-qom.h | 9 +++++-
>> target-microblaze/cpu.c | 60 ++++++++++++++++++++++-------------
>> target-microblaze/cpu.h | 11 ++++--
>> target-microblaze/helper.c | 8 ++--
>> target-microblaze/op_helper.c | 10 +++---
>> target-microblaze/translate.c | 14 +++-----
>> 7 files changed, 72 insertions(+), 47 deletions(-)
>>
>
^ permalink raw reply [flat|nested] 12+ messages in thread