* [PATCH] target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP
@ 2022-09-27 12:00 Jerome Forissier
2022-09-28 14:56 ` Richard Henderson
0 siblings, 1 reply; 3+ messages in thread
From: Jerome Forissier @ 2022-09-27 12:00 UTC (permalink / raw)
To: Peter Maydell, qemu-arm; +Cc: qemu-devel, Jerome Forissier
SP_EL1 must be kept when EL3 is present but EL2 is not. Therefore mark
it with ARM_CP_EL3_NO_EL2_KEEP.
Fixes: 696ba3771894 ("target/arm: Handle cpreg registration for missing EL")
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
---
target/arm/helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index d7bc467a2a..328d252a84 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -4971,7 +4971,7 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
.fieldoffset = offsetof(CPUARMState, sp_el[0]) },
{ .name = "SP_EL1", .state = ARM_CP_STATE_AA64,
.opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0,
- .access = PL2_RW, .type = ARM_CP_ALIAS,
+ .access = PL2_RW, .type = ARM_CP_ALIAS | ARM_CP_EL3_NO_EL2_KEEP,
.fieldoffset = offsetof(CPUARMState, sp_el[1]) },
{ .name = "SPSel", .state = ARM_CP_STATE_AA64,
.opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0,
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP
2022-09-27 12:00 [PATCH] target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP Jerome Forissier
@ 2022-09-28 14:56 ` Richard Henderson
2022-09-29 17:02 ` Peter Maydell
0 siblings, 1 reply; 3+ messages in thread
From: Richard Henderson @ 2022-09-28 14:56 UTC (permalink / raw)
To: Jerome Forissier, Peter Maydell, qemu-arm; +Cc: qemu-devel
On 9/27/22 05:00, Jerome Forissier wrote:
> SP_EL1 must be kept when EL3 is present but EL2 is not. Therefore mark
> it with ARM_CP_EL3_NO_EL2_KEEP.
>
> Fixes: 696ba3771894 ("target/arm: Handle cpreg registration for missing EL")
> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This certainly looks right, as how else would EL3 set up EL1 as desired. I suppose this
error comes from a slight mis-read of R_RJFFP, in that SP_EL1 may be considered
"associated" with EL1 and not EL[23].
r~
> ---
> target/arm/helper.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/arm/helper.c b/target/arm/helper.c
> index d7bc467a2a..328d252a84 100644
> --- a/target/arm/helper.c
> +++ b/target/arm/helper.c
> @@ -4971,7 +4971,7 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
> .fieldoffset = offsetof(CPUARMState, sp_el[0]) },
> { .name = "SP_EL1", .state = ARM_CP_STATE_AA64,
> .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0,
> - .access = PL2_RW, .type = ARM_CP_ALIAS,
> + .access = PL2_RW, .type = ARM_CP_ALIAS | ARM_CP_EL3_NO_EL2_KEEP,
> .fieldoffset = offsetof(CPUARMState, sp_el[1]) },
> { .name = "SPSel", .state = ARM_CP_STATE_AA64,
> .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP
2022-09-28 14:56 ` Richard Henderson
@ 2022-09-29 17:02 ` Peter Maydell
0 siblings, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2022-09-29 17:02 UTC (permalink / raw)
To: Richard Henderson; +Cc: Jerome Forissier, qemu-arm, qemu-devel, qemu-stable
On Wed, 28 Sept 2022 at 15:56, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> On 9/27/22 05:00, Jerome Forissier wrote:
> > SP_EL1 must be kept when EL3 is present but EL2 is not. Therefore mark
> > it with ARM_CP_EL3_NO_EL2_KEEP.
> >
> > Fixes: 696ba3771894 ("target/arm: Handle cpreg registration for missing EL")
> > Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
>
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
>
> This certainly looks right, as how else would EL3 set up EL1 as desired. I suppose this
> error comes from a slight mis-read of R_RJFFP, in that SP_EL1 may be considered
> "associated" with EL1 and not EL[23].
Oops. Applied to target-arm.next, and
Cc: qemu-stable@nongnu.org
since this bug made it into 7.1 :-(
thanks
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-09-29 17:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-27 12:00 [PATCH] target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP Jerome Forissier
2022-09-28 14:56 ` Richard Henderson
2022-09-29 17:02 ` Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).