From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.9977.1619537592846708028 for ; Tue, 27 Apr 2021 08:33:13 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 86A6F31B; Tue, 27 Apr 2021 08:33:07 -0700 (PDT) Received: from e120189.arm.com (unknown [10.57.3.114]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id F23173F73B; Tue, 27 Apr 2021 08:33:05 -0700 (PDT) From: "PierreGondois" To: devel@edk2.groups.io, sami.mujawar@arm.com, leif@nuviainc.com, ardb+tianocore@kernel.org, sean.brogan@microsoft.com, Bret.Barkelew@microsoft.com Subject: [PATCH v2 06/15] ArmPkg: Re-order libraries in ArmPkg.dec Date: Tue, 27 Apr 2021 16:32:42 +0100 Message-Id: <20210427153251.11576-7-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210427153251.11576-1-Pierre.Gondois@arm.com> References: <20210427153251.11576-1-Pierre.Gondois@arm.com> From: Pierre Gondois This patch alphabetically orders libraries advertised in ArmPkg.dec. Cc: Bret Barkelew Cc: Sean Brogan Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Sami Mujawar Signed-off-by: Pierre Gondois Reviewed-by: Sami Mujawar --- Notes: V2: - This is a new patch. [Pierre] ArmPkg/ArmPkg.dec | 83 +++++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 43 deletions(-) diff --git a/ArmPkg/ArmPkg.dec b/ArmPkg/ArmPkg.dec index dcd43a0f14f6..214b2f589217 100644 --- a/ArmPkg/ArmPkg.dec +++ b/ArmPkg/ArmPkg.dec @@ -27,6 +27,28 @@ [Includes.common] Include # Root include for the package [LibraryClasses.common] + ## @libraryclass Convert Arm instructions to a human readable format. + # + ArmDisassemblerLib|Include/Library/ArmDisassemblerLib.h + + ## @libraryclass Provides an interface to Arm generic counters. + # + ArmGenericTimerCounterLib|Include/Library/ArmGenericTimerCounterLib.h + + ## @libraryclass Provides an interface to initialize a + # Generic Interrupt Controller (GIC). + # + ArmGicArchLib|Include/Library/ArmGicArchLib.h + + ## @libraryclass Provides a Generic Interrupt Controller (GIC) + # configuration interface. + # + ArmGicLib|Include/Library/ArmGicLib.h + + ## @libraryclass Provides a HyperVisor Call (HVC) interface. + # + ArmHvcLib|Include/Library/ArmHvcLib.h + ## @libraryclass Provides an interface to Arm registers. # ArmLib|Include/Library/ArmLib.h @@ -35,65 +57,40 @@ [LibraryClasses.common] # ArmMmuLib|Include/Library/ArmMmuLib.h - ## @libraryclass Provides an interface to initialize a - # Generic Interrupt Controller (GIC). - # - SemihostLib|Include/Library/SemihostLib.h - - ## @libraryclass Provides a Generic Interrupt Controller (GIC) - # configuration interface. - # - DefaultExceptionHandlerLib|Include/Library/DefaultExceptionHandlerLib.h - - ## @libraryclass Convert Arm instructions to a human readable format. - # - ArmDisassemblerLib|Include/Library/ArmDisassemblerLib.h - - ## @libraryclass Provides an interface to initialize a - # Generic Interrupt Controller (GIC). - # - ArmGicArchLib|Include/Library/ArmGicArchLib.h - ## @libraryclass Provides a Mailbox Transport Layer (MTL) interface # for the System Control and Management Interface (SCMI). # ArmMtlLib|Include/Library/ArmMtlLib.h + ## @libraryclass Provides a System Monitor Call (SMC) interface. + # + ArmSmcLib|Include/Library/ArmSmcLib.h + ## @libraryclass Provides a SuperVisor Call (SVC) interface. # ArmSvcLib|Include/Library/ArmSvcLib.h + ## @libraryclass Provides a default exception handler. + # + DefaultExceptionHandlerLib|Include/Library/DefaultExceptionHandlerLib.h + + ## @libraryclass Provides an interface to query miscellaneous OEM + # information. + # + OemMiscLib|Include/Library/OemMiscLib.h + ## @libraryclass Provides an OpTee interface. # OpteeLib|Include/Library/OpteeLib.h - ## @libraryclass Provides an interface to a StandaloneMm Mmu. + ## @libraryclass Provides a semihosting interface. + # + SemihostLib|Include/Library/SemihostLib.h + + ## @libraryclass Provides an interface for a StandaloneMm Mmu. # StandaloneMmMmuLib|Include/Library/StandaloneMmMmuLib.h - ## @libraryclass Provides an interface to query miscellaneous OEM - # information. - # - ArmGenericTimerCounterLib|Include/Library/ArmGenericTimerCounterLib.h - - ## @libraryclass Provides a Generic Interrupt Controller (GIC) - # configuration interface. - ArmGicLib|Include/Library/ArmGicLib.h - - ## @libraryclass Provides a HyperVisor Call (HVC) interface. - # - ArmHvcLib|Include/Library/ArmHvcLib.h - - ## @libraryclass Provides an interface to query miscellaneous OEM - # information. - # - OemMiscLib|Include/Library/OemMiscLib.h - - ## @libraryclass Provides a System Monitor Call (SMC) interface. - # - ArmSmcLib|Include/Library/ArmSmcLib.h - - [Guids.common] gArmTokenSpaceGuid = { 0xBB11ECFE, 0x820F, 0x4968, { 0xBB, 0xA6, 0xF7, 0x6A, 0xFE, 0x30, 0x25, 0x96 } } -- 2.17.1