[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v3 02/17] arm64: vgic-v3: Add ICV_BPR1_EL1 handler
This patch is ported to xen from linux commit d70c7b31a60f2458f35c226131f2a01a7a98b6cf KVM: arm64: vgic-v3: Add ICV_BPR1_EL1 handler This patch also imports vtr_to_nr_pre_bits macro from linux code, from commit: d68356cc51e304ff9a389f006b6249d41f2c2319 (KVM: arm/arm64: vgic-v3: Fix nr_pre_bits bitfield extraction) Since the macro is a dependency both are merged in a single patch Add a handler for reading/writing the guest's view of the ICC_BPR1_EL1 register, which is located in the ICH_VMCR_EL2.BPR1 field. Signed-off-by: Manish Jaggi <manish.jaggi@xxxxxxxxxx> diff --git a/xen/arch/arm/arm64/vgic-v3-sr.c b/xen/arch/arm/arm64/vgic-v3-sr.c index 4cc077fbb6..b894398dc6 100644 --- a/xen/arch/arm/arm64/vgic-v3-sr.c +++ b/xen/arch/arm/arm64/vgic-v3-sr.c @@ -21,10 +21,13 @@ */ #include <asm/current.h> +#include <asm/gic_v3_defs.h> #include <asm/regs.h> #include <asm/system.h> #include <asm/traps.h> +#define vtr_to_nr_pre_bits(v) ((((uint32_t)(v) >> 26) & 7) + 1) + /* Provide wrappers to read write VMCR similar to linux */ static uint64_t vgic_v3_read_vmcr(void) { @@ -36,6 +39,60 @@ static void vgic_v3_write_vmcr(uint32_t vmcr) WRITE_SYSREG32(vmcr, ICH_VMCR_EL2); } +static int vgic_v3_bpr_min(void) +{ + /* See Pseudocode for VPriorityGroup */ + return 8 - vtr_to_nr_pre_bits(READ_SYSREG32(ICH_VTR_EL2)); +} + +static unsigned int vgic_v3_get_bpr0(uint32_t vmcr) +{ + return (vmcr & ICH_VMCR_BPR0_MASK) >> ICH_VMCR_BPR0_SHIFT; +} + +static unsigned int vgic_v3_get_bpr1(uint32_t vmcr) +{ + unsigned int bpr; + + if ( vmcr & ICH_VMCR_CBPR_MASK ) + { + bpr = vgic_v3_get_bpr0(vmcr); + if ( bpr < 7 ) + bpr++; + } + else + bpr = (vmcr & ICH_VMCR_BPR1_MASK) >> ICH_VMCR_BPR1_SHIFT; + + return bpr; +} + +static void vgic_v3_read_bpr1(struct cpu_user_regs *regs, uint32_t vmcr, + int rt) +{ + set_user_reg(regs, rt, vgic_v3_get_bpr1(vmcr)); +} + +static void vgic_v3_write_bpr1(struct cpu_user_regs *regs, uint32_t vmcr, + int rt) +{ + register_t val = get_user_reg(regs, rt); + uint8_t bpr_min = vgic_v3_bpr_min(); + + if ( vmcr & ICH_VMCR_CBPR_MASK ) + return; + + /* Enforce BPR limiting */ + if ( val < bpr_min ) + val = bpr_min; + + val <<= ICH_VMCR_BPR1_SHIFT; + val &= ICH_VMCR_BPR1_MASK; + vmcr &= ~ICH_VMCR_BPR1_MASK; + vmcr |= val; + + vgic_v3_write_vmcr(vmcr); +} + /* vgic_v3_handle_cpuif_access * returns: true if the register is emulated * false if not a sysreg @@ -62,6 +119,14 @@ bool vgic_v3_handle_cpuif_access(struct cpu_user_regs *regs) switch ( sysreg ) { + + case HSR_SYSREG_ICC_BPR1_EL1: + if ( is_read ) + fn = vgic_v3_read_bpr1; + else + fn = vgic_v3_write_bpr1; + break; + default: ret = false; goto end; diff --git a/xen/include/asm-arm/arm64/sysregs.h b/xen/include/asm-arm/arm64/sysregs.h index 1811234249..6aa6deedfe 100644 --- a/xen/include/asm-arm/arm64/sysregs.h +++ b/xen/include/asm-arm/arm64/sysregs.h @@ -89,6 +89,7 @@ #define HSR_SYSREG_ICC_ASGI1R_EL1 HSR_SYSREG(3,1,c12,c11,6) #define HSR_SYSREG_ICC_SGI0R_EL1 HSR_SYSREG(3,2,c12,c11,7) #define HSR_SYSREG_ICC_SRE_EL1 HSR_SYSREG(3,0,c12,c12,5) +#define HSR_SYSREG_ICC_BPR1_EL1 HSR_SYSREG(3,0,c12,c12,3) #define HSR_SYSREG_CONTEXTIDR_EL1 HSR_SYSREG(3,0,c13,c0,1) #define HSR_SYSREG_PMCR_EL0 HSR_SYSREG(3,3,c9,c12,0) diff --git a/xen/include/asm-arm/gic_v3_defs.h b/xen/include/asm-arm/gic_v3_defs.h index 10a2aeea93..e247327bf0 100644 --- a/xen/include/asm-arm/gic_v3_defs.h +++ b/xen/include/asm-arm/gic_v3_defs.h @@ -164,6 +164,12 @@ #define ICH_VMCR_VENG1 (1 << 1) #define ICH_VMCR_PRIORITY_MASK 0xff #define ICH_VMCR_PRIORITY_SHIFT 24 +#define ICH_VMCR_CBPR_SHIFT 4 +#define ICH_VMCR_CBPR_MASK (1 << ICH_VMCR_CBPR_SHIFT) +#define ICH_VMCR_BPR0_SHIFT 21 +#define ICH_VMCR_BPR0_MASK (7 << ICH_VMCR_BPR0_SHIFT) +#define ICH_VMCR_BPR1_SHIFT 18 +#define ICH_VMCR_BPR1_MASK (7 << ICH_VMCR_BPR1_SHIFT) #define ICH_LR_VIRTUAL_MASK 0xffff #define ICH_LR_VIRTUAL_SHIFT 0 -- 2.14.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |