|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v3 03/16] xen/riscv: detect and store supported hypervisor CSR bits at boot
Some hypervisor CSRs expose optional functionality and may not implement
all architectural bits. Writing unsupported bits can either be ignored
or raise an exception depending on the platform.
Detect the set of writable bits for selected hypervisor CSRs at boot and
store the resulting masks for later use. This allows safely programming
these CSRs during vCPU context switching and avoids relying on hardcoded
architectural assumptions.
Note that csr_set() is used instead of csr_write() to write all ones to
the mask, as the CSRRS instruction, according to the RISC-V specification,
sets only those bits that are writable:
Any bit that is high in rs1 will cause the corresponding bit to be set
in the CSR, if that CSR bit is writable.
In contrast, the CSRRW instruction does not take CSR bit writability into
account, which could lead to unintended side effects when writing all ones
to a CSR.
Masks are calculated at the moment only for hdeleg, henvcfg, hideleg,
hstateen0 registers as only them are going to be used in the follow up
patch.
If the Smstateen extension is not implemented, hstateen0 cannot be read
because the register is considered non-existent. Instructions that attempt
to access a CSR that is not implemented or not visible in the current mode
are reserved and will raise an illegal-instruction exception.
Signed-off-by: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx>
---
Changes in V3:
- New patch.
---
xen/arch/riscv/include/asm/setup.h | 9 +++++++++
xen/arch/riscv/setup.c | 26 ++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/xen/arch/riscv/include/asm/setup.h
b/xen/arch/riscv/include/asm/setup.h
index c9d69cdf5166..d54f6a2d1d29 100644
--- a/xen/arch/riscv/include/asm/setup.h
+++ b/xen/arch/riscv/include/asm/setup.h
@@ -5,6 +5,15 @@
#include <xen/types.h>
+struct csr_masks {
+ register_t hedeleg;
+ register_t henvcfg;
+ register_t hideleg;
+ register_t hstateen0;
+};
+
+extern struct csr_masks csr_masks;
+
#define max_init_domid (0)
void setup_mm(void);
diff --git a/xen/arch/riscv/setup.c b/xen/arch/riscv/setup.c
index 9b4835960d20..010489f0b713 100644
--- a/xen/arch/riscv/setup.c
+++ b/xen/arch/riscv/setup.c
@@ -32,6 +32,8 @@
unsigned char __initdata cpu0_boot_stack[STACK_SIZE]
__aligned(STACK_SIZE);
+struct csr_masks __ro_after_init csr_masks;
+
/**
* copy_from_paddr - copy data from a physical address
* @dst: destination virtual address
@@ -70,6 +72,28 @@ static void * __init relocate_fdt(paddr_t dtb_paddr, size_t
dtb_size)
return fdt;
}
+void __init init_csr_masks(void)
+{
+ register_t old;
+
+#define X(csr, field) \
+ old = csr_read(CSR_##csr); \
+ csr_set(CSR_##csr, ULONG_MAX); \
+ csr_masks.field = csr_read(CSR_##csr); \
+ csr_write(CSR_##csr, old)
+
+ X(HEDELEG, hedeleg);
+ X(HENVCFG, henvcfg);
+ X(HIDELEG, hideleg);
+
+ if ( riscv_isa_extension_available(NULL, RISCV_ISA_EXT_smstateen) )
+ {
+ X(HSTATEEN0, hstateen0);
+ }
+
+#undef X
+}
+
void __init noreturn start_xen(unsigned long bootcpu_id,
paddr_t dtb_addr)
{
@@ -137,6 +161,8 @@ void __init noreturn start_xen(unsigned long bootcpu_id,
riscv_fill_hwcap();
+ init_csr_masks();
+
preinit_xen_time();
intc_preinit();
--
2.52.0
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |