]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/Arm/CreateHobList.c
StandaloneMmPkg: Apply uncrustify changes
[mirror_edk2.git] / StandaloneMmPkg / Library / StandaloneMmCoreEntryPoint / Arm / CreateHobList.c
index 85f8194687f87967773a979d750f1610beb9c09b..eb0c1f82db23c8dd30d3119b6c8b6e79d393fb96 100644 (file)
@@ -7,7 +7,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
 \r
 **/\r
 \r
-\r
 #include <PiMm.h>\r
 \r
 #include <PiPei.h>\r
@@ -25,7 +24,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
 \r
 #include <IndustryStandard/ArmStdSmc.h>\r
 \r
-extern EFI_HOB_HANDOFF_INFO_TABLE*\r
+extern EFI_HOB_HANDOFF_INFO_TABLE *\r
 HobConstructor (\r
   IN VOID   *EfiMemoryBegin,\r
   IN UINTN  EfiMemoryLength,\r
@@ -35,12 +34,12 @@ HobConstructor (
 \r
 // GUID to identify HOB with whereabouts of communication buffer with Normal\r
 // World\r
-extern EFI_GUID gEfiStandaloneMmNonSecureBufferGuid;\r
+extern EFI_GUID  gEfiStandaloneMmNonSecureBufferGuid;\r
 \r
 // GUID to identify HOB where the entry point of the CPU driver will be\r
 // populated to allow this entry point driver to invoke it upon receipt of an\r
 // event\r
-extern EFI_GUID gEfiArmTfCpuDriverEpDescriptorGuid;\r
+extern EFI_GUID  gEfiArmTfCpuDriverEpDescriptorGuid;\r
 \r
 /**\r
   Use the boot information passed by privileged firmware to populate a HOB list\r
@@ -53,33 +52,33 @@ extern EFI_GUID gEfiArmTfCpuDriverEpDescriptorGuid;
 **/\r
 VOID *\r
 CreateHobListFromBootInfo (\r
-  IN  OUT  PI_MM_ARM_TF_CPU_DRIVER_ENTRYPOINT *CpuDriverEntryPoint,\r
-  IN       EFI_SECURE_PARTITION_BOOT_INFO     *PayloadBootInfo\r
-)\r
+  IN  OUT  PI_MM_ARM_TF_CPU_DRIVER_ENTRYPOINT  *CpuDriverEntryPoint,\r
+  IN       EFI_SECURE_PARTITION_BOOT_INFO      *PayloadBootInfo\r
+  )\r
 {\r
-  EFI_HOB_HANDOFF_INFO_TABLE      *HobStart;\r
-  EFI_RESOURCE_ATTRIBUTE_TYPE     Attributes;\r
-  UINT32                          Index;\r
-  UINT32                          BufferSize;\r
-  UINT32                          Flags;\r
-  EFI_MMRAM_HOB_DESCRIPTOR_BLOCK  *MmramRangesHob;\r
-  EFI_MMRAM_DESCRIPTOR            *MmramRanges;\r
-  EFI_MMRAM_DESCRIPTOR            *NsCommBufMmramRange;\r
-  MP_INFORMATION_HOB_DATA         *MpInformationHobData;\r
-  EFI_PROCESSOR_INFORMATION       *ProcInfoBuffer;\r
-  EFI_SECURE_PARTITION_CPU_INFO   *CpuInfo;\r
-  ARM_TF_CPU_DRIVER_EP_DESCRIPTOR *CpuDriverEntryPointDesc;\r
+  EFI_HOB_HANDOFF_INFO_TABLE       *HobStart;\r
+  EFI_RESOURCE_ATTRIBUTE_TYPE      Attributes;\r
+  UINT32                           Index;\r
+  UINT32                           BufferSize;\r
+  UINT32                           Flags;\r
+  EFI_MMRAM_HOB_DESCRIPTOR_BLOCK   *MmramRangesHob;\r
+  EFI_MMRAM_DESCRIPTOR             *MmramRanges;\r
+  EFI_MMRAM_DESCRIPTOR             *NsCommBufMmramRange;\r
+  MP_INFORMATION_HOB_DATA          *MpInformationHobData;\r
+  EFI_PROCESSOR_INFORMATION        *ProcInfoBuffer;\r
+  EFI_SECURE_PARTITION_CPU_INFO    *CpuInfo;\r
+  ARM_TF_CPU_DRIVER_EP_DESCRIPTOR  *CpuDriverEntryPointDesc;\r
 \r
   // Create a hoblist with a PHIT and EOH\r
   HobStart = HobConstructor (\r
-               (VOID *) (UINTN) PayloadBootInfo->SpMemBase,\r
-               (UINTN)  PayloadBootInfo->SpMemLimit - PayloadBootInfo->SpMemBase,\r
-               (VOID *) (UINTN) PayloadBootInfo->SpHeapBase,\r
-               (VOID *) (UINTN) (PayloadBootInfo->SpHeapBase + PayloadBootInfo->SpHeapSize)\r
+               (VOID *)(UINTN)PayloadBootInfo->SpMemBase,\r
+               (UINTN)PayloadBootInfo->SpMemLimit - PayloadBootInfo->SpMemBase,\r
+               (VOID *)(UINTN)PayloadBootInfo->SpHeapBase,\r
+               (VOID *)(UINTN)(PayloadBootInfo->SpHeapBase + PayloadBootInfo->SpHeapSize)\r
                );\r
 \r
   // Check that the Hoblist starts at the bottom of the Heap\r
-  ASSERT (HobStart == (VOID *) (UINTN) PayloadBootInfo->SpHeapBase);\r
+  ASSERT (HobStart == (VOID *)(UINTN)PayloadBootInfo->SpHeapBase);\r
 \r
   // Build a Boot Firmware Volume HOB\r
   BuildFvHob (PayloadBootInfo->SpImageBase, PayloadBootInfo->SpImageSize);\r
@@ -87,24 +86,24 @@ CreateHobListFromBootInfo (
   // Build a resource descriptor Hob that describes the available physical\r
   // memory range\r
   Attributes = (\r
-    EFI_RESOURCE_ATTRIBUTE_PRESENT |\r
-    EFI_RESOURCE_ATTRIBUTE_INITIALIZED |\r
-    EFI_RESOURCE_ATTRIBUTE_TESTED |\r
-    EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |\r
-    EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |\r
-    EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
-    EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE\r
-  );\r
+                EFI_RESOURCE_ATTRIBUTE_PRESENT |\r
+                EFI_RESOURCE_ATTRIBUTE_INITIALIZED |\r
+                EFI_RESOURCE_ATTRIBUTE_TESTED |\r
+                EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |\r
+                EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |\r
+                EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
+                EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE\r
+                );\r
 \r
   BuildResourceDescriptorHob (\r
     EFI_RESOURCE_SYSTEM_MEMORY,\r
     Attributes,\r
-    (UINTN) PayloadBootInfo->SpMemBase,\r
+    (UINTN)PayloadBootInfo->SpMemBase,\r
     PayloadBootInfo->SpMemLimit - PayloadBootInfo->SpMemBase\r
     );\r
 \r
   // Find the size of the GUIDed HOB with MP information\r
-  BufferSize = sizeof (MP_INFORMATION_HOB_DATA);\r
+  BufferSize  = sizeof (MP_INFORMATION_HOB_DATA);\r
   BufferSize += sizeof (EFI_PROCESSOR_INFORMATION) * PayloadBootInfo->NumCpus;\r
 \r
   // Create a Guided MP information HOB to enable the ARM TF CPU driver to\r
@@ -113,30 +112,31 @@ CreateHobListFromBootInfo (
 \r
   // Populate the MP information HOB with the topology information passed by\r
   // privileged firmware\r
-  MpInformationHobData->NumberOfProcessors = PayloadBootInfo->NumCpus;\r
+  MpInformationHobData->NumberOfProcessors        = PayloadBootInfo->NumCpus;\r
   MpInformationHobData->NumberOfEnabledProcessors = PayloadBootInfo->NumCpus;\r
-  ProcInfoBuffer = MpInformationHobData->ProcessorInfoBuffer;\r
-  CpuInfo = PayloadBootInfo->CpuInfo;\r
+  ProcInfoBuffer                                  = MpInformationHobData->ProcessorInfoBuffer;\r
+  CpuInfo                                         = PayloadBootInfo->CpuInfo;\r
 \r
   for (Index = 0; Index < PayloadBootInfo->NumCpus; Index++) {\r
     ProcInfoBuffer[Index].ProcessorId      = CpuInfo[Index].Mpidr;\r
-    ProcInfoBuffer[Index].Location.Package = GET_CLUSTER_ID(CpuInfo[Index].Mpidr);\r
-    ProcInfoBuffer[Index].Location.Core    = GET_CORE_ID(CpuInfo[Index].Mpidr);\r
-    ProcInfoBuffer[Index].Location.Thread  = GET_CORE_ID(CpuInfo[Index].Mpidr);\r
+    ProcInfoBuffer[Index].Location.Package = GET_CLUSTER_ID (CpuInfo[Index].Mpidr);\r
+    ProcInfoBuffer[Index].Location.Core    = GET_CORE_ID (CpuInfo[Index].Mpidr);\r
+    ProcInfoBuffer[Index].Location.Thread  = GET_CORE_ID (CpuInfo[Index].Mpidr);\r
 \r
     Flags = PROCESSOR_ENABLED_BIT | PROCESSOR_HEALTH_STATUS_BIT;\r
     if (CpuInfo[Index].Flags & CPU_INFO_FLAG_PRIMARY_CPU) {\r
       Flags |= PROCESSOR_AS_BSP_BIT;\r
     }\r
+\r
     ProcInfoBuffer[Index].StatusFlag = Flags;\r
   }\r
 \r
   // Create a Guided HOB to tell the ARM TF CPU driver the location and length\r
   // of the communication buffer shared with the Normal world.\r
-  NsCommBufMmramRange = (EFI_MMRAM_DESCRIPTOR *) BuildGuidHob (\r
-                                                   &gEfiStandaloneMmNonSecureBufferGuid,\r
-                                                   sizeof (EFI_MMRAM_DESCRIPTOR)\r
-                                                   );\r
+  NsCommBufMmramRange = (EFI_MMRAM_DESCRIPTOR *)BuildGuidHob (\r
+                                                  &gEfiStandaloneMmNonSecureBufferGuid,\r
+                                                  sizeof (EFI_MMRAM_DESCRIPTOR)\r
+                                                  );\r
   NsCommBufMmramRange->PhysicalStart = PayloadBootInfo->SpNsCommBufBase;\r
   NsCommBufMmramRange->CpuStart      = PayloadBootInfo->SpNsCommBufBase;\r
   NsCommBufMmramRange->PhysicalSize  = PayloadBootInfo->SpNsCommBufSize;\r
@@ -144,16 +144,16 @@ CreateHobListFromBootInfo (
 \r
   // Create a Guided HOB to enable the ARM TF CPU driver to share its entry\r
   // point and populate it with the address of the shared buffer\r
-  CpuDriverEntryPointDesc = (ARM_TF_CPU_DRIVER_EP_DESCRIPTOR *) BuildGuidHob (\r
-                                                                  &gEfiArmTfCpuDriverEpDescriptorGuid,\r
-                                                                  sizeof (ARM_TF_CPU_DRIVER_EP_DESCRIPTOR)\r
-                                                                  );\r
+  CpuDriverEntryPointDesc = (ARM_TF_CPU_DRIVER_EP_DESCRIPTOR *)BuildGuidHob (\r
+                                                                 &gEfiArmTfCpuDriverEpDescriptorGuid,\r
+                                                                 sizeof (ARM_TF_CPU_DRIVER_EP_DESCRIPTOR)\r
+                                                                 );\r
 \r
-  *CpuDriverEntryPoint = NULL;\r
+  *CpuDriverEntryPoint                         = NULL;\r
   CpuDriverEntryPointDesc->ArmTfCpuDriverEpPtr = CpuDriverEntryPoint;\r
 \r
   // Find the size of the GUIDed HOB with SRAM ranges\r
-  BufferSize = sizeof (EFI_MMRAM_HOB_DESCRIPTOR_BLOCK);\r
+  BufferSize  = sizeof (EFI_MMRAM_HOB_DESCRIPTOR_BLOCK);\r
   BufferSize += PayloadBootInfo->NumSpMemRegions * sizeof (EFI_MMRAM_DESCRIPTOR);\r
 \r
   // Create a GUIDed HOB with SRAM ranges\r
@@ -190,9 +190,9 @@ CreateHobListFromBootInfo (
   MmramRanges[3].RegionState   = EFI_CACHEABLE | EFI_ALLOCATED;\r
 \r
   // Base and size of heap memory shared by all cpus\r
-  MmramRanges[4].PhysicalStart = (EFI_PHYSICAL_ADDRESS) (UINTN) HobStart;\r
-  MmramRanges[4].CpuStart      = (EFI_PHYSICAL_ADDRESS) (UINTN) HobStart;\r
-  MmramRanges[4].PhysicalSize  = HobStart->EfiFreeMemoryBottom - (EFI_PHYSICAL_ADDRESS) (UINTN) HobStart;\r
+  MmramRanges[4].PhysicalStart = (EFI_PHYSICAL_ADDRESS)(UINTN)HobStart;\r
+  MmramRanges[4].CpuStart      = (EFI_PHYSICAL_ADDRESS)(UINTN)HobStart;\r
+  MmramRanges[4].PhysicalSize  = HobStart->EfiFreeMemoryBottom - (EFI_PHYSICAL_ADDRESS)(UINTN)HobStart;\r
   MmramRanges[4].RegionState   = EFI_CACHEABLE | EFI_ALLOCATED;\r
 \r
   // Base and size of heap memory shared by all cpus\r