]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Bus/Pci/PciBusDxe/PciCommand.c
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / PciBusDxe / PciCommand.c
index 8a8b4b8faca8bc6a42106b3d1e4497a60249b5f6..214aeecdd40a0cfbd282ab1e161d4949c722a019 100644 (file)
@@ -1,14 +1,8 @@
 /** @file\r
   PCI command register operations supporting functions implementation for PCI Bus module.\r
 \r
-Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
-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
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -75,12 +69,12 @@ PciOperateRegister (
 }\r
 \r
 /**\r
-  Check the cpability supporting by given device.\r
+  Check the capability supporting by given device.\r
 \r
   @param PciIoDevice   Pointer to instance of PCI_IO_DEVICE.\r
 \r
-  @retval TRUE         Cpability supportted.\r
-  @retval FALSE        Cpability not supportted.\r
+  @retval TRUE         Capability supported.\r
+  @retval FALSE        Capability not supported.\r
 \r
 **/\r
 BOOLEAN\r
@@ -103,7 +97,7 @@ PciCapabilitySupport (
   @param Offset            A pointer to the offset returned.\r
   @param NextRegBlock      A pointer to the next block returned.\r
 \r
-  @retval EFI_SUCCESS      Successfuly located capability register block.\r
+  @retval EFI_SUCCESS      Successfully located capability register block.\r
   @retval EFI_UNSUPPORTED  Pci device does not support capability.\r
   @retval EFI_NOT_FOUND    Pci device support but can not find register block.\r
 \r
@@ -121,7 +115,7 @@ LocateCapabilityRegBlock (
   UINT8   CapabilityID;\r
 \r
   //\r
-  // To check the cpability of this device supports\r
+  // To check the capability of this device supports\r
   //\r
   if (!PciCapabilitySupport (PciIoDevice)) {\r
     return EFI_UNSUPPORTED;\r
@@ -173,6 +167,14 @@ LocateCapabilityRegBlock (
       return EFI_SUCCESS;\r
     }\r
 \r
+    //\r
+    // Certain PCI device may incorrectly have capability pointing to itself,\r
+    // break to avoid dead loop.\r
+    //\r
+    if (CapabilityPtr == (UINT8) (CapabilityEntry >> 8)) {\r
+      break;\r
+    }\r
+\r
     CapabilityPtr = (UINT8) (CapabilityEntry >> 8);\r
   }\r
 \r
@@ -187,7 +189,7 @@ LocateCapabilityRegBlock (
   @param Offset            A pointer to the offset returned.\r
   @param NextRegBlock      A pointer to the next block returned.\r
 \r
-  @retval EFI_SUCCESS      Successfuly located capability register block.\r
+  @retval EFI_SUCCESS      Successfully located capability register block.\r
   @retval EFI_UNSUPPORTED  Pci device does not support capability.\r
   @retval EFI_NOT_FOUND    Pci device support but can not find register block.\r
 \r