From: Julien Grall <julien.grall@arm.com>
To: xen-devel@lists.xen.org
Cc: Julien Grall <julien.grall@arm.com>, sstabellini@kernel.org
Subject: [PATCH 09/13] xen/arm: vtimer: Move emulate_sysreg* callback in a separate header
Date: Wed, 7 Dec 2016 12:33:49 +0000 [thread overview]
Message-ID: <1481114033-11024-10-git-send-email-julien.grall@arm.com> (raw)
In-Reply-To: <1481114033-11024-1-git-send-email-julien.grall@arm.com>
The core emulation of sysreg (reading/writing registers) is not specific
to the virtual timer. Move the helpers in a new header vreg.h.
Signed-off-by: Julien Grall <julien.grall@arm.com>
---
The helpers will be necessary in a follow-up patch to emulate sysreg
for another components.
---
xen/arch/arm/vtimer.c | 53 ++++---------------------------------------
xen/include/asm-arm/vreg.h | 56 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+), 49 deletions(-)
create mode 100644 xen/include/asm-arm/vreg.h
diff --git a/xen/arch/arm/vtimer.c b/xen/arch/arm/vtimer.c
index 3fc97b3..091b5e7 100644
--- a/xen/arch/arm/vtimer.c
+++ b/xen/arch/arm/vtimer.c
@@ -27,6 +27,7 @@
#include <asm/time.h>
#include <asm/gic.h>
#include <asm/vgic.h>
+#include <asm/vreg.h>
#include <asm/regs.h>
/*
@@ -321,52 +322,6 @@ static bool vtimer_emulate_cp64(struct cpu_user_regs *regs, union hsr hsr)
}
#ifdef CONFIG_ARM_64
-typedef bool (*vtimer_sysreg32_fn_t)(struct cpu_user_regs *regs, uint32_t *r,
- bool read);
-typedef bool (*vtimer_sysreg64_fn_t)(struct cpu_user_regs *regs, uint64_t *r,
- bool read);
-
-static bool vtimer_emulate_sysreg32(struct cpu_user_regs *regs, union hsr hsr,
- vtimer_sysreg32_fn_t fn)
-{
- struct hsr_sysreg sysreg = hsr.sysreg;
- uint32_t r = 0;
- bool ret;
-
- if ( !sysreg.read )
- r = get_user_reg(regs, sysreg.reg);
-
- ret = fn(regs, &r, sysreg.read);
-
- if ( ret && sysreg.read )
- set_user_reg(regs, sysreg.reg, r);
-
- return ret;
-}
-
-static bool vtimer_emulate_sysreg64(struct cpu_user_regs *regs, union hsr hsr,
- vtimer_sysreg64_fn_t fn)
-{
- struct hsr_sysreg sysreg = hsr.sysreg;
- /*
- * Initialize to zero to avoid leaking data if there is an
- * implementation error in the emulation (such as not correctly
- * setting x).
- */
- uint64_t x = 0;
- bool ret;
-
- if ( !sysreg.read )
- x = get_user_reg(regs, sysreg.reg);
-
- ret = fn(regs, &x, sysreg.read);
-
- if ( ret && sysreg.read )
- set_user_reg(regs, sysreg.reg, x);
-
- return ret;
-}
-
static bool vtimer_emulate_sysreg(struct cpu_user_regs *regs, union hsr hsr)
{
struct hsr_sysreg sysreg = hsr.sysreg;
@@ -379,11 +334,11 @@ static bool vtimer_emulate_sysreg(struct cpu_user_regs *regs, union hsr hsr)
switch ( hsr.bits & HSR_SYSREG_REGS_MASK )
{
case HSR_SYSREG_CNTP_CTL_EL0:
- return vtimer_emulate_sysreg32(regs, hsr, vtimer_cntp_ctl);
+ return vreg_emulate_sysreg32(regs, hsr, vtimer_cntp_ctl);
case HSR_SYSREG_CNTP_TVAL_EL0:
- return vtimer_emulate_sysreg32(regs, hsr, vtimer_cntp_tval);
+ return vreg_emulate_sysreg32(regs, hsr, vtimer_cntp_tval);
case HSR_SYSREG_CNTP_CVAL_EL0:
- return vtimer_emulate_sysreg64(regs, hsr, vtimer_cntp_cval);
+ return vreg_emulate_sysreg64(regs, hsr, vtimer_cntp_cval);
default:
return false;
diff --git a/xen/include/asm-arm/vreg.h b/xen/include/asm-arm/vreg.h
new file mode 100644
index 0000000..2671f6e
--- /dev/null
+++ b/xen/include/asm-arm/vreg.h
@@ -0,0 +1,56 @@
+/*
+ * Helpers to emulate co-processor and system registers
+ */
+#ifndef __ASM_ARM_VREG__
+#define __ASM_ARM_VREG__
+
+#ifdef CONFIG_ARM_64
+typedef bool (*vreg_sysreg32_fn_t)(struct cpu_user_regs *regs, uint32_t *r,
+ bool read);
+typedef bool (*vreg_sysreg64_fn_t)(struct cpu_user_regs *regs, uint64_t *r,
+ bool read);
+
+static inline bool vreg_emulate_sysreg32(struct cpu_user_regs *regs, union hsr hsr,
+ vreg_sysreg32_fn_t fn)
+{
+ struct hsr_sysreg sysreg = hsr.sysreg;
+ uint32_t r = 0;
+ bool ret;
+
+ if ( !sysreg.read )
+ r = get_user_reg(regs, sysreg.reg);
+
+ ret = fn(regs, &r, sysreg.read);
+
+ if ( ret && sysreg.read )
+ set_user_reg(regs, sysreg.reg, r);
+
+ return ret;
+}
+
+static inline bool vreg_emulate_sysreg64(struct cpu_user_regs *regs, union hsr hsr,
+ vreg_sysreg64_fn_t fn)
+{
+ struct hsr_sysreg sysreg = hsr.sysreg;
+ /*
+ * Initialize to zero to avoid leaking data if there is an
+ * implementation error in the emulation (such as not correctly
+ * setting x).
+ */
+ uint64_t x = 0;
+ bool ret;
+
+ if ( !sysreg.read )
+ x = get_user_reg(regs, sysreg.reg);
+
+ ret = fn(regs, &x, sysreg.read);
+
+ if ( ret && sysreg.read )
+ set_user_reg(regs, sysreg.reg, x);
+
+ return ret;
+}
+
+#endif
+
+#endif /* __ASM_ARM_VREG__ */
--
1.9.1
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-12-07 12:33 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-07 12:33 [PATCH 00/13] xen/arm: Allow AArch32 guest to boot with GICv3 Julien Grall
2016-12-07 12:33 ` [PATCH 01/13] xen/arm: vtimer: Switch the emulation functions return from int to bool Julien Grall
2016-12-07 21:44 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 02/13] xen/arm: vtimer: Switch the read variable in the emulation " Julien Grall
2016-12-07 21:49 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 03/13] xen/arm: traps: Switch from bool_t " Julien Grall
2016-12-07 21:51 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 04/13] xen/arm: vgic: " Julien Grall
2016-12-07 21:53 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 05/13] xen/arm: vgic: Switch vgic_to_sgi return from int to bool and progate up to Julien Grall
2016-12-07 21:55 ` Stefano Stabellini
2016-12-07 22:02 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 06/13] xen/arm: vgic: Switch emulate_sysreg return from int to bool Julien Grall
2016-12-07 22:02 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 07/13] xen/arm: vgic: Clean-up the sysreg emulation Julien Grall
2016-12-07 22:08 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 08/13] xen/arm: vgic-v3: Build vgic-v3.c when CONFIG_HAS_GICV3 is enabled Julien Grall
2016-12-07 22:23 ` Stefano Stabellini
2016-12-07 12:33 ` Julien Grall [this message]
2016-12-07 22:41 ` [PATCH 09/13] xen/arm: vtimer: Move emulate_sysreg* callback in a separate header Stefano Stabellini
2016-12-07 12:33 ` [PATCH 10/13] xen/arm: vreg: Introduce vreg_emulate_cp{32, 64} Julien Grall
2016-12-07 22:41 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 11/13] xen/arm: vgic: Rename emulate_sysreg callback to emulate_reg Julien Grall
2016-12-07 22:44 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 12/13] xen/arm: vgic-v3: Move the emulation of ICC_SGI1R_EL1 in a separate helper Julien Grall
2016-12-07 22:47 ` Stefano Stabellini
2016-12-07 12:33 ` [PATCH 13/13] xen/arm: vgic-v3: Allow AArch32 guest booting with GICv3 Julien Grall
2016-12-07 22:50 ` Stefano Stabellini
2016-12-07 22:51 ` [PATCH 00/13] xen/arm: Allow AArch32 guest to boot " Stefano Stabellini
2016-12-08 11:11 ` Julien Grall
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=1481114033-11024-10-git-send-email-julien.grall@arm.com \
--to=julien.grall@arm.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xen.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).