From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: patches@linaro.org, Luc Michel <luc.michel@greensocs.com>,
edgari@xilinx.com
Subject: [Qemu-devel] [PATCH 05/10] target/arm: Implement AArch32 HCR and HCR2
Date: Tue, 14 Aug 2018 13:42:49 +0100 [thread overview]
Message-ID: <20180814124254.5229-6-peter.maydell@linaro.org> (raw)
In-Reply-To: <20180814124254.5229-1-peter.maydell@linaro.org>
The AArch32 HCR and HCR2 registers alias HCR_EL2
bits [31:0] and [63:32]; implement them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
target/arm/helper.c | 39 +++++++++++++++++++++++++++++++++++----
1 file changed, 35 insertions(+), 4 deletions(-)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index b6412fe9d1f..9701e413859 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -3754,11 +3754,15 @@ static const ARMCPRegInfo el3_no_el2_cp_reginfo[] = {
.opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
.access = PL2_RW,
.readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore },
- { .name = "HCR_EL2", .state = ARM_CP_STATE_AA64,
+ { .name = "HCR_EL2", .state = ARM_CP_STATE_BOTH,
.type = ARM_CP_NO_RAW,
.opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
.access = PL2_RW,
- .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore },
+ .type = ARM_CP_CONST, .resetvalue = 0 },
+ { .name = "HCR2", .state = ARM_CP_STATE_AA32,
+ .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 4,
+ .access = PL2_RW,
+ .type = ARM_CP_CONST, .resetvalue = 0 },
{ .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
.opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
.access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
@@ -3872,10 +3876,26 @@ static void hcr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
* HCR_PTW forbids certain page-table setups
* HCR_DC Disables stage1 and enables stage2 translation
*/
- if ((raw_read(env, ri) ^ value) & (HCR_VM | HCR_PTW | HCR_DC)) {
+ if ((env->cp15.hcr_el2 ^ value) & (HCR_VM | HCR_PTW | HCR_DC)) {
tlb_flush(CPU(cpu));
}
- raw_write(env, ri, value);
+ env->cp15.hcr_el2 = value;
+}
+
+static void hcr_writehigh(CPUARMState *env, const ARMCPRegInfo *ri,
+ uint64_t value)
+{
+ /* Handle HCR2 write, i.e. write to high half of HCR_EL2 */
+ value = deposit64(env->cp15.hcr_el2, 32, 32, value);
+ hcr_write(env, NULL, value);
+}
+
+static void hcr_writelow(CPUARMState *env, const ARMCPRegInfo *ri,
+ uint64_t value)
+{
+ /* Handle HCR write, i.e. write to low half of HCR_EL2 */
+ value = deposit64(env->cp15.hcr_el2, 0, 32, value);
+ hcr_write(env, NULL, value);
}
static const ARMCPRegInfo el2_cp_reginfo[] = {
@@ -3883,6 +3903,17 @@ static const ARMCPRegInfo el2_cp_reginfo[] = {
.opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
.access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
.writefn = hcr_write },
+ { .name = "HCR", .state = ARM_CP_STATE_AA32,
+ .type = ARM_CP_ALIAS,
+ .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
+ .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
+ .writefn = hcr_writelow },
+ { .name = "HCR2", .state = ARM_CP_STATE_AA32,
+ .type = ARM_CP_ALIAS,
+ .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 4,
+ .access = PL2_RW,
+ .fieldoffset = offsetofhigh32(CPUARMState, cp15.hcr_el2),
+ .writefn = hcr_writehigh },
{ .name = "ELR_EL2", .state = ARM_CP_STATE_AA64,
.type = ARM_CP_ALIAS,
.opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 1,
--
2.18.0
next prev parent reply other threads:[~2018-08-14 12:43 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-14 12:42 [Qemu-devel] [PATCH 00/10] target/arm: Some pieces of support for 32-bit Hyp mode Peter Maydell
2018-08-14 12:42 ` [Qemu-devel] [PATCH 01/10] target/arm: Correct typo in HAMAIR1 regdef name Peter Maydell
2018-08-14 14:33 ` Edgar E. Iglesias
2018-08-15 9:02 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 02/10] target/arm: Add missing .cp = 15 to HMAIR1 and HAMAIR1 regdefs Peter Maydell
2018-08-14 14:41 ` Edgar E. Iglesias
2018-08-14 14:45 ` Peter Maydell
2018-08-15 9:10 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 03/10] target/arm: Implement RAZ/WI HACTLR2 Peter Maydell
2018-08-14 14:44 ` Edgar E. Iglesias
2018-08-15 12:14 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 04/10] target/arm: Implement AArch32 HVBAR Peter Maydell
2018-08-14 14:46 ` Edgar E. Iglesias
2018-08-15 12:26 ` Luc Michel
2018-08-14 12:42 ` Peter Maydell [this message]
2018-08-14 14:52 ` [Qemu-devel] [PATCH 05/10] target/arm: Implement AArch32 HCR and HCR2 Edgar E. Iglesias
2018-08-16 8:55 ` Luc Michel
2018-08-16 9:02 ` Peter Maydell
2018-08-14 12:42 ` [Qemu-devel] [PATCH 06/10] target/arm: Implement AArch32 Hyp FARs Peter Maydell
2018-08-14 14:57 ` Edgar E. Iglesias
2018-08-16 9:01 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 07/10] target/arm: Implement ESR_EL2/HSR for AArch32 and no-EL2 Peter Maydell
2018-08-14 14:59 ` Edgar E. Iglesias
2018-08-16 9:16 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 08/10] target/arm: Permit accesses to ELR_Hyp from Hyp mode via MSR/MRS (banked) Peter Maydell
2018-08-14 15:07 ` Edgar E. Iglesias
2018-08-16 7:58 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 09/10] target/arm: Implement AArch32 ERET instruction Peter Maydell
2018-08-15 11:00 ` Edgar E. Iglesias
2018-08-16 8:10 ` Luc Michel
2018-08-14 12:42 ` [Qemu-devel] [PATCH 10/10] target/arm: Implement support for taking exceptions to Hyp mode Peter Maydell
2018-08-15 10:54 ` Edgar E. Iglesias
2018-08-15 10:58 ` Peter Maydell
2018-08-15 11:04 ` [Qemu-devel] [PATCH 00/10] target/arm: Some pieces of support for 32-bit " Edgar E. Iglesias
2018-08-15 11:13 ` Peter Maydell
2018-08-17 10:15 ` [Qemu-devel] [Qemu-arm] " Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180814124254.5229-6-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=edgari@xilinx.com \
--cc=luc.michel@greensocs.com \
--cc=patches@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).