All of lore.kernel.org
 help / color / mirror / Atom feed
* [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-01-03 12:21 Leif Lindholm
  0 siblings, 0 replies; 6+ messages in thread
From: Leif Lindholm @ 2017-01-03 12:21 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 2922 bytes --]

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(a)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
 
-- 
2.10.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-02-10  2:33 Zheng, Lv
  0 siblings, 0 replies; 6+ messages in thread
From: Zheng, Lv @ 2017-02-10  2:33 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 6658 bytes --]

Hi,

Thanks for the contribution.

> From: Leif Lindholm [mailto:leif.lindholm(a)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(a)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(a)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(a)redhat.com
> > > -----------------------------------
> > > _______________________________________________
> > > Devel mailing list
> > > Devel(a)acpica.org
> > > https://lists.acpica.org/mailman/listinfo/devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-02-09 12:34 Leif Lindholm
  0 siblings, 0 replies; 6+ messages in thread
From: Leif Lindholm @ 2017-02-09 12:34 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 5510 bytes --]

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(a)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(a)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(a)redhat.com
> > -----------------------------------
> > _______________________________________________
> > Devel mailing list
> > Devel(a)acpica.org
> > https://lists.acpica.org/mailman/listinfo/devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-02-09  2:24 Zheng, Lv
  0 siblings, 0 replies; 6+ messages in thread
From: Zheng, Lv @ 2017-02-09  2:24 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 4558 bytes --]

Hi, Guys

Thanks for the reminder.
Here goes my opinions.

> From: Devel [mailto:devel-bounces(a)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(a)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(a)redhat.com
> -----------------------------------
> _______________________________________________
> Devel mailing list
> Devel(a)acpica.org
> https://lists.acpica.org/mailman/listinfo/devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-01-26 17:05 Al Stone
  0 siblings, 0 replies; 6+ messages in thread
From: Al Stone @ 2017-01-26 17:05 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 3496 bytes --]

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(a)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.

-- 
ciao,
al
-----------------------------------
Al Stone
Software Engineer
Red Hat, Inc.
ahs3(a)redhat.com
-----------------------------------

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Devel] [PATCH v2] EFI: fix build for AARCH64
@ 2017-01-03 12:21 Leif Lindholm
  0 siblings, 0 replies; 6+ messages in thread
From: Leif Lindholm @ 2017-01-03 12:21 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 2922 bytes --]

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(a)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
 
-- 
2.10.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-02-10  2:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-03 12:21 [Devel] [PATCH v2] EFI: fix build for AARCH64 Leif Lindholm
2017-01-03 12:21 Leif Lindholm
2017-01-26 17:05 Al Stone
2017-02-09  2:24 Zheng, Lv
2017-02-09 12:34 Leif Lindholm
2017-02-10  2:33 Zheng, Lv

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.