From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52756) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b1Jss-0003aO-IV for qemu-devel@nongnu.org; Fri, 13 May 2016 16:40:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b1Jsq-0006VW-GN for qemu-devel@nongnu.org; Fri, 13 May 2016 16:40:29 -0400 MIME-Version: 1.0 Sender: alistair23@gmail.com In-Reply-To: References: <77db20f0411ab4e6c62cc307e390bfd415101282.1462557987.git.alistair.francis@xilinx.com> From: Alistair Francis Date: Fri, 13 May 2016 13:39:32 -0700 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH v1 1/2] target-arm: Add the HSTR_EL2 register List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Alistair Francis , Edgar Iglesias , "Edgar E. Iglesias" , qemu-arm , QEMU Developers On Fri, May 13, 2016 at 10:46 AM, Peter Maydell wrote: > On 6 May 2016 at 19:11, Alistair Francis wrote: >> Add the Hypervisor System Trap Register for EL2. >> >> This register is used early in the Linux boot and without it the kernel >> aborts with a "Synchronous Abort" error. >> >> Signed-off-by: Alistair Francis >> --- >> >> target-arm/helper.c | 7 +++++++ >> 1 file changed, 7 insertions(+) >> >> diff --git a/target-arm/helper.c b/target-arm/helper.c >> index 09638b2..65e8ff1 100644 >> --- a/target-arm/helper.c >> +++ b/target-arm/helper.c >> @@ -3470,6 +3470,9 @@ static const ARMCPRegInfo el3_no_el2_cp_reginfo[] = { >> .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4, >> .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any, >> .type = ARM_CP_CONST, .resetvalue = 0 }, >> + { .name = "HSTR_EL2", .state = ARM_CP_STATE_AA64, >> + .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 3, >> + .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, >> REGINFO_SENTINEL >> }; >> >> @@ -3703,6 +3706,10 @@ static const ARMCPRegInfo el2_cp_reginfo[] = { >> .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4, >> .access = PL2_RW, >> .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) }, >> + { .name = "HSTR_EL2", .state = ARM_CP_STATE_AA64, >> + .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 3, >> + .access = PL2_RW, >> + .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore, }, >> REGINFO_SENTINEL >> }; > > Can we have the 32-bit version of the register too, please? (I think > it should be possible to do this with a STATE_BOTH stanza). Yep, I think I added it correctly. > > Can we have the el2_cp_reginfo implemented to be a reads-as-written > to a hstr_el2 field in the env->cp15 struct? That way we won't have > to come back to the regdef struct as and when we actually implement > the trap bits to do something... Yep, I have added that as well. Sending V2 now. Thanks, Alistair > > thanks > -- PMM >