Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeIoLibCpuIo2/IoHighLevel.c
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 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/DxeIoLibCpuIo2/IoHighLevel.c
r48674 r58459 5 5 Base Library. 6 6 7 Copyright (c) 2010 , Intel Corporation. All rights reserved.<BR>7 Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR> 8 8 This program and the accompanying materials are licensed and made available 9 9 under the terms and conditions of the BSD License which accompanies this … … 149 149 If EndBit is greater than 7, then ASSERT(). 150 150 If EndBit is less than StartBit, then ASSERT(). 151 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 151 152 152 153 @param Port The I/O port to write. … … 189 190 If EndBit is greater than 7, then ASSERT(). 190 191 If EndBit is less than StartBit, then ASSERT(). 192 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 191 193 192 194 @param Port The I/O port to write. … … 229 231 If EndBit is greater than 7, then ASSERT(). 230 232 If EndBit is less than StartBit, then ASSERT(). 233 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 231 234 232 235 @param Port The I/O port to write. … … 271 274 If EndBit is greater than 7, then ASSERT(). 272 275 If EndBit is less than StartBit, then ASSERT(). 276 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 277 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 273 278 274 279 @param Port The I/O port to write. … … 429 434 If EndBit is greater than 15, then ASSERT(). 430 435 If EndBit is less than StartBit, then ASSERT(). 436 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 431 437 432 438 @param Port The I/O port to write. … … 469 475 If EndBit is greater than 15, then ASSERT(). 470 476 If EndBit is less than StartBit, then ASSERT(). 477 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 471 478 472 479 @param Port The I/O port to write. … … 509 516 If EndBit is greater than 15, then ASSERT(). 510 517 If EndBit is less than StartBit, then ASSERT(). 518 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 511 519 512 520 @param Port The I/O port to write. … … 551 559 If EndBit is greater than 15, then ASSERT(). 552 560 If EndBit is less than StartBit, then ASSERT(). 561 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 562 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 553 563 554 564 @param Port The I/O port to write. … … 709 719 If EndBit is greater than 31, then ASSERT(). 710 720 If EndBit is less than StartBit, then ASSERT(). 721 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 711 722 712 723 @param Port The I/O port to write. … … 749 760 If EndBit is greater than 31, then ASSERT(). 750 761 If EndBit is less than StartBit, then ASSERT(). 762 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 751 763 752 764 @param Port The I/O port to write. … … 789 801 If EndBit is greater than 31, then ASSERT(). 790 802 If EndBit is less than StartBit, then ASSERT(). 803 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 791 804 792 805 @param Port The I/O port to write. … … 831 844 If EndBit is greater than 31, then ASSERT(). 832 845 If EndBit is less than StartBit, then ASSERT(). 846 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 847 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 833 848 834 849 @param Port The I/O port to write. … … 989 1004 If EndBit is greater than 63, then ASSERT(). 990 1005 If EndBit is less than StartBit, then ASSERT(). 1006 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 991 1007 992 1008 @param Port The I/O port to write. … … 1029 1045 If EndBit is greater than 63, then ASSERT(). 1030 1046 If EndBit is less than StartBit, then ASSERT(). 1047 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1031 1048 1032 1049 @param Port The I/O port to write. … … 1069 1086 If EndBit is greater than 63, then ASSERT(). 1070 1087 If EndBit is less than StartBit, then ASSERT(). 1088 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1071 1089 1072 1090 @param Port The I/O port to write. … … 1111 1129 If EndBit is greater than 63, then ASSERT(). 1112 1130 If EndBit is less than StartBit, then ASSERT(). 1131 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1132 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1113 1133 1114 1134 @param Port The I/O port to write. … … 1269 1289 If EndBit is greater than 7, then ASSERT(). 1270 1290 If EndBit is less than StartBit, then ASSERT(). 1291 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1271 1292 1272 1293 @param Address The MMIO register to write. … … 1310 1331 If EndBit is greater than 7, then ASSERT(). 1311 1332 If EndBit is less than StartBit, then ASSERT(). 1333 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1312 1334 1313 1335 @param Address The MMIO register to write. … … 1351 1373 If EndBit is greater than 7, then ASSERT(). 1352 1374 If EndBit is less than StartBit, then ASSERT(). 1375 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1353 1376 1354 1377 @param Address The MMIO register to write. … … 1393 1416 If EndBit is greater than 7, then ASSERT(). 1394 1417 If EndBit is less than StartBit, then ASSERT(). 1418 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1419 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1395 1420 1396 1421 @param Address The MMIO register to write. … … 1551 1576 If EndBit is greater than 15, then ASSERT(). 1552 1577 If EndBit is less than StartBit, then ASSERT(). 1578 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1553 1579 1554 1580 @param Address The MMIO register to write. … … 1592 1618 If EndBit is greater than 15, then ASSERT(). 1593 1619 If EndBit is less than StartBit, then ASSERT(). 1620 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1594 1621 1595 1622 @param Address The MMIO register to write. … … 1633 1660 If EndBit is greater than 15, then ASSERT(). 1634 1661 If EndBit is less than StartBit, then ASSERT(). 1662 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1635 1663 1636 1664 @param Address The MMIO register to write. … … 1675 1703 If EndBit is greater than 15, then ASSERT(). 1676 1704 If EndBit is less than StartBit, then ASSERT(). 1705 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1706 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1677 1707 1678 1708 @param Address The MMIO register to write. … … 1833 1863 If EndBit is greater than 31, then ASSERT(). 1834 1864 If EndBit is less than StartBit, then ASSERT(). 1865 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1835 1866 1836 1867 @param Address The MMIO register to write. … … 1874 1905 If EndBit is greater than 31, then ASSERT(). 1875 1906 If EndBit is less than StartBit, then ASSERT(). 1907 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1876 1908 1877 1909 @param Address The MMIO register to write. … … 1915 1947 If EndBit is greater than 31, then ASSERT(). 1916 1948 If EndBit is less than StartBit, then ASSERT(). 1949 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1917 1950 1918 1951 @param Address The MMIO register to write. … … 1957 1990 If EndBit is greater than 31, then ASSERT(). 1958 1991 If EndBit is less than StartBit, then ASSERT(). 1992 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1993 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1959 1994 1960 1995 @param Address The MMIO register to write. … … 2115 2150 If EndBit is greater than 63, then ASSERT(). 2116 2151 If EndBit is less than StartBit, then ASSERT(). 2152 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 2117 2153 2118 2154 @param Address The MMIO register to write. … … 2156 2192 If EndBit is greater than 63, then ASSERT(). 2157 2193 If EndBit is less than StartBit, then ASSERT(). 2194 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 2158 2195 2159 2196 @param Address The MMIO register to write. … … 2197 2234 If EndBit is greater than 63, then ASSERT(). 2198 2235 If EndBit is less than StartBit, then ASSERT(). 2236 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 2199 2237 2200 2238 @param Address The MMIO register to write. … … 2239 2277 If EndBit is greater than 63, then ASSERT(). 2240 2278 If EndBit is less than StartBit, then ASSERT(). 2279 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 2280 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 2241 2281 2242 2282 @param Address The MMIO register to write.
Note:
See TracChangeset
for help on using the changeset viewer.