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.9955.1619605262089278889 for ; Wed, 28 Apr 2021 03:21:02 -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 B440A1FB; Wed, 28 Apr 2021 03:21:01 -0700 (PDT) Received: from e120189.arm.com (unknown [10.57.1.97]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 351153F70D; Wed, 28 Apr 2021 03:21:00 -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 v3 06/15] ArmPkg: Re-order libraries in ArmPkg.dec Date: Wed, 28 Apr 2021 11:20:11 +0100 Message-Id: <20210428102020.2311-7-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210428102020.2311-1-Pierre.Gondois@arm.com> References: <20210428102020.2311-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 Signed-off-by: Pierre Gondois --- Notes: V2: - This is a new patch. [Pierre] V3: - Descriptions were shuffled during a rebase. Correctly assign the library descriptions to their library. [Sami] ArmPkg/ArmPkg.dec | 78 +++++++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/ArmPkg/ArmPkg.dec b/ArmPkg/ArmPkg.dec index 151626039b0c..214b2f589217 100644 --- a/ArmPkg/ArmPkg.dec +++ b/ArmPkg/ArmPkg.dec @@ -27,69 +27,69 @@ [Includes.common] Include # Root include for the package [LibraryClasses.common] - ## @libraryclass Provides an interface to Arm registers. - # - ArmLib|Include/Library/ArmLib.h - - ## @libraryclass Provides a Mmu interface. - # - ArmMmuLib|Include/Library/ArmMmuLib.h - - ## @libraryclass Provides a semihosting interface. - # - SemihostLib|Include/Library/SemihostLib.h - - ## @libraryclass Provides a default exception handler. - # - DefaultExceptionHandlerLib|Include/Library/DefaultExceptionHandlerLib.h - ## @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 Mailbox Transport Layer (MTL) interface - # for the System Control and Management Interface (SCMI). - # - ArmMtlLib|Include/Library/ArmMtlLib.h - - ## @libraryclass Provides a SuperVisor Call (SVC) interface. - # - ArmSvcLib|Include/Library/ArmSvcLib.h - - ## @libraryclass Provides an OpTee interface. - # - OpteeLib|Include/Library/OpteeLib.h - - ## @libraryclass Provides an interface to a StandaloneMm Mmu. - # - StandaloneMmMmuLib|Include/Library/StandaloneMmMmuLib.h - - ## @libraryclass Provides an interface to Arm generic counters. - # - 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 Arm registers. + # + ArmLib|Include/Library/ArmLib.h + + ## @libraryclass Provides a Mmu interface. + # + ArmMmuLib|Include/Library/ArmMmuLib.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 a System Monitor Call (SMC) interface. + ## @libraryclass Provides an OpTee interface. # - ArmSmcLib|Include/Library/ArmSmcLib.h + OpteeLib|Include/Library/OpteeLib.h + ## @libraryclass Provides a semihosting interface. + # + SemihostLib|Include/Library/SemihostLib.h + + ## @libraryclass Provides an interface for a StandaloneMm Mmu. + # + StandaloneMmMmuLib|Include/Library/StandaloneMmMmuLib.h [Guids.common] gArmTokenSpaceGuid = { 0xBB11ECFE, 0x820F, 0x4968, { 0xBB, 0xA6, 0xF7, 0x6A, 0xFE, 0x30, 0x25, 0x96 } } -- 2.17.1