From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-arm] [PATCH 2/3] hw/intc/arm_gicv3: Remove incorrect usage of fieldoffset
Date: Wed, 7 Dec 2016 22:02:21 +0100 [thread overview]
Message-ID: <20161207210221.GF9606@toto> (raw)
In-Reply-To: <1481046379-32632-3-git-send-email-peter.maydell@linaro.org>
On Tue, Dec 06, 2016 at 05:46:18PM +0000, Peter Maydell wrote:
> In the ARMCPRegInfo definitions for the GICv3 CPU interface
> registers, we were trying to use .fieldoffset to specify
> the locations of data fields within the GICv3CPUState struct.
> This is completely broken, because .fieldoffset is for offsets
> into the CPUARMState struct. We didn't notice because we
> were only using this for reads to BPR0, AP0R<n>, IGRPEN0
> and CTLR_EL3, and Linux doesn't use these registers.
>
> Replace the .fieldoffset uses with explicit read functions.
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> hw/intc/arm_gicv3_cpuif.c | 13 ++++++-------
> 1 file changed, 6 insertions(+), 7 deletions(-)
>
> diff --git a/hw/intc/arm_gicv3_cpuif.c b/hw/intc/arm_gicv3_cpuif.c
> index bca30c4..35e8eb3 100644
> --- a/hw/intc/arm_gicv3_cpuif.c
> +++ b/hw/intc/arm_gicv3_cpuif.c
> @@ -1118,35 +1118,35 @@ static const ARMCPRegInfo gicv3_cpuif_reginfo[] = {
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 8, .opc2 = 3,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_bpr[GICV3_G0]),
> + .readfn = icc_bpr_read,
> .writefn = icc_bpr_write,
> },
> { .name = "ICC_AP0R0_EL1", .state = ARM_CP_STATE_BOTH,
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 8, .opc2 = 4,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_apr[GICV3_G0][0]),
> + .readfn = icc_ap_read,
> .writefn = icc_ap_write,
> },
> { .name = "ICC_AP0R1_EL1", .state = ARM_CP_STATE_BOTH,
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 8, .opc2 = 5,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_apr[GICV3_G0][1]),
> + .readfn = icc_ap_read,
> .writefn = icc_ap_write,
> },
> { .name = "ICC_AP0R2_EL1", .state = ARM_CP_STATE_BOTH,
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 8, .opc2 = 6,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_apr[GICV3_G0][2]),
> + .readfn = icc_ap_read,
> .writefn = icc_ap_write,
> },
> { .name = "ICC_AP0R3_EL1", .state = ARM_CP_STATE_BOTH,
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 8, .opc2 = 7,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_apr[GICV3_G0][3]),
> + .readfn = icc_ap_read,
> .writefn = icc_ap_write,
> },
> /* All the ICC_AP1R*_EL1 registers are banked */
> @@ -1275,7 +1275,7 @@ static const ARMCPRegInfo gicv3_cpuif_reginfo[] = {
> .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 12, .opc2 = 6,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL1_RW, .accessfn = gicv3_fiq_access,
> - .fieldoffset = offsetof(GICv3CPUState, icc_igrpen[GICV3_G0]),
> + .readfn = icc_igrpen_read,
> .writefn = icc_igrpen_write,
> },
> /* This register is banked */
> @@ -1299,7 +1299,6 @@ static const ARMCPRegInfo gicv3_cpuif_reginfo[] = {
> .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 12, .opc2 = 4,
> .type = ARM_CP_IO | ARM_CP_NO_RAW,
> .access = PL3_RW,
> - .fieldoffset = offsetof(GICv3CPUState, icc_ctlr_el3),
> .readfn = icc_ctlr_el3_read,
> .writefn = icc_ctlr_el3_write,
> },
> --
> 2.7.4
>
next prev parent reply other threads:[~2016-12-07 21:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-06 17:46 [Qemu-arm] [PATCH 0/3] GICv3 bugfixes (preliminary for virt) Peter Maydell
2016-12-06 17:46 ` [Qemu-arm] [PATCH 1/3] target-arm: Log AArch64 exception returns Peter Maydell
2016-12-07 21:01 ` Edgar E. Iglesias
2016-12-06 17:46 ` [Qemu-arm] [PATCH 2/3] hw/intc/arm_gicv3: Remove incorrect usage of fieldoffset Peter Maydell
2016-12-07 21:02 ` Edgar E. Iglesias [this message]
2016-12-06 17:46 ` [Qemu-arm] [PATCH 3/3] hw/intc/arm_gicv3: Don't signal Pending+Active interrupts to CPU Peter Maydell
2016-12-07 22:46 ` Edgar E. Iglesias
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=20161207210221.GF9606@toto \
--to=edgar.iglesias@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.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).