diff mbox

[Linaro-uefi,v2] EFI: fix build for AARCH64

Message ID 20170103122116.27358-1-leif.lindholm@linaro.org
State Superseded
Headers show

Commit Message

Leif Lindholm Jan. 3, 2017, 12:21 p.m. UTC
AARCH64 build was left out of initial version, so add to .dsc and set
ACPI_MACHINE_WIDTH correctly.

Also, acpidump.inf specified explicit per-architecture (but identical)
CFLAGS. Rather than duplicating this further, use the same setting for
all architectures until there is actually a need to diverge.

Also update README to make it obvious AArch64 is supported.

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

v2 contains a fix for a non-functional issue, which could generate
warnings when building with CLANG.

 generate/efi/AcpiPkg.dsc           | 2 +-
 generate/efi/README                | 1 +
 generate/efi/acpidump/acpidump.inf | 6 ++----
 source/include/platform/acefi.h    | 2 +-
 4 files changed, 5 insertions(+), 6 deletions(-)

Comments

Al Stone Jan. 26, 2017, 5:05 p.m. UTC | #1
On 01/03/2017 05:21 AM, Leif Lindholm wrote:
> AARCH64 build was left out of initial version, so add to .dsc and set
> ACPI_MACHINE_WIDTH correctly.
> 
> Also, acpidump.inf specified explicit per-architecture (but identical)
> CFLAGS. Rather than duplicating this further, use the same setting for
> all architectures until there is actually a need to diverge.
> 
> Also update README to make it obvious AArch64 is supported.
> 
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
> 
> v2 contains a fix for a non-functional issue, which could generate
> warnings when building with CLANG.
> 
>  generate/efi/AcpiPkg.dsc           | 2 +-
>  generate/efi/README                | 1 +
>  generate/efi/acpidump/acpidump.inf | 6 ++----
>  source/include/platform/acefi.h    | 2 +-
>  4 files changed, 5 insertions(+), 6 deletions(-)
> 
> diff --git a/generate/efi/AcpiPkg.dsc b/generate/efi/AcpiPkg.dsc
> index 323d39c..9302555 100644
> --- a/generate/efi/AcpiPkg.dsc
> +++ b/generate/efi/AcpiPkg.dsc
> @@ -18,7 +18,7 @@
>    PLATFORM_VERSION        = 1.0
>    DSC_SPECIFICATION       = 0x00010005
>    OUTPUT_DIRECTORY        = Build/Acpi
> -  SUPPORTED_ARCHITECTURES = IA32|X64
> +  SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
>    BUILD_TARGETS           = DEBUG|RELEASE
>    SKUID_IDENTIFIER        = DEFAULT
>  
> diff --git a/generate/efi/README b/generate/efi/README
> index 7550e9d..b3ec3ff 100644
> --- a/generate/efi/README
> +++ b/generate/efi/README
> @@ -20,6 +20,7 @@ But the porting has only been tested in a Linux environment.
>  
>     You can find built EFI binaries (e.x., acpidump.efi) in the following
>     folders:
> +     Build/Acpi/DEBUG_GCC47/AARCH64: aarch64 targets
>       Build/Acpi/DEBUG_GCC47/IA32: i386 targets
>       Build/Acpi/DEBUG_GCC47/X64: x86_64 targets
>  
> diff --git a/generate/efi/acpidump/acpidump.inf b/generate/efi/acpidump/acpidump.inf
> index 8d2c979..e5f21c0 100644
> --- a/generate/efi/acpidump/acpidump.inf
> +++ b/generate/efi/acpidump/acpidump.inf
> @@ -55,7 +55,5 @@
>    BaseLib
>  
>  [BuildOptions]
> -  MSFT:*_*_IA32_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> -  MSFT:*_*_X64_CC_FLAGS  = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> -  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
> -  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
> +  MSFT:*_*_*_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> +  GCC:*_*_*_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
> diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h
> index 8328ab6..75ef89a 100644
> --- a/source/include/platform/acefi.h
> +++ b/source/include/platform/acefi.h
> @@ -140,7 +140,7 @@
>  
>  #define VOID        void
>  
> -#if defined(__ia64__) || defined(__x86_64__)
> +#if defined(__aarch64__) || defined(__ia64__) || defined(__x86_64__)
>  
>  #define ACPI_MACHINE_WIDTH          64
>  
> 

It's been over a month since this really very simple patch was submitted.  In
the meantime, acpidump.efi does not build without it.  Any particular reason
this has not been merged?  Leif isn't the only user that needs it.

Thanks.
Zheng, Lv Feb. 9, 2017, 2:24 a.m. UTC | #2
Hi, Guys

Thanks for the reminder.
Here goes my opinions.

> From: Devel [mailto:devel-bounces@acpica.org] On Behalf Of Al Stone
> Sent: Friday, January 27, 2017 1:05 AM
> Subject: Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
> 
> On 01/03/2017 05:21 AM, Leif Lindholm wrote:
> > AARCH64 build was left out of initial version, so add to .dsc and set
> > ACPI_MACHINE_WIDTH correctly.
> >
> > Also, acpidump.inf specified explicit per-architecture (but identical)
> > CFLAGS. Rather than duplicating this further, use the same setting for
> > all architectures until there is actually a need to diverge.
> >
> > Also update README to make it obvious AArch64 is supported.
> >
> > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> > ---
> >
> > v2 contains a fix for a non-functional issue, which could generate
> > warnings when building with CLANG.
> >
> >  generate/efi/AcpiPkg.dsc           | 2 +-
> >  generate/efi/README                | 1 +
> >  generate/efi/acpidump/acpidump.inf | 6 ++----
> >  source/include/platform/acefi.h    | 2 +-
> >  4 files changed, 5 insertions(+), 6 deletions(-)
> >
> > diff --git a/generate/efi/AcpiPkg.dsc b/generate/efi/AcpiPkg.dsc
> > index 323d39c..9302555 100644
> > --- a/generate/efi/AcpiPkg.dsc
> > +++ b/generate/efi/AcpiPkg.dsc
> > @@ -18,7 +18,7 @@
> >    PLATFORM_VERSION        = 1.0
> >    DSC_SPECIFICATION       = 0x00010005
> >    OUTPUT_DIRECTORY        = Build/Acpi
> > -  SUPPORTED_ARCHITECTURES = IA32|X64
> > +  SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
> >    BUILD_TARGETS           = DEBUG|RELEASE
> >    SKUID_IDENTIFIER        = DEFAULT
> >
> > diff --git a/generate/efi/README b/generate/efi/README
> > index 7550e9d..b3ec3ff 100644
> > --- a/generate/efi/README
> > +++ b/generate/efi/README
> > @@ -20,6 +20,7 @@ But the porting has only been tested in a Linux environment.
> >
> >     You can find built EFI binaries (e.x., acpidump.efi) in the following
> >     folders:
> > +     Build/Acpi/DEBUG_GCC47/AARCH64: aarch64 targets
> >       Build/Acpi/DEBUG_GCC47/IA32: i386 targets
> >       Build/Acpi/DEBUG_GCC47/X64: x86_64 targets

Could you reorder this list in the README file?
New support should be listed below the old supports.
And I believe EFI is much more widely used on IA32 and X64 platforms.

> >
> > diff --git a/generate/efi/acpidump/acpidump.inf b/generate/efi/acpidump/acpidump.inf
> > index 8d2c979..e5f21c0 100644
> > --- a/generate/efi/acpidump/acpidump.inf
> > +++ b/generate/efi/acpidump/acpidump.inf
> > @@ -55,7 +55,5 @@
> >    BaseLib
> >
> >  [BuildOptions]
> > -  MSFT:*_*_IA32_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > -  MSFT:*_*_X64_CC_FLAGS  = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > -  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> iwithprefix include
> > -  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> iwithprefix include
> > +  MSFT:*_*_*_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > +  GCC:*_*_*_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix
> include

Maybe this should be in a separate patch.

> > diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h
> > index 8328ab6..75ef89a 100644
> > --- a/source/include/platform/acefi.h
> > +++ b/source/include/platform/acefi.h
> > @@ -140,7 +140,7 @@
> >
> >  #define VOID        void
> >
> > -#if defined(__ia64__) || defined(__x86_64__)
> > +#if defined(__aarch64__) || defined(__ia64__) || defined(__x86_64__)
> >
> >  #define ACPI_MACHINE_WIDTH          64
> >
> >

TBH, I don't have any idea on how aarch64 EFI wrapper should be.
So what we can do is just relying on the community.
So I'm OK with this change.
But it seems this commit should also define __aarch64__ in accygwin.h.
Is this a mistake?

Thanks and best regards
Lv


> 
> It's been over a month since this really very simple patch was submitted.  In
> the meantime, acpidump.efi does not build without it.  Any particular reason
> this has not been merged?  Leif isn't the only user that needs it.
> 
> Thanks.
> 
> --
> ciao,
> al
> -----------------------------------
> Al Stone
> Software Engineer
> Red Hat, Inc.
> ahs3@redhat.com
> -----------------------------------
> _______________________________________________
> Devel mailing list
> Devel@acpica.org
> https://lists.acpica.org/mailman/listinfo/devel
Leif Lindholm Feb. 9, 2017, 12:34 p.m. UTC | #3
Hi Lv,

Many thanks for review.

On Thu, Feb 09, 2017 at 02:24:39AM +0000, Zheng, Lv wrote:
> Hi, Guys
> 
> Thanks for the reminder.
> Here goes my opinions.
> 
> > From: Devel [mailto:devel-bounces@acpica.org] On Behalf Of Al Stone
> > Sent: Friday, January 27, 2017 1:05 AM
> > Subject: Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
> > 
> > On 01/03/2017 05:21 AM, Leif Lindholm wrote:
> > > AARCH64 build was left out of initial version, so add to .dsc and set
> > > ACPI_MACHINE_WIDTH correctly.
> > >
> > > Also, acpidump.inf specified explicit per-architecture (but identical)
> > > CFLAGS. Rather than duplicating this further, use the same setting for
> > > all architectures until there is actually a need to diverge.
> > >
> > > Also update README to make it obvious AArch64 is supported.
> > >
> > > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> > > ---
> > >
> > > v2 contains a fix for a non-functional issue, which could generate
> > > warnings when building with CLANG.
> > >
> > >  generate/efi/AcpiPkg.dsc           | 2 +-
> > >  generate/efi/README                | 1 +
> > >  generate/efi/acpidump/acpidump.inf | 6 ++----
> > >  source/include/platform/acefi.h    | 2 +-
> > >  4 files changed, 5 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/generate/efi/AcpiPkg.dsc b/generate/efi/AcpiPkg.dsc
> > > index 323d39c..9302555 100644
> > > --- a/generate/efi/AcpiPkg.dsc
> > > +++ b/generate/efi/AcpiPkg.dsc
> > > @@ -18,7 +18,7 @@
> > >    PLATFORM_VERSION        = 1.0
> > >    DSC_SPECIFICATION       = 0x00010005
> > >    OUTPUT_DIRECTORY        = Build/Acpi
> > > -  SUPPORTED_ARCHITECTURES = IA32|X64
> > > +  SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
> > >    BUILD_TARGETS           = DEBUG|RELEASE
> > >    SKUID_IDENTIFIER        = DEFAULT
> > >
> > > diff --git a/generate/efi/README b/generate/efi/README
> > > index 7550e9d..b3ec3ff 100644
> > > --- a/generate/efi/README
> > > +++ b/generate/efi/README
> > > @@ -20,6 +20,7 @@ But the porting has only been tested in a Linux environment.
> > >
> > >     You can find built EFI binaries (e.x., acpidump.efi) in the following
> > >     folders:
> > > +     Build/Acpi/DEBUG_GCC47/AARCH64: aarch64 targets
> > >       Build/Acpi/DEBUG_GCC47/IA32: i386 targets
> > >       Build/Acpi/DEBUG_GCC47/X64: x86_64 targets
> 
> Could you reorder this list in the README file?
> New support should be listed below the old supports.
> And I believe EFI is much more widely used on IA32 and X64 platforms.

That's probably true, I was going for alphabetical order :)
If we are sorting by order of most widely used, I would think x86_64
should go first. So please clarify which order you would prefer.

> > >
> > > diff --git a/generate/efi/acpidump/acpidump.inf b/generate/efi/acpidump/acpidump.inf
> > > index 8d2c979..e5f21c0 100644
> > > --- a/generate/efi/acpidump/acpidump.inf
> > > +++ b/generate/efi/acpidump/acpidump.inf
> > > @@ -55,7 +55,5 @@
> > >    BaseLib
> > >
> > >  [BuildOptions]
> > > -  MSFT:*_*_IA32_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > -  MSFT:*_*_X64_CC_FLAGS  = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > -  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> > iwithprefix include
> > > -  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> > iwithprefix include
> > > +  MSFT:*_*_*_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > +  GCC:*_*_*_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix
> > include
> 
> Maybe this should be in a separate patch.

I could, but this is actually part of the main build fix. It's been a
while since I wrote it, but I think the -U_LINUX was the change that
made it possible to build at all, whereas the changes below made the
application function properly.

> > > diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h
> > > index 8328ab6..75ef89a 100644
> > > --- a/source/include/platform/acefi.h
> > > +++ b/source/include/platform/acefi.h
> > > @@ -140,7 +140,7 @@
> > >
> > >  #define VOID        void
> > >
> > > -#if defined(__ia64__) || defined(__x86_64__)
> > > +#if defined(__aarch64__) || defined(__ia64__) || defined(__x86_64__)
> > >
> > >  #define ACPI_MACHINE_WIDTH          64
> > >
> > >
> 
> TBH, I don't have any idea on how aarch64 EFI wrapper should be.
> So what we can do is just relying on the community.
> So I'm OK with this change.
> But it seems this commit should also define __aarch64__ in accygwin.h.
> Is this a mistake?

That is possibly true, but I don't have a Windows environment
available to test in.

Evan, Alexei? Could either of you test this?

Best Regards,

Leif

> 
> Thanks and best regards
> Lv
> 
> 
> > 
> > It's been over a month since this really very simple patch was submitted.  In
> > the meantime, acpidump.efi does not build without it.  Any particular reason
> > this has not been merged?  Leif isn't the only user that needs it.
> > 
> > Thanks.
> > 
> > --
> > ciao,
> > al
> > -----------------------------------
> > Al Stone
> > Software Engineer
> > Red Hat, Inc.
> > ahs3@redhat.com
> > -----------------------------------
> > _______________________________________________
> > Devel mailing list
> > Devel@acpica.org
> > https://lists.acpica.org/mailman/listinfo/devel
Zheng, Lv Feb. 10, 2017, 2:33 a.m. UTC | #4
Hi,

Thanks for the contribution.

> From: Leif Lindholm [mailto:leif.lindholm@linaro.org]
> Subject: Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
> 
> Hi Lv,
> 
> Many thanks for review.
> 
> On Thu, Feb 09, 2017 at 02:24:39AM +0000, Zheng, Lv wrote:
> > Hi, Guys
> >
> > Thanks for the reminder.
> > Here goes my opinions.
> >
> > > From: Devel [mailto:devel-bounces@acpica.org] On Behalf Of Al Stone
> > > Sent: Friday, January 27, 2017 1:05 AM
> > > Subject: Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
> > >
> > > On 01/03/2017 05:21 AM, Leif Lindholm wrote:
> > > > AARCH64 build was left out of initial version, so add to .dsc and set
> > > > ACPI_MACHINE_WIDTH correctly.
> > > >
> > > > Also, acpidump.inf specified explicit per-architecture (but identical)
> > > > CFLAGS. Rather than duplicating this further, use the same setting for
> > > > all architectures until there is actually a need to diverge.
> > > >
> > > > Also update README to make it obvious AArch64 is supported.
> > > >
> > > > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> > > > ---
> > > >
> > > > v2 contains a fix for a non-functional issue, which could generate
> > > > warnings when building with CLANG.
> > > >
> > > >  generate/efi/AcpiPkg.dsc           | 2 +-
> > > >  generate/efi/README                | 1 +
> > > >  generate/efi/acpidump/acpidump.inf | 6 ++----
> > > >  source/include/platform/acefi.h    | 2 +-
> > > >  4 files changed, 5 insertions(+), 6 deletions(-)
> > > >
> > > > diff --git a/generate/efi/AcpiPkg.dsc b/generate/efi/AcpiPkg.dsc
> > > > index 323d39c..9302555 100644
> > > > --- a/generate/efi/AcpiPkg.dsc
> > > > +++ b/generate/efi/AcpiPkg.dsc
> > > > @@ -18,7 +18,7 @@
> > > >    PLATFORM_VERSION        = 1.0
> > > >    DSC_SPECIFICATION       = 0x00010005
> > > >    OUTPUT_DIRECTORY        = Build/Acpi
> > > > -  SUPPORTED_ARCHITECTURES = IA32|X64
> > > > +  SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
> > > >    BUILD_TARGETS           = DEBUG|RELEASE
> > > >    SKUID_IDENTIFIER        = DEFAULT
> > > >
> > > > diff --git a/generate/efi/README b/generate/efi/README
> > > > index 7550e9d..b3ec3ff 100644
> > > > --- a/generate/efi/README
> > > > +++ b/generate/efi/README
> > > > @@ -20,6 +20,7 @@ But the porting has only been tested in a Linux environment.
> > > >
> > > >     You can find built EFI binaries (e.x., acpidump.efi) in the following
> > > >     folders:
> > > > +     Build/Acpi/DEBUG_GCC47/AARCH64: aarch64 targets
> > > >       Build/Acpi/DEBUG_GCC47/IA32: i386 targets
> > > >       Build/Acpi/DEBUG_GCC47/X64: x86_64 targets
> >
> > Could you reorder this list in the README file?
> > New support should be listed below the old supports.
> > And I believe EFI is much more widely used on IA32 and X64 platforms.
> 
> That's probably true, I was going for alphabetical order :)
> If we are sorting by order of most widely used, I would think x86_64
> should go first. So please clarify which order you would prefer.

I agreed.
Then this is OK to me and it is really trivial.

> 
> > > >
> > > > diff --git a/generate/efi/acpidump/acpidump.inf b/generate/efi/acpidump/acpidump.inf
> > > > index 8d2c979..e5f21c0 100644
> > > > --- a/generate/efi/acpidump/acpidump.inf
> > > > +++ b/generate/efi/acpidump/acpidump.inf
> > > > @@ -55,7 +55,5 @@
> > > >    BaseLib
> > > >
> > > >  [BuildOptions]
> > > > -  MSFT:*_*_IA32_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > > -  MSFT:*_*_X64_CC_FLAGS  = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > > -  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> > > iwithprefix include
> > > > -  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> > > iwithprefix include
> > > > +  MSFT:*_*_*_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
> > > > +  GCC:*_*_*_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -
> iwithprefix
> > > include
> >
> > Maybe this should be in a separate patch.
> 
> I could, but this is actually part of the main build fix. It's been a
> while since I wrote it, but I think the -U_LINUX was the change that
> made it possible to build at all, whereas the changes below made the
> application function properly.

I don't understand here.
Both
 -  GCC:*_*_X64_CC_FLAGS
 -  GCC:*_*_IA32_CC_FLAGS
And
 +  GCC:*_*_*_CC_FLAGS
Lines contain "-U__linux__ -U_LINUX".
So this change is only a cleanup to convert:
*_*_IA32_XXX/*_*_X64_XXX
Into:
*_*_*_XXX
Which can be done in a separate patch.

And if AARCH64 support is dependent on it, you can rebase AARCH64 support on top of this patch.

It's just an upstream philosophy that one patch should only do one thing and do it perfectly.
So that fix can be easily back ported and when regression is triggered, only affection wrong parts are reverted.

Thanks and best regards
Lv

> 
> > > > diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h
> > > > index 8328ab6..75ef89a 100644
> > > > --- a/source/include/platform/acefi.h
> > > > +++ b/source/include/platform/acefi.h
> > > > @@ -140,7 +140,7 @@
> > > >
> > > >  #define VOID        void
> > > >
> > > > -#if defined(__ia64__) || defined(__x86_64__)
> > > > +#if defined(__aarch64__) || defined(__ia64__) || defined(__x86_64__)
> > > >
> > > >  #define ACPI_MACHINE_WIDTH          64
> > > >
> > > >
> >
> > TBH, I don't have any idea on how aarch64 EFI wrapper should be.
> > So what we can do is just relying on the community.
> > So I'm OK with this change.
> > But it seems this commit should also define __aarch64__ in accygwin.h.
> > Is this a mistake?
> 
> That is possibly true, but I don't have a Windows environment
> available to test in.
> 
> Evan, Alexei? Could either of you test this?
> 
> Best Regards,
> 
> Leif
> 
> >
> > Thanks and best regards
> > Lv
> >
> >
> > >
> > > It's been over a month since this really very simple patch was submitted.  In
> > > the meantime, acpidump.efi does not build without it.  Any particular reason
> > > this has not been merged?  Leif isn't the only user that needs it.
> > >
> > > Thanks.
> > >
> > > --
> > > ciao,
> > > al
> > > -----------------------------------
> > > Al Stone
> > > Software Engineer
> > > Red Hat, Inc.
> > > ahs3@redhat.com
> > > -----------------------------------
> > > _______________________________________________
> > > Devel mailing list
> > > Devel@acpica.org
> > > https://lists.acpica.org/mailman/listinfo/devel
diff mbox

Patch

diff --git a/generate/efi/AcpiPkg.dsc b/generate/efi/AcpiPkg.dsc
index 323d39c..9302555 100644
--- a/generate/efi/AcpiPkg.dsc
+++ b/generate/efi/AcpiPkg.dsc
@@ -18,7 +18,7 @@ 
   PLATFORM_VERSION        = 1.0
   DSC_SPECIFICATION       = 0x00010005
   OUTPUT_DIRECTORY        = Build/Acpi
-  SUPPORTED_ARCHITECTURES = IA32|X64
+  SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
   BUILD_TARGETS           = DEBUG|RELEASE
   SKUID_IDENTIFIER        = DEFAULT
 
diff --git a/generate/efi/README b/generate/efi/README
index 7550e9d..b3ec3ff 100644
--- a/generate/efi/README
+++ b/generate/efi/README
@@ -20,6 +20,7 @@  But the porting has only been tested in a Linux environment.
 
    You can find built EFI binaries (e.x., acpidump.efi) in the following
    folders:
+     Build/Acpi/DEBUG_GCC47/AARCH64: aarch64 targets
      Build/Acpi/DEBUG_GCC47/IA32: i386 targets
      Build/Acpi/DEBUG_GCC47/X64: x86_64 targets
 
diff --git a/generate/efi/acpidump/acpidump.inf b/generate/efi/acpidump/acpidump.inf
index 8d2c979..e5f21c0 100644
--- a/generate/efi/acpidump/acpidump.inf
+++ b/generate/efi/acpidump/acpidump.inf
@@ -55,7 +55,5 @@ 
   BaseLib
 
 [BuildOptions]
-  MSFT:*_*_IA32_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
-  MSFT:*_*_X64_CC_FLAGS  = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
-  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
-  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
+  MSFT:*_*_*_CC_FLAGS = /Oi- /WX- /D_EDK2_EFI /DACPI_DUMP_APP
+  GCC:*_*_*_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h
index 8328ab6..75ef89a 100644
--- a/source/include/platform/acefi.h
+++ b/source/include/platform/acefi.h
@@ -140,7 +140,7 @@ 
 
 #define VOID        void
 
-#if defined(__ia64__) || defined(__x86_64__)
+#if defined(__aarch64__) || defined(__ia64__) || defined(__x86_64__)
 
 #define ACPI_MACHINE_WIDTH          64