]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c
Refine soma code to make code run safely.
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / PciBusDxe / PciOptionRomSupport.c
index 19803efb2c6acc29370416fb443ffb682f8c20c9..5f8ffe2c05b245184115175991995a2f42e7e368 100644 (file)
@@ -1,8 +1,8 @@
 /** @file\r
   PCI Rom supporting funtions implementation for PCI Bus module.\r
 \r
-Copyright (c) 2006 - 2009, Intel Corporation\r
-All rights reserved. This program and the accompanying materials\r
+Copyright (c) 2006 - 2010, 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
@@ -546,6 +546,7 @@ RomDecode (
 {\r
   UINT32              Value32;\r
   UINT32              Offset;\r
+  UINT32              OffsetMax;\r
   EFI_PCI_IO_PROTOCOL *PciIo;\r
 \r
   PciIo = &PciDevice->PciIo;\r
@@ -553,7 +554,12 @@ RomDecode (
     //\r
     // Clear all bars\r
     //\r
-    for (Offset = 0x10; Offset <= 0x24; Offset += sizeof (UINT32)) {\r
+    OffsetMax = 0x24;\r
+    if (IS_PCI_BRIDGE(&PciDevice->Pci)) {\r
+      OffsetMax = 0x14;\r
+    }\r
+\r
+    for (Offset = 0x10; Offset <= OffsetMax; Offset += sizeof (UINT32)) {\r
       PciIo->Pci.Write (PciIo, EfiPciIoWidthUint32, Offset, 1, &gAllZero);\r
     }\r
 \r