Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeRuntimePciExpressLib
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103761
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf
r48674 r58459 8 8 # proper virtual address is used to perform the PCI Express Configuration cycle. 9 9 # 10 # Copyright (c) 2007 - 201 0, Intel Corporation. All rights reserved.<BR>10 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 11 11 # 12 12 # This program and the accompanying materials … … 23 23 INF_VERSION = 0x00010005 24 24 BASE_NAME = DxeRuntimePciExpressLib 25 MODULE_UNI_FILE = DxeRuntimePciExpressLib.uni 25 26 FILE_GUID = 54DCBCE5-92AD-41f5-AAAF-1170F16DA6A8 26 27 MODULE_TYPE = DXE_RUNTIME_DRIVER … … 54 55 55 56 [Guids] 56 gEfiEventVirtualAddressChangeGuid ## PRODUCES ## Event 57 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event 58 -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c
r48674 r58459 6 6 Library. 7 7 8 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>8 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> 9 9 This program and the accompanying materials 10 10 are licensed and made available under the terms and conditions of the BSD License … … 546 546 If EndBit is greater than 7, then ASSERT(). 547 547 If EndBit is less than StartBit, then ASSERT(). 548 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 548 549 549 550 @param Address The PCI configuration register to write. … … 589 590 If EndBit is greater than 7, then ASSERT(). 590 591 If EndBit is less than StartBit, then ASSERT(). 592 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 591 593 592 594 @param Address The PCI configuration register to write. … … 632 634 If EndBit is greater than 7, then ASSERT(). 633 635 If EndBit is less than StartBit, then ASSERT(). 636 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 634 637 635 638 @param Address The PCI configuration register to write. … … 677 680 If EndBit is greater than 7, then ASSERT(). 678 681 If EndBit is less than StartBit, then ASSERT(). 682 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 683 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 679 684 680 685 @param Address The PCI configuration register to write. … … 910 915 If EndBit is greater than 15, then ASSERT(). 911 916 If EndBit is less than StartBit, then ASSERT(). 917 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 912 918 913 919 @param Address The PCI configuration register to write. … … 954 960 If EndBit is greater than 15, then ASSERT(). 955 961 If EndBit is less than StartBit, then ASSERT(). 962 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 956 963 957 964 @param Address The PCI configuration register to write. … … 998 1005 If EndBit is greater than 15, then ASSERT(). 999 1006 If EndBit is less than StartBit, then ASSERT(). 1007 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1000 1008 1001 1009 @param Address The PCI configuration register to write. … … 1044 1052 If EndBit is greater than 15, then ASSERT(). 1045 1053 If EndBit is less than StartBit, then ASSERT(). 1054 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1055 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1046 1056 1047 1057 @param Address The PCI configuration register to write. … … 1277 1287 If EndBit is greater than 31, then ASSERT(). 1278 1288 If EndBit is less than StartBit, then ASSERT(). 1289 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1279 1290 1280 1291 @param Address The PCI configuration register to write. … … 1321 1332 If EndBit is greater than 31, then ASSERT(). 1322 1333 If EndBit is less than StartBit, then ASSERT(). 1334 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1323 1335 1324 1336 @param Address The PCI configuration register to write. … … 1365 1377 If EndBit is greater than 31, then ASSERT(). 1366 1378 If EndBit is less than StartBit, then ASSERT(). 1379 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1367 1380 1368 1381 @param Address The PCI configuration register to write. … … 1411 1424 If EndBit is greater than 31, then ASSERT(). 1412 1425 If EndBit is less than StartBit, then ASSERT(). 1426 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1427 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1413 1428 1414 1429 @param Address The PCI configuration register to write.
Note:
See TracChangeset
for help on using the changeset viewer.