On Wed, May 17 2017 at 11:54:23 am BST, Auger Eric <eric.auger@xxxxxxxxxx> wrote: > Hi, > > On 03/05/2017 12:45, Marc Zyngier wrote: >> As we're about to access the Active Priority registers a lot more, >> let's define accessors that take the register number as a parameter. >> >> Signed-off-by: Marc Zyngier <marc.zyngier@xxxxxxx> >> --- >> virt/kvm/arm/hyp/vgic-v3-sr.c | 116 ++++++++++++++++++++++++++++++++++++------ >> 1 file changed, 100 insertions(+), 16 deletions(-) >> >> diff --git a/virt/kvm/arm/hyp/vgic-v3-sr.c b/virt/kvm/arm/hyp/vgic-v3-sr.c >> index 32c3295929b0..990d9d1e85d0 100644 >> --- a/virt/kvm/arm/hyp/vgic-v3-sr.c >> +++ b/virt/kvm/arm/hyp/vgic-v3-sr.c >> @@ -118,6 +118,90 @@ static void __hyp_text __gic_v3_set_lr(u64 val, int lr) >> } >> } >> >> +static void __hyp_text __vgic_v3_write_ap0rn(u32 val, int n) >> +{ >> + switch (n) { >> + case 0: >> + write_gicreg(val, ICH_AP0R0_EL2); >> + break; >> + case 1: >> + write_gicreg(val, ICH_AP0R1_EL2); >> + break; >> + case 2: >> + write_gicreg(val, ICH_AP0R2_EL2); >> + break; >> + case 3: >> + write_gicreg(val, ICH_AP0R3_EL2); >> + break; >> + } >> +} >> + >> +static void __hyp_text __vgic_v3_write_ap1rn(u32 val, int n) >> +{ >> + switch (n) { >> + case 0: >> + write_gicreg(val, ICH_AP1R0_EL2); >> + break; >> + case 1: >> + write_gicreg(val, ICH_AP1R1_EL2); >> + break; >> + case 2: >> + write_gicreg(val, ICH_AP1R2_EL2); >> + break; >> + case 3: >> + write_gicreg(val, ICH_AP1R3_EL2); >> + break; >> + } >> +} >> + >> +static u32 __hyp_text __vgic_v3_read_ap0rn(int n) >> +{ >> + u32 val; >> + >> + switch (n) { >> + case 0: >> + val = read_gicreg(ICH_AP0R0_EL2); >> + break; >> + case 1: >> + val = read_gicreg(ICH_AP0R1_EL2); >> + break; >> + case 2: >> + val = read_gicreg(ICH_AP0R2_EL2); >> + break; >> + case 3: >> + val = read_gicreg(ICH_AP0R3_EL2); >> + break; >> + default: >> + unreachable(); > I am not familiar with that macro. For my curiosity why is it used here > and not in write functions. I probably have looked at the assembly code and realised that using this macro was helping the compiler not to generate horrible code because it doesn't know that it will always return a value. The "write" part doesn't need this not to be awful, so I didn't feel the need to add it. Can do though. > > Besides Mark's comment, > > Reviewed-by: Eric Auger <eric.auger@xxxxxxxxxx> Thanks, M. -- Jazz is not dead, it just smell funny.