]> git.proxmox.com Git - mirror_edk2.git/blobdiff - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c
fixed ECC and Klocwork issues.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBusDxe / PciEnumerator.c
index 988d301969d16f6bf05e7f1a65dbdaa8ddb53012..687e007b5a3252c6bbc42aae55d93c4c53bffcd5 100644 (file)
@@ -1,6 +1,6 @@
-/**@file\r
+/** @file\r
 \r
-Copyright (c) 2006, Intel Corporation                                                         \r
+Copyright (c) 2006 - 2009, Intel Corporation                                                         \r
 All rights reserved. This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -12,32 +12,22 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 **/\r
 \r
 \r
-#include "pcibus.h"\r
+#include "PciBus.h"\r
 #include "PciEnumerator.h"\r
-#include "PciResourceSupport.h"\r
 #include "PciOptionRomSupport.h"\r
 \r
+/**\r
+  This routine is used to enumerate entire pci bus system\r
+  in a given platform.\r
+\r
+  @param Controller  Parent controller handle.\r
+  \r
+  @return Status of enumerating.\r
+**/\r
 EFI_STATUS\r
 PciEnumerator (\r
   IN EFI_HANDLE                    Controller\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  This routine is used to enumerate entire pci bus system\r
-  in a given platform\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Controller - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
 \r
   EFI_HANDLE                                        HostBridgeHandle;\r
@@ -52,13 +42,6 @@ Returns:
     return PciEnumeratorLight (Controller);\r
   }\r
 \r
-  //\r
-  // If this host bridge has been already enumerated, then return successfully\r
-  //\r
-  if (RootBridgeExisted (Controller)) {\r
-    return EFI_SUCCESS;\r
-  }\r
-\r
   //\r
   // Get the rootbridge Io protocol to find the host bridge handle\r
   //\r
@@ -141,28 +124,24 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Enumerate PCI root bridge\r
+  \r
+  @param PciResAlloc   Pointer to protocol instance of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL.\r
+  @param RootBridgeDev Instance of root bridge device.\r
+  \r
+  @retval EFI_SUCCESS  Success to enumerate root bridge.\r
+  @retval Others       Fail to enumerate root bridge.\r
+  \r
+**/\r
 EFI_STATUS\r
 PciRootBridgeEnumerator (\r
   IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL  *PciResAlloc,\r
   IN PCI_IO_DEVICE                                     *RootBridgeDev\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResAlloc - add argument and description to function comment\r
-// TODO:    RootBridgeDev - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   EFI_STATUS                        Status;\r
-  EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *pConfiguration;\r
+  EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Configuration;\r
   UINT8                             SubBusNumber;\r
   UINT8                             StartBusNumber;\r
   UINT8                             PaddedBusRange;\r
@@ -189,7 +168,7 @@ Returns:
   Status = PciResAlloc->StartBusEnumeration (\r
                           PciResAlloc,\r
                           RootBridgeHandle,\r
-                          (VOID **) &pConfiguration\r
+                          (VOID **) &Configuration\r
                           );\r
 \r
   if (EFI_ERROR (Status)) {\r
@@ -199,19 +178,28 @@ Returns:
   //\r
   // Get the bus number to start with\r
   //\r
-  StartBusNumber = (UINT8) (pConfiguration->AddrRangeMin);\r
+  StartBusNumber = (UINT8) (Configuration->AddrRangeMin);\r
+  PaddedBusRange  = (UINT8) (Configuration->AddrRangeMax);\r
 \r
   //\r
   // Initialize the subordinate bus number\r
   //\r
   SubBusNumber = StartBusNumber;\r
 \r
+  //\r
+  // Reset all assigned PCI bus number\r
+  //\r
+  ResetAllPpbBusNumber (\r
+    RootBridgeDev, \r
+    StartBusNumber\r
+  );\r
+\r
   //\r
   // Assign bus number\r
   //\r
   Status = PciScanBus (\r
             RootBridgeDev,\r
-            (UINT8) (pConfiguration->AddrRangeMin),\r
+            (UINT8) (Configuration->AddrRangeMin),\r
             &SubBusNumber,\r
             &PaddedBusRange\r
             );\r
@@ -224,7 +212,7 @@ Returns:
   //\r
   // Assign max bus number scanned\r
   //\r
-  pConfiguration->AddrLen = SubBusNumber - StartBusNumber + 1 + PaddedBusRange;\r
+  Configuration->AddrLen = SubBusNumber - StartBusNumber + 1 + PaddedBusRange;\r
 \r
   //\r
   // Set bus number\r
@@ -232,9 +220,11 @@ Returns:
   Status = PciResAlloc->SetBusNumbers (\r
                           PciResAlloc,\r
                           RootBridgeHandle,\r
-                          pConfiguration\r
+                          Configuration\r
                           );\r
-\r
+  \r
+  gBS->FreePool (Configuration);\r
+  \r
   if (EFI_ERROR (Status)) {\r
     return Status;\r
   }\r
@@ -242,46 +232,37 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  This routine is used to process option rom on a certain root bridge\r
+  \r
+  @param Bridge     Given parent's root bridge\r
+  @param RomBase    Base address of ROM driver loaded from\r
+  @param MaxLength  Max rom size\r
+  \r
+  @retval EFI_SUCCESS Success to process option rom image.\r
+**/\r
 EFI_STATUS\r
 ProcessOptionRom (\r
   IN PCI_IO_DEVICE *Bridge,\r
   IN UINT64        RomBase,\r
   IN UINT64        MaxLength\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  This routine is used to process option rom on a certain root bridge\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    RomBase - add argument and description to function comment\r
-// TODO:    MaxLength - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   LIST_ENTRY      *CurrentLink;\r
   PCI_IO_DEVICE   *Temp;\r
-  EFI_STATUS      Status;\r
 \r
   //\r
   // Go through bridges to reach all devices\r
   //\r
   CurrentLink = Bridge->ChildList.ForwardLink;\r
-  while (CurrentLink && CurrentLink != &Bridge->ChildList) {\r
+  while (CurrentLink != NULL && CurrentLink != &Bridge->ChildList) {\r
     Temp = PCI_IO_DEVICE_FROM_LINK (CurrentLink);\r
     if (!IsListEmpty (&Temp->ChildList)) {\r
 \r
       //\r
       // Go further to process the option rom under this bridge\r
       //\r
-      Status = ProcessOptionRom (Temp, RomBase, MaxLength);\r
+      ProcessOptionRom (Temp, RomBase, MaxLength);\r
     }\r
 \r
     if (Temp->RomSize != 0 && Temp->RomSize <= MaxLength) {\r
@@ -289,10 +270,7 @@ Returns:
       //\r
       // Load and process the option rom\r
       //\r
-      Status = LoadOpRomImage (Temp, RomBase);\r
-      if (Status == EFI_SUCCESS) {\r
-        Status = ProcessOpRomImage (Temp);\r
-      }\r
+      LoadOpRomImage (Temp, RomBase);\r
     }\r
 \r
     CurrentLink = CurrentLink->ForwardLink;\r
@@ -301,30 +279,21 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  This routine is used to assign bus number to the given PCI bus system\r
+  \r
+  @param Bridge           Parent root bridge instance.\r
+  @param StartBusNumber   Number of beginning.\r
+  @param SubBusNumber     the number of sub bus.\r
+  \r
+  @retval EFI_SUCCESS  Success to assign bus number.\r
+**/\r
 EFI_STATUS\r
 PciAssignBusNumber (\r
   IN PCI_IO_DEVICE                      *Bridge,\r
   IN UINT8                              StartBusNumber,\r
   OUT UINT8                             *SubBusNumber\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  This routine is used to assign bus number to the given PCI bus system\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    StartBusNumber - add argument and description to function comment\r
-// TODO:    SubBusNumber - add argument and description to function comment\r
-// TODO:    EFI_DEVICE_ERROR - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   EFI_STATUS                      Status;\r
   PCI_TYPE00                      Pci;\r
@@ -451,28 +420,21 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  This routine is used to determine the root bridge attribute by interfacing\r
+  the host bridge resource allocation protocol.\r
+\r
+  @param PciResAlloc    Protocol instance of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL\r
+  @param RootBridgeDev  Root bridge instance\r
+  \r
+  @retval EFI_SUCCESS  Success to get root bridge's attribute\r
+  @retval Others       Fail to get attribute\r
+**/\r
 EFI_STATUS\r
 DetermineRootBridgeAttributes (\r
   IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc,\r
   IN PCI_IO_DEVICE                                    *RootBridgeDev\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  This routine is used to determine the root bridge attribute by interfacing\r
-  the host bridge resource allocation protocol.\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResAlloc - add argument and description to function comment\r
-// TODO:    RootBridgeDev - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   UINT64      Attributes;\r
   EFI_STATUS  Status;\r
@@ -499,11 +461,11 @@ Returns:
   // Currently we hardcoded for ea815\r
   //\r
 \r
-  if (Attributes & EFI_PCI_HOST_BRIDGE_COMBINE_MEM_PMEM) {\r
+  if ((Attributes & EFI_PCI_HOST_BRIDGE_COMBINE_MEM_PMEM) != 0) {\r
     RootBridgeDev->Decodes |= EFI_BRIDGE_PMEM_MEM_COMBINE_SUPPORTED;\r
   }\r
 \r
-  if (Attributes & EFI_PCI_HOST_BRIDGE_MEM64_DECODE) {\r
+  if ((Attributes & EFI_PCI_HOST_BRIDGE_MEM64_DECODE) != 0) {\r
     RootBridgeDev->Decodes |= EFI_BRIDGE_PMEM64_DECODE_SUPPORTED;\r
   }\r
 \r
@@ -514,24 +476,16 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Get Max Option Rom size on this bridge\r
+  \r
+  @param Bridge  Bridge device instance.\r
+  @return Max size of option rom.\r
+**/\r
 UINT64\r
 GetMaxOptionRomSize (\r
   IN PCI_IO_DEVICE   *Bridge\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Get Max Option Rom size on this bridge\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
 {\r
   LIST_ENTRY      *CurrentLink;\r
   PCI_IO_DEVICE   *Temp;\r
@@ -544,7 +498,7 @@ Returns:
   // Go through bridges to reach all devices\r
   //\r
   CurrentLink = Bridge->ChildList.ForwardLink;\r
-  while (CurrentLink && CurrentLink != &Bridge->ChildList) {\r
+  while (CurrentLink != NULL && CurrentLink != &Bridge->ChildList) {\r
     Temp = PCI_IO_DEVICE_FROM_LINK (CurrentLink);\r
     if (!IsListEmpty (&Temp->ChildList)) {\r
 \r
@@ -582,26 +536,19 @@ Returns:
   return MaxOptionRomSize;\r
 }\r
 \r
+/**\r
+  Process attributes of devices on this host bridge\r
+  \r
+  @param PciResAlloc Protocol instance of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL.\r
+  \r
+  @retval EFI_NOT_FOUND Can not find the specific root bridge device.\r
+  @retval EFI_SUCCESS   Success Process attribute.\r
+  @retval Others        Can not determine the root bridge device's attribute.\r
+**/\r
 EFI_STATUS\r
 PciHostBridgeDeviceAttribute (\r
   IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Process attributes of devices on this host bridge\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResAlloc - add argument and description to function comment\r
-// TODO:    EFI_NOT_FOUND - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   EFI_HANDLE    RootBridgeHandle;\r
   PCI_IO_DEVICE *RootBridgeDev;\r
@@ -633,6 +580,18 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Get resource allocation status from the ACPI pointer\r
+\r
+  @param AcpiConfig       Point to Acpi configuration table\r
+  @param IoResStatus      Return the status of I/O resource\r
+  @param Mem32ResStatus   Return the status of 32-bit Memory resource\r
+  @param PMem32ResStatus  Return the status of 32-bit PMemory resource\r
+  @param Mem64ResStatus   Return the status of 64-bit Memory resource\r
+  @param PMem64ResStatus  Return the status of 64-bit PMemory resource\r
+  \r
+  @retval EFI_SUCCESS Success to get resource allocation status from ACPI configuration table.\r
+**/\r
 EFI_STATUS\r
 GetResourceAllocationStatus (\r
   VOID        *AcpiConfig,\r
@@ -642,43 +601,23 @@ GetResourceAllocationStatus (
   OUT UINT64  *Mem64ResStatus,\r
   OUT UINT64  *PMem64ResStatus\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Get resource allocation status from the ACPI pointer\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    AcpiConfig - add argument and description to function comment\r
-// TODO:    IoResStatus - add argument and description to function comment\r
-// TODO:    Mem32ResStatus - add argument and description to function comment\r
-// TODO:    PMem32ResStatus - add argument and description to function comment\r
-// TODO:    Mem64ResStatus - add argument and description to function comment\r
-// TODO:    PMem64ResStatus - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
 \r
   UINT8                             *Temp;\r
   UINT64                            ResStatus;\r
-  EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *ptr;\r
+  EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *ACPIAddressDesc;\r
 \r
   Temp = (UINT8 *) AcpiConfig;\r
 \r
   while (*Temp == ACPI_ADDRESS_SPACE_DESCRIPTOR) {\r
 \r
-    ptr       = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) Temp;\r
-    ResStatus = ptr->AddrTranslationOffset;\r
+    ACPIAddressDesc       = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) Temp;\r
+    ResStatus = ACPIAddressDesc->AddrTranslationOffset;\r
 \r
-    switch (ptr->ResType) {\r
+    switch (ACPIAddressDesc->ResType) {\r
     case 0:\r
-      if (ptr->AddrSpaceGranularity == 32) {\r
-        if (ptr->SpecificFlag == 0x06) {\r
+      if (ACPIAddressDesc->AddrSpaceGranularity == 32) {\r
+        if (ACPIAddressDesc->SpecificFlag == 0x06) {\r
           //\r
           // Pmem32\r
           //\r
@@ -691,8 +630,8 @@ Returns:
         }\r
       }\r
 \r
-      if (ptr->AddrSpaceGranularity == 64) {\r
-        if (ptr->SpecificFlag == 0x06) {\r
+      if (ACPIAddressDesc->AddrSpaceGranularity == 64) {\r
+        if (ACPIAddressDesc->SpecificFlag == 0x06) {\r
           //\r
           // PMem64\r
           //\r
@@ -724,28 +663,18 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Remove a PCI device from device pool and mark its bar\r
+  \r
+  @param PciDevice Instance of Pci device.\r
+  \r
+  @retval EFI_SUCCESS Success Operation.\r
+  @retval EFI_ABORTED Pci device is a root bridge.\r
+**/\r
 EFI_STATUS\r
 RejectPciDevice (\r
   IN PCI_IO_DEVICE       *PciDevice\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Remove a PCI device from device pool and mark its bar\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciDevice - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
 {\r
   PCI_IO_DEVICE   *Bridge;\r
   PCI_IO_DEVICE   *Temp;\r
@@ -755,7 +684,7 @@ Returns:
   // Remove the padding resource from a bridge\r
   //\r
   if ( IS_PCI_BRIDGE(&PciDevice->Pci) && \\r
-       PciDevice->ResourcePaddingDescriptors ) {\r
+       PciDevice->ResourcePaddingDescriptors != NULL ) {\r
     gBS->FreePool (PciDevice->ResourcePaddingDescriptors);\r
     PciDevice->ResourcePaddingDescriptors = NULL;\r
     return EFI_SUCCESS;\r
@@ -764,7 +693,7 @@ Returns:
   //\r
   // Skip RB and PPB\r
   //\r
-  if (IS_PCI_BRIDGE (&PciDevice->Pci) || (!PciDevice->Parent)) {\r
+  if (IS_PCI_BRIDGE (&PciDevice->Pci) || (PciDevice->Parent == NULL)) {\r
     return EFI_ABORTED;\r
   }\r
 \r
@@ -773,7 +702,7 @@ Returns:
     // Get the root bridge device\r
     //\r
     Bridge = PciDevice;\r
-    while (Bridge->Parent) {\r
+    while (Bridge->Parent != NULL) {\r
       Bridge = Bridge->Parent;\r
     }\r
 \r
@@ -790,7 +719,7 @@ Returns:
   //\r
   Bridge      = PciDevice->Parent;\r
   CurrentLink = Bridge->ChildList.ForwardLink;\r
-  while (CurrentLink && CurrentLink != &Bridge->ChildList) {\r
+  while (CurrentLink != NULL && CurrentLink != &Bridge->ChildList) {\r
     Temp = PCI_IO_DEVICE_FROM_LINK (CurrentLink);\r
     if (Temp == PciDevice) {\r
       InitializePciDevice (Temp);\r
@@ -805,24 +734,17 @@ Returns:
   return EFI_ABORTED;\r
 }\r
 \r
+/**\r
+  Determine whethter a PCI device can be rejected.\r
+  \r
+  @param PciResNode Pointer to Pci resource node instance.\r
+  \r
+  @return whethter a PCI device can be rejected.\r
+**/\r
 BOOLEAN\r
 IsRejectiveDevice (\r
   IN  PCI_RESOURCE_NODE   *PciResNode\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Determine whethter a PCI device can be rejected\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResNode - add argument and description to function comment\r
 {\r
   PCI_IO_DEVICE *Temp;\r
 \r
@@ -831,21 +753,21 @@ Returns:
   //\r
   // Ensure the device is present\r
   //\r
-  if (!Temp) {\r
+  if (Temp == NULL) {\r
     return FALSE;\r
   }\r
 \r
   //\r
   // PPB and RB should go ahead\r
   //\r
-  if (IS_PCI_BRIDGE (&Temp->Pci) || (!Temp->Parent)) {\r
+  if (IS_PCI_BRIDGE (&Temp->Pci) || (Temp->Parent == NULL)) {\r
     return TRUE;\r
   }\r
 \r
   //\r
   // Skip device on Bus0\r
   //\r
-  if ((Temp->Parent) && (Temp->BusNumber == 0)) {\r
+  if ((Temp->Parent != NULL) && (Temp->BusNumber == 0)) {\r
     return FALSE;\r
   }\r
 \r
@@ -859,38 +781,31 @@ Returns:
   return TRUE;\r
 }\r
 \r
+/**\r
+  Compare two resource node and get the larger resource consumer\r
+  \r
+  @param PciResNode1  resource node 1 want to be compared\r
+  @param PciResNode2  resource node 2 want to be compared\r
+  \r
+  @return Larger resource consumer.\r
+**/\r
 PCI_RESOURCE_NODE *\r
 GetLargerConsumerDevice (\r
   IN  PCI_RESOURCE_NODE   *PciResNode1,\r
   IN  PCI_RESOURCE_NODE   *PciResNode2\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Get the larger resource consumer\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResNode1 - add argument and description to function comment\r
-// TODO:    PciResNode2 - add argument and description to function comment\r
 {\r
-  if (!PciResNode2) {\r
+  if (PciResNode2 == NULL) {\r
     return PciResNode1;\r
   }\r
 \r
-  if ((IS_PCI_BRIDGE(&(PciResNode2->PciDev->Pci)) || !(PciResNode2->PciDev->Parent)) \\r
+  if ((IS_PCI_BRIDGE(&(PciResNode2->PciDev->Pci)) || (PciResNode2->PciDev->Parent == NULL)) \\r
        && (PciResNode2->ResourceUsage != PciResUsagePadding) )\r
   {\r
     return PciResNode1;\r
   }\r
 \r
-  if (!PciResNode1) {\r
+  if (PciResNode1 == NULL) {\r
     return PciResNode2;\r
   }\r
 \r
@@ -902,24 +817,18 @@ Returns:
 \r
 }\r
 \r
+\r
+/**\r
+  Get the max resource consumer in the host resource pool.\r
+  \r
+  @param ResPool  Pointer to resource pool node.\r
+  \r
+  @return the max resource consumer in the host resource pool.\r
+**/\r
 PCI_RESOURCE_NODE *\r
 GetMaxResourceConsumerDevice (\r
   IN  PCI_RESOURCE_NODE   *ResPool\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Get the max resource consumer in the host resource pool\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    ResPool - add argument and description to function comment\r
 {\r
   PCI_RESOURCE_NODE *Temp;\r
   LIST_ENTRY        *CurrentLink;\r
@@ -929,7 +838,7 @@ Returns:
   PciResNode  = NULL;\r
 \r
   CurrentLink = ResPool->ChildList.ForwardLink;\r
-  while (CurrentLink && CurrentLink != &ResPool->ChildList) {\r
+  while (CurrentLink != NULL && CurrentLink != &ResPool->ChildList) {\r
 \r
     Temp = RESOURCE_NODE_FROM_LINK (CurrentLink);\r
 \r
@@ -938,7 +847,7 @@ Returns:
       continue;\r
     }\r
 \r
-    if ((IS_PCI_BRIDGE (&(Temp->PciDev->Pci)) || (!Temp->PciDev->Parent)) \\r
+    if ((IS_PCI_BRIDGE (&(Temp->PciDev->Pci)) || (Temp->PciDev->Parent == NULL)) \\r
           && (Temp->ResourceUsage != PciResUsagePadding))\r
     {\r
       PPBResNode  = GetMaxResourceConsumerDevice (Temp);\r
@@ -953,6 +862,20 @@ Returns:
   return PciResNode;\r
 }\r
 \r
+/**\r
+  Adjust host bridge allocation so as to reduce resource requirement\r
+  \r
+  @param IoPool           Pointer to instance of I/O resource Node.\r
+  @param Mem32Pool        Pointer to instance of 32-bit memory resource Node.\r
+  @param PMem32Pool       Pointer to instance of 32-bit Pmemory resource node.\r
+  @param Mem64Pool        Pointer to instance of 64-bit memory resource node.\r
+  @param PMem64Pool       Pointer to instance of 64-bit Pmemory resource node.\r
+  @param IoResStatus      Status of I/O resource Node.\r
+  @param Mem32ResStatus   Status of 32-bit memory resource Node.\r
+  @param PMem32ResStatus  Status of 32-bit Pmemory resource node.\r
+  @param Mem64ResStatus   Status of 64-bit memory resource node.\r
+  @param PMem64ResStatus  Status of 64-bit Pmemory resource node.\r
+**/\r
 EFI_STATUS\r
 PciHostBridgeAdjustAllocation (\r
   IN  PCI_RESOURCE_NODE   *IoPool,\r
@@ -966,32 +889,6 @@ PciHostBridgeAdjustAllocation (
   IN  UINT64              Mem64ResStatus,\r
   IN  UINT64              PMem64ResStatus\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-    Adjust host bridge allocation so as to reduce resource requirement\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    IoPool - add argument and description to function comment\r
-// TODO:    Mem32Pool - add argument and description to function comment\r
-// TODO:    PMem32Pool - add argument and description to function comment\r
-// TODO:    Mem64Pool - add argument and description to function comment\r
-// TODO:    PMem64Pool - add argument and description to function comment\r
-// TODO:    IoResStatus - add argument and description to function comment\r
-// TODO:    Mem32ResStatus - add argument and description to function comment\r
-// TODO:    PMem32ResStatus - add argument and description to function comment\r
-// TODO:    Mem64ResStatus - add argument and description to function comment\r
-// TODO:    PMem64ResStatus - add argument and description to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
 {\r
   BOOLEAN                               AllocationAjusted;\r
   PCI_RESOURCE_NODE                     *PciResNode;\r
@@ -1028,7 +925,7 @@ Returns:
       continue;\r
     }\r
 \r
-    if (ResStatus[ResType] == EFI_RESOURCE_NONEXISTENT) {\r
+    if (ResStatus[ResType] == EFI_RESOURCE_NOT_SATISFIED) {\r
       //\r
       // Hostbridge hasn't this resource type\r
       //\r
@@ -1039,7 +936,7 @@ Returns:
     // Hostbridge hasn't enough resource\r
     //\r
     PciResNode = GetMaxResourceConsumerDevice (ResPool[ResType]);\r
-    if (!PciResNode) {\r
+    if (PciResNode == NULL) {\r
       continue;\r
     }\r
 \r
@@ -1048,10 +945,14 @@ Returns:
     //\r
     for (DevIndex = 0; DevIndex < RemovedPciDevNum; DevIndex++) {\r
       if (PciResNode->PciDev == RemovedPciDev[DevIndex]) {\r
-        continue;\r
+        break;\r
       }\r
     }\r
 \r
+    if (DevIndex != RemovedPciDevNum) {\r
+      continue;\r
+    }\r
+\r
     //\r
     // Remove the device if it isn't in the array\r
     //\r
@@ -1094,6 +995,18 @@ Returns:
   }\r
 }\r
 \r
+/**\r
+  Summary requests for all resource type, and contruct ACPI resource\r
+  requestor instance.\r
+  \r
+  @param Bridge           detecting bridge\r
+  @param IoNode           Pointer to instance of I/O resource Node\r
+  @param Mem32Node        Pointer to instance of 32-bit memory resource Node\r
+  @param PMem32Node       Pointer to instance of 32-bit Pmemory resource node\r
+  @param Mem64Node        Pointer to instance of 64-bit memory resource node\r
+  @param PMem64Node       Pointer to instance of 64-bit Pmemory resource node\r
+  @param Config           Output buffer holding new constructed APCI resource requestor\r
+**/\r
 EFI_STATUS\r
 ConstructAcpiResourceRequestor (\r
   IN PCI_IO_DEVICE      *Bridge,\r
@@ -1102,29 +1015,8 @@ ConstructAcpiResourceRequestor (
   IN PCI_RESOURCE_NODE  *PMem32Node,\r
   IN PCI_RESOURCE_NODE  *Mem64Node,\r
   IN PCI_RESOURCE_NODE  *PMem64Node,\r
-  OUT VOID              **pConfig\r
+  OUT VOID              **Config\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    IoNode - add argument and description to function comment\r
-// TODO:    Mem32Node - add argument and description to function comment\r
-// TODO:    PMem32Node - add argument and description to function comment\r
-// TODO:    Mem64Node - add argument and description to function comment\r
-// TODO:    PMem64Node - add argument and description to function comment\r
-// TODO:    pConfig - add argument and description to function comment\r
-// TODO:    EFI_OUT_OF_RESOURCES - add return value to function comment\r
-// TODO:    EFI_OUT_OF_RESOURCES - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   UINT8                             NumConfig;\r
   UINT8                             Aperture;\r
@@ -1135,7 +1027,7 @@ Returns:
   NumConfig = 0;\r
   Aperture  = 0;\r
 \r
-  *pConfig  = NULL;\r
+  *Config  = NULL;\r
 \r
   //\r
   // if there is io request, add to the io aperture\r
@@ -1198,7 +1090,7 @@ Returns:
     //\r
     // Deal with io aperture\r
     //\r
-    if (Aperture & 0x01) {\r
+    if ((Aperture & 0x01) != 0) {\r
       Ptr->Desc     = ACPI_ADDRESS_SPACE_DESCRIPTOR;\r
       Ptr->Len      = sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) - 3;\r
       //\r
@@ -1217,7 +1109,7 @@ Returns:
     //\r
     // Deal with mem32 aperture\r
     //\r
-    if (Aperture & 0x02) {\r
+    if ((Aperture & 0x02) != 0) {\r
       Ptr->Desc     = ACPI_ADDRESS_SPACE_DESCRIPTOR;\r
       Ptr->Len      = sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) - 3;\r
       //\r
@@ -1241,7 +1133,7 @@ Returns:
     //\r
     // Deal with Pmem32 aperture\r
     //\r
-    if (Aperture & 0x04) {\r
+    if ((Aperture & 0x04) != 0) {\r
       Ptr->Desc     = ACPI_ADDRESS_SPACE_DESCRIPTOR;\r
       Ptr->Len      = sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) - 3;\r
       //\r
@@ -1264,7 +1156,7 @@ Returns:
     //\r
     // Deal with mem64 aperture\r
     //\r
-    if (Aperture & 0x08) {\r
+    if ((Aperture & 0x08) != 0) {\r
       Ptr->Desc     = ACPI_ADDRESS_SPACE_DESCRIPTOR;\r
       Ptr->Len      = sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) - 3;\r
       //\r
@@ -1287,7 +1179,7 @@ Returns:
     //\r
     // Deal with Pmem64 aperture\r
     //\r
-    if (Aperture & 0x10) {\r
+    if ((Aperture & 0x10) != 0) {\r
       Ptr->Desc     = ACPI_ADDRESS_SPACE_DESCRIPTOR;\r
       Ptr->Len      = sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) - 3;\r
       //\r
@@ -1305,7 +1197,7 @@ Returns:
       Ptr->AddrLen      = PMem64Node->Length;\r
       Ptr->AddrRangeMax = PMem64Node->Alignment;\r
 \r
-      Ptr               = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) (Configuration + sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR));\r
+      Ptr               = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) ((UINT8 *) Ptr + sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR));\r
     }\r
 \r
     //\r
@@ -1336,50 +1228,47 @@ Returns:
     PtrEnd->Checksum  = 0;\r
   }\r
 \r
-  *pConfig = Configuration;\r
+  *Config = Configuration;\r
 \r
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Get resource base from an acpi configuration descriptor.\r
+  \r
+  @param Config       an acpi configuration descriptor.\r
+  @param IoBase       output of I/O resource base address.\r
+  @param Mem32Base    output of 32-bit memory base address.\r
+  @param PMem32Base   output of 32-bit pmemory base address.\r
+  @param Mem64Base    output of 64-bit memory base address.\r
+  @param PMem64Base   output of 64-bit pmemory base address.\r
+  \r
+  @return EFI_SUCCESS    Get resource base address successfully.\r
+\r
+**/\r
 EFI_STATUS\r
 GetResourceBase (\r
-  IN VOID     *pConfig,\r
+  IN VOID     *Config,\r
   OUT UINT64  *IoBase,\r
   OUT UINT64  *Mem32Base,\r
   OUT UINT64  *PMem32Base,\r
   OUT UINT64  *Mem64Base,\r
   OUT UINT64  *PMem64Base\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    pConfig - add argument and description to function comment\r
-// TODO:    IoBase - add argument and description to function comment\r
-// TODO:    Mem32Base - add argument and description to function comment\r
-// TODO:    PMem32Base - add argument and description to function comment\r
-// TODO:    Mem64Base - add argument and description to function comment\r
-// TODO:    PMem64Base - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   UINT8                             *Temp;\r
   EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Ptr;\r
   UINT64                            ResStatus;\r
 \r
+  ASSERT (Config != NULL);\r
+\r
   *IoBase     = 0xFFFFFFFFFFFFFFFFULL;\r
   *Mem32Base  = 0xFFFFFFFFFFFFFFFFULL;\r
   *PMem32Base = 0xFFFFFFFFFFFFFFFFULL;\r
   *Mem64Base  = 0xFFFFFFFFFFFFFFFFULL;\r
   *PMem64Base = 0xFFFFFFFFFFFFFFFFULL;\r
 \r
-  Temp        = (UINT8 *) pConfig;\r
+  Temp        = (UINT8 *) Config;\r
 \r
   while (*Temp == ACPI_ADDRESS_SPACE_DESCRIPTOR) {\r
 \r
@@ -1399,7 +1288,7 @@ Returns:
         // Check to see the granularity\r
         //\r
         if (Ptr->AddrSpaceGranularity == 32) {\r
-          if (Ptr->SpecificFlag & 0x06) {\r
+          if ((Ptr->SpecificFlag & 0x06) != 0) {\r
             *PMem32Base = Ptr->AddrRangeMin;\r
           } else {\r
             *Mem32Base = Ptr->AddrRangeMin;\r
@@ -1407,7 +1296,7 @@ Returns:
         }\r
 \r
         if (Ptr->AddrSpaceGranularity == 64) {\r
-          if (Ptr->SpecificFlag & 0x06) {\r
+          if ((Ptr->SpecificFlag & 0x06) != 0) {\r
             *PMem64Base = Ptr->AddrRangeMin;\r
           } else {\r
             *Mem64Base = Ptr->AddrRangeMin;\r
@@ -1440,23 +1329,19 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Enumerate pci bridge, allocate resource and determine attribute\r
+  for devices on this bridge\r
+  \r
+  @param BridgeDev Pointer to instance of bridge device.\r
+  \r
+  @retval EFI_SUCCESS Success operation.\r
+  @retval Others      Fail to enumerate.\r
+**/\r
 EFI_STATUS\r
 PciBridgeEnumerator (\r
   IN PCI_IO_DEVICE                                     *BridgeDev\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    BridgeDev - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   UINT8               SubBusNumber;\r
   UINT8               StartBusNumber;\r
@@ -1504,23 +1389,18 @@ Returns:
 \r
 }\r
 \r
+/**\r
+  Allocate all kinds of resource for bridge\r
+  \r
+  @param Bridge      Pointer to bridge instance.\r
+  \r
+  @retval EFI_SUCCESS Success operation.\r
+  @retval Others      Fail to allocate resource for bridge.\r
+**/\r
 EFI_STATUS\r
 PciBridgeResourceAllocator (\r
   IN PCI_IO_DEVICE  *Bridge\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   PCI_RESOURCE_NODE *IoBridge;\r
   PCI_RESOURCE_NODE *Mem32Bridge;\r
@@ -1663,6 +1543,18 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Get resource base address for a pci bridge device\r
+  \r
+  @param Bridge  Given Pci driver instance.\r
+  @param IoBase  output for base address of I/O type resource.\r
+  @param Mem32Base  output for base address of 32-bit memory type resource.\r
+  @param PMem32Base  output for base address of 32-bit Pmemory type resource.\r
+  @param Mem64Base  output for base address of 64-bit memory type resource.\r
+  @param PMem64Base  output for base address of 64-bit Pmemory type resource.\r
+  \r
+  @retval EFI_SUCCESS Succes to get resource base address.\r
+**/\r
 EFI_STATUS\r
 GetResourceBaseFromBridge (\r
   IN  PCI_IO_DEVICE *Bridge,\r
@@ -1672,25 +1564,6 @@ GetResourceBaseFromBridge (
   OUT UINT64        *Mem64Base,\r
   OUT UINT64        *PMem64Base\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    IoBase - add argument and description to function comment\r
-// TODO:    Mem32Base - add argument and description to function comment\r
-// TODO:    PMem32Base - add argument and description to function comment\r
-// TODO:    Mem64Base - add argument and description to function comment\r
-// TODO:    PMem64Base - add argument and description to function comment\r
-// TODO:    EFI_OUT_OF_RESOURCES - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   if (!Bridge->Allocated) {\r
     return EFI_OUT_OF_RESOURCES;\r
@@ -1704,19 +1577,19 @@ Returns:
 \r
   if (IS_PCI_BRIDGE (&Bridge->Pci)) {\r
 \r
-    if (Bridge->PciBar[PPB_IO_RANGE].Length) {\r
+    if (Bridge->PciBar[PPB_IO_RANGE].Length > 0) {\r
       *IoBase = Bridge->PciBar[PPB_IO_RANGE].BaseAddress;\r
     }\r
 \r
-    if (Bridge->PciBar[PPB_MEM32_RANGE].Length) {\r
+    if (Bridge->PciBar[PPB_MEM32_RANGE].Length > 0) {\r
       *Mem32Base = Bridge->PciBar[PPB_MEM32_RANGE].BaseAddress;\r
     }\r
 \r
-    if (Bridge->PciBar[PPB_PMEM32_RANGE].Length) {\r
+    if (Bridge->PciBar[PPB_PMEM32_RANGE].Length > 0) {\r
       *PMem32Base = Bridge->PciBar[PPB_PMEM32_RANGE].BaseAddress;\r
     }\r
 \r
-    if (Bridge->PciBar[PPB_PMEM64_RANGE].Length) {\r
+    if (Bridge->PciBar[PPB_PMEM64_RANGE].Length > 0) {\r
       *PMem64Base = Bridge->PciBar[PPB_PMEM64_RANGE].BaseAddress;\r
     } else {\r
       *PMem64Base = gAllOne;\r
@@ -1725,15 +1598,15 @@ Returns:
   }\r
 \r
   if (IS_CARDBUS_BRIDGE (&Bridge->Pci)) {\r
-    if (Bridge->PciBar[P2C_IO_1].Length) {\r
+    if (Bridge->PciBar[P2C_IO_1].Length > 0) {\r
       *IoBase = Bridge->PciBar[P2C_IO_1].BaseAddress;\r
     } else {\r
-      if (Bridge->PciBar[P2C_IO_2].Length) {\r
+      if (Bridge->PciBar[P2C_IO_2].Length > 0) {\r
         *IoBase = Bridge->PciBar[P2C_IO_2].BaseAddress;\r
       }\r
     }\r
 \r
-    if (Bridge->PciBar[P2C_MEM_1].Length) {\r
+    if (Bridge->PciBar[P2C_MEM_1].Length > 0) {\r
       if (Bridge->PciBar[P2C_MEM_1].BarType == PciBarTypePMem32) {\r
         *PMem32Base = Bridge->PciBar[P2C_MEM_1].BaseAddress;\r
       }\r
@@ -1743,7 +1616,7 @@ Returns:
       }\r
     }\r
 \r
-    if (Bridge->PciBar[P2C_MEM_2].Length) {\r
+    if (Bridge->PciBar[P2C_MEM_2].Length > 0) {\r
       if (Bridge->PciBar[P2C_MEM_2].BarType == PciBarTypePMem32) {\r
         *PMem32Base = Bridge->PciBar[P2C_MEM_2].BaseAddress;\r
       }\r
@@ -1757,26 +1630,73 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+   These are the notifications from the PCI bus driver that it is about to enter a certain \r
+   phase of the PCI enumeration process.\r
+\r
+   This member function can be used to notify the host bridge driver to perform specific actions,\r
+   including any chipset-specific initialization, so that the chipset is ready to enter the next phase.\r
+   Eight notification points are defined at this time. See belows:\r
+   EfiPciHostBridgeBeginEnumeration     - Resets the host bridge PCI apertures and internal data\r
+                                          structures. The PCI enumerator should issue this notification\r
+                                          before starting a fresh enumeration process. Enumeration cannot\r
+                                          be restarted after sending any other notification such as\r
+                                          EfiPciHostBridgeBeginBusAllocation.\r
+   EfiPciHostBridgeBeginBusAllocation   - The bus allocation phase is about to begin. No specific action is\r
+                                          required here. This notification can be used to perform any\r
+                                          chipset-specific programming.\r
+   EfiPciHostBridgeEndBusAllocation     - The bus allocation and bus programming phase is complete. No\r
+                                          specific action is required here. This notification can be used to\r
+                                          perform any chipset-specific programming.\r
+   EfiPciHostBridgeBeginResourceAllocation -  The resource allocation phase is about to begin. No specific\r
+                                              action is required here. This notification can be used to perform\r
+                                              any chipset-specific programming.\r
+   EfiPciHostBridgeAllocateResources    - Allocates resources per previously submitted requests for all the PCI\r
+                                          root bridges. These resource settings are returned on the next call to\r
+                                          GetProposedResources(). Before calling NotifyPhase() with a Phase of\r
+                                          EfiPciHostBridgeAllocateResource, the PCI bus enumerator is responsible for gathering I/O and memory requests for\r
+                                          all the PCI root bridges and submitting these requests using\r
+                                          SubmitResources(). This function pads the resource amount\r
+                                          to suit the root bridge hardware, takes care of dependencies between\r
+                                          the PCI root bridges, and calls the Global Coherency Domain (GCD)\r
+                                          with the allocation request. In the case of padding, the allocated range\r
+                                          could be bigger than what was requested.\r
+   EfiPciHostBridgeSetResources         - Programs the host bridge hardware to decode previously allocated\r
+                                          resources (proposed resources) for all the PCI root bridges. After the\r
+                                          hardware is programmed, reassigning resources will not be supported.\r
+                                          The bus settings are not affected.\r
+   EfiPciHostBridgeFreeResources        - Deallocates resources that were previously allocated for all the PCI\r
+                                          root bridges and resets the I/O and memory apertures to their initial\r
+                                          state. The bus settings are not affected. If the request to allocate\r
+                                          resources fails, the PCI enumerator can use this notification to\r
+                                          deallocate previous resources, adjust the requests, and retry\r
+                                          allocation.\r
+   EfiPciHostBridgeEndResourceAllocation- The resource allocation phase is completed. No specific action is\r
+                                          required here. This notification can be used to perform any chipsetspecific\r
+                                          programming.\r
+      \r
+   @param[in] PciResAlloc         The instance pointer of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL\r
+   @param[in] Phase               The phase during enumeration\r
+   \r
+   @retval EFI_NOT_READY          This phase cannot be entered at this time. For example, this error\r
+                                  is valid for a Phase of EfiPciHostBridgeAllocateResources if\r
+                                  SubmitResources() has not been called for one or more\r
+                                  PCI root bridges before this call\r
+   @retval EFI_DEVICE_ERROR       Programming failed due to a hardware error. This error is valid\r
+                                  for a Phase of EfiPciHostBridgeSetResources.\r
+   @retval EFI_INVALID_PARAMETER  Invalid phase parameter\r
+   @retval EFI_OUT_OF_RESOURCES   The request could not be completed due to a lack of resources.\r
+                                  This error is valid for a Phase of EfiPciHostBridgeAllocateResources if the\r
+                                  previously submitted resource requests cannot be fulfilled or\r
+                                  were only partially fulfilled.\r
+   @retval EFI_SUCCESS            The notification was accepted without any errors.\r
+\r
+**/\r
 EFI_STATUS\r
 NotifyPhase (\r
   IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc,\r
   EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PHASE       Phase\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    PciResAlloc - add argument and description to function comment\r
-// TODO:    Phase - add argument and description to function comment\r
-// TODO:    EFI_NOT_FOUND - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   EFI_HANDLE                      HostBridgeHandle;\r
   EFI_HANDLE                      RootBridgeHandle;\r
@@ -1838,6 +1758,30 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+   Provides the hooks from the PCI bus driver to every PCI controller (device/function) at various\r
+   stages of the PCI enumeration process that allow the host bridge driver to preinitialize individual\r
+   PCI controllers before enumeration.\r
+\r
+   This function is called during the PCI enumeration process. No specific action is expected from this\r
+   member function. It allows the host bridge driver to preinitialize individual PCI controllers before\r
+   enumeration.\r
+\r
+   @param Bridge            Pointer to the EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL instance.\r
+   @param Bus               The bus number of the pci device. \r
+   @param Device            The device number of the pci device. \r
+   @param Func              The function number of the pci device. \r
+   @param Phase             The phase of the PCI device enumeration. \r
+   \r
+   @retval EFI_SUCCESS              The requested parameters were returned.\r
+   @retval EFI_INVALID_PARAMETER    RootBridgeHandle is not a valid root bridge handle.\r
+   @retval EFI_INVALID_PARAMETER    Phase is not a valid phase that is defined in\r
+                                    EFI_PCI_CONTROLLER_RESOURCE_ALLOCATION_PHASE.\r
+   @retval EFI_DEVICE_ERROR         Programming failed due to a hardware error. The PCI enumerator should\r
+                                    not enumerate this device, including its child devices if it is a PCI-to-PCI\r
+                                    bridge.\r
+\r
+**/\r
 EFI_STATUS\r
 PreprocessController (\r
   IN PCI_IO_DEVICE                                    *Bridge,\r
@@ -1846,24 +1790,6 @@ PreprocessController (
   IN UINT8                                            Func,\r
   IN EFI_PCI_CONTROLLER_RESOURCE_ALLOCATION_PHASE     Phase\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    Bridge - add argument and description to function comment\r
-// TODO:    Bus - add argument and description to function comment\r
-// TODO:    Device - add argument and description to function comment\r
-// TODO:    Func - add argument and description to function comment\r
-// TODO:    Phase - add argument and description to function comment\r
-// TODO:    EFI_UNSUPPORTED - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS       RootBridgePciAddress;\r
   EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL  *PciResAlloc;\r
@@ -1895,7 +1821,7 @@ Returns:
   //\r
   // Get Root Brige Handle\r
   //\r
-  while (Bridge->Parent) {\r
+  while (Bridge->Parent != NULL) {\r
     Bridge = Bridge->Parent;\r
   }\r
 \r
@@ -1945,6 +1871,19 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Hot plug request notify.\r
+  \r
+  @param This                 - A pointer to the hot plug request protocol.\r
+  @param Operation            - The operation.\r
+  @param Controller           - A pointer to the controller.\r
+  @param RemainingDevicePath  - A pointer to the device path.\r
+  @param NumberOfChildren     - A the number of child handle in the ChildHandleBuffer.\r
+  @param ChildHandleBuffer    - A pointer to the array contain the child handle.\r
+  \r
+  @retval EFI_NOT_FOUND Can not find bridge according to controller handle.\r
+  @retval EFI_SUCCESS   Success operating.\r
+**/\r
 EFI_STATUS\r
 EFIAPI\r
 PciHotPlugRequestNotify (\r
@@ -1955,31 +1894,6 @@ PciHotPlugRequestNotify (
   IN OUT UINT8                        *NumberOfChildren,\r
   IN OUT EFI_HANDLE                   * ChildHandleBuffer\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  Hot plug request notify.\r
-\r
-Arguments:\r
-\r
-  This                 - A pointer to the hot plug request protocol.\r
-  Operation            - The operation.\r
-  Controller           - A pointer to the controller.\r
-  RemainningDevicePath - A pointer to the device path.\r
-  NumberOfChildren     - A the number of child handle in the ChildHandleBuffer.\r
-  ChildHandleBuffer    - A pointer to the array contain the child handle.\r
-\r
-Returns:\r
-\r
-  Status code.\r
-\r
---*/\r
-// TODO:    RemainingDevicePath - add argument and description to function comment\r
-// TODO:    EFI_NOT_FOUND - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   PCI_IO_DEVICE       *Bridge;\r
   PCI_IO_DEVICE       *Temp;\r
@@ -2007,7 +1921,7 @@ Returns:
   // Get root bridge handle\r
   //\r
   Temp = Bridge;\r
-  while (Temp->Parent) {\r
+  while (Temp->Parent != NULL) {\r
     Temp = Temp->Parent;\r
   }\r
 \r
@@ -2070,22 +1984,18 @@ Returns:
   return EFI_SUCCESS;\r
 }\r
 \r
+/**\r
+  Search hostbridge according to given handle\r
+  \r
+  @param RootBridgeHandle     - Host bridge handle.\r
+\r
+  @return TRUE  Found.\r
+  @return FALSE Not found.\r
+**/\r
 BOOLEAN\r
 SearchHostBridgeHandle (\r
   IN EFI_HANDLE RootBridgeHandle\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    RootBridgeHandle - add argument and description to function comment\r
 {\r
   EFI_HANDLE                      HostBridgeHandle;\r
   EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *PciRootBridgeIo;\r
@@ -2118,29 +2028,19 @@ Returns:
   return FALSE;\r
 }\r
 \r
+/**\r
+  Add host bridge handle to global variable for enumating.\r
+  \r
+  @param HostBridgeHandle host bridge handle.\r
+**/\r
 EFI_STATUS\r
 AddHostBridgeEnumerator (\r
   IN EFI_HANDLE HostBridgeHandle\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-Arguments:\r
-\r
-Returns:\r
-\r
-  None\r
-\r
---*/\r
-// TODO:    HostBridgeHandle - add argument and description to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
-// TODO:    EFI_ABORTED - add return value to function comment\r
-// TODO:    EFI_SUCCESS - add return value to function comment\r
 {\r
   UINTN Index;\r
 \r
-  if (!HostBridgeHandle) {\r
+  if (HostBridgeHandle == NULL) {\r
     return EFI_ABORTED;\r
   }\r
 \r
@@ -2157,3 +2057,4 @@ Returns:
 \r
   return EFI_SUCCESS;\r
 }\r
+\r