public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Leif Lindholm <leif.lindholm@linaro.org>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	Laszlo Ersek <lersek@redhat.com>,
	"Gao, Liming" <liming.gao@intel.com>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>,
	Marc Zyngier <marc.zyngier@arm.com>
Subject: Re: [PATCH] MdePkg/BaseIoLibIntrinsicArmVirt ARM: avoid double word loads and stores
Date: Wed, 14 Nov 2018 22:15:37 +0000	[thread overview]
Message-ID: <20181114221537.4jbrkdlv4fornkgz@bivouac.eciton.net> (raw)
In-Reply-To: <CAKv+Gu8A65J8xWUt5g9QVcVpQBkgEU2k76aDDP+_t0Y82c+doQ@mail.gmail.com>

On Wed, Nov 07, 2018 at 02:38:37PM +0100, Ard Biesheuvel wrote:
> On 7 November 2018 at 14:13, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
> > BaseIoLibIntrinsicArmVirt was created to prevent LTO from merging
> > accesses to MMIO regions, resulting in instructions with multiple
> > output registers that KVM on ARM cannot emulate (since the exception
> > syndrome information that KVM relies on can only describe a single
> > output register)
> >
> > However, using double word loads on ARM amounts to the same thing,
> > and so code that relies on doing 64-bit MMIO to regions that are
> > emulated under KVM (such as the GICv3 TYPER register) will still
> > suffer from the original issue.
> >
> > So replace ldrd and strd with equivalent two instruction sequences.
> >
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> 
> Please consider this patch with the hunk below appended

Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

> > ---
> >  MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.S | 6 ++++--
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.S b/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.S
> > index 3ad22bd5706d..0d802d6928d6 100644
> > --- a/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.S
> > +++ b/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.S
> > @@ -125,7 +125,8 @@ ASM_PFX(MmioWrite32Internal):
> >  //  @return The value read.
> >  //
> >  ASM_PFX(MmioRead64Internal):
> > -  ldrd    r0, r1, [r0]
> > +  ldr     r1, [r0, #4]
> > +  ldr     r0, [r0]
> >    dmb
> >    bx      lr
> >
> > @@ -141,5 +142,6 @@ ASM_PFX(MmioRead64Internal):
> >  //
> >  ASM_PFX(MmioWrite64Internal):
> >    dmb     st
> > -  strd    r2, r3, [r0]
> > +  str     r2, [r0]
> > +  str     r3, [r0, #4]
> >    bx      lr
> 
> diff --git a/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.asm
> b/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.asm
> index e1a3d68a430c..deba8c1f0c59 100644
> --- a/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.asm
> +++ b/MdePkg/Library/BaseIoLibIntrinsic/Arm/ArmVirtMmio.asm
> @@ -127,7 +127,8 @@ MmioWrite32Internal
>  ;  @return The value read.
>  ;
>  MmioRead64Internal
> -  ldrd    r0, r1, [r0]
> +  ldr     r1, [r0, #4]
> +  ldr     r0, [r0]
>    dmb
>    bx      lr
> 
> @@ -143,7 +144,8 @@ MmioRead64Internal
>  ;
>  MmioWrite64Internal
>    dmb     st
> -  strd    r2, r3, [r0]
> +  str     r2, [r0]
> +  str     r3, [r0, #4]
>    bx      lr
> 
>    END


  parent reply	other threads:[~2018-11-14 22:15 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-07 13:13 [PATCH] MdePkg/BaseIoLibIntrinsicArmVirt ARM: avoid double word loads and stores Ard Biesheuvel
2018-11-07 13:38 ` Ard Biesheuvel
2018-11-07 16:47   ` Philippe Mathieu-Daudé
2018-11-07 19:30     ` Laszlo Ersek
2018-11-14 22:15   ` Leif Lindholm [this message]
2018-11-15 13:08     ` Ard Biesheuvel

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-list 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=20181114221537.4jbrkdlv4fornkgz@bivouac.eciton.net \
    --to=devel@edk2.groups.io \
    /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