Make comments match the Spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6876 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -24,10 +24,10 @@
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
/**
|
||||
Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the
|
||||
Reads an 8-bit I/O port, performs a bitwise OR, and writes the
|
||||
result back to the 8-bit I/O port.
|
||||
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 8-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -80,8 +80,8 @@ IoAnd8 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads an 8-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 8-bit I/O port.
|
||||
Reads an 8-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 8-bit I/O port.
|
||||
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise AND between
|
||||
the read result and the value specified by AndData, performs a bitwise OR
|
||||
@@ -147,8 +147,7 @@ IoBitFieldRead8 (
|
||||
|
||||
Writes Value to the bit field of the I/O register. The bit field is specified
|
||||
by the StartBit and the EndBit. All other bits in the destination I/O
|
||||
register are preserved. The value written to the I/O port is returned. Extra
|
||||
left bits in Value are stripped.
|
||||
register are preserved. The value written to the I/O port is returned.
|
||||
|
||||
If 8-bit I/O port operations are not supported, then ASSERT().
|
||||
If StartBit is greater than 7, then ASSERT().
|
||||
@@ -184,7 +183,7 @@ IoBitFieldWrite8 (
|
||||
Reads a bit field in an 8-bit port, performs a bitwise OR, and writes the
|
||||
result back to the bit field in the 8-bit port.
|
||||
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 8-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -262,11 +261,11 @@ IoBitFieldAnd8 (
|
||||
|
||||
/**
|
||||
Reads a bit field in an 8-bit port, performs a bitwise AND followed by a
|
||||
bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
bitwise OR, and writes the result back to the bit field in the
|
||||
8-bit port.
|
||||
|
||||
Reads the 8-bit I/O port specified by Port, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR between the read result and the value specified by
|
||||
by a bitwise OR between the read result and the value specified by
|
||||
AndData, and writes the result to the 8-bit I/O port specified by Port. The
|
||||
value written to the I/O port is returned. This function must guarantee that
|
||||
all I/O read and write operations are serialized. Extra left bits in both
|
||||
@@ -305,10 +304,10 @@ IoBitFieldAndThenOr8 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 16-bit I/O port, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 16-bit I/O port, performs a bitwise OR, and writes the
|
||||
result back to the 16-bit I/O port.
|
||||
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 16-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -361,8 +360,8 @@ IoAnd16 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 16-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 16-bit I/O port.
|
||||
Reads a 16-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 16-bit I/O port.
|
||||
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise AND between
|
||||
the read result and the value specified by AndData, performs a bitwise OR
|
||||
@@ -465,7 +464,7 @@ IoBitFieldWrite16 (
|
||||
Reads a bit field in a 16-bit port, performs a bitwise OR, and writes the
|
||||
result back to the bit field in the 16-bit port.
|
||||
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 16-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -543,11 +542,11 @@ IoBitFieldAnd16 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 16-bit port, performs a bitwise AND followed by a
|
||||
bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
bitwise OR, and writes the result back to the bit field in the
|
||||
16-bit port.
|
||||
|
||||
Reads the 16-bit I/O port specified by Port, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR between the read result and the value specified by
|
||||
by a bitwise OR between the read result and the value specified by
|
||||
AndData, and writes the result to the 16-bit I/O port specified by Port. The
|
||||
value written to the I/O port is returned. This function must guarantee that
|
||||
all I/O read and write operations are serialized. Extra left bits in both
|
||||
@@ -586,10 +585,10 @@ IoBitFieldAndThenOr16 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 32-bit I/O port, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 32-bit I/O port, performs a bitwise OR, and writes the
|
||||
result back to the 32-bit I/O port.
|
||||
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 32-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -642,8 +641,8 @@ IoAnd32 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 32-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 32-bit I/O port.
|
||||
Reads a 32-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 32-bit I/O port.
|
||||
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise AND between
|
||||
the read result and the value specified by AndData, performs a bitwise OR
|
||||
@@ -746,7 +745,7 @@ IoBitFieldWrite32 (
|
||||
Reads a bit field in a 32-bit port, performs a bitwise OR, and writes the
|
||||
result back to the bit field in the 32-bit port.
|
||||
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 32-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -824,11 +823,11 @@ IoBitFieldAnd32 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 32-bit port, performs a bitwise AND followed by a
|
||||
bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
bitwise OR, and writes the result back to the bit field in the
|
||||
32-bit port.
|
||||
|
||||
Reads the 32-bit I/O port specified by Port, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR between the read result and the value specified by
|
||||
by a bitwise OR between the read result and the value specified by
|
||||
AndData, and writes the result to the 32-bit I/O port specified by Port. The
|
||||
value written to the I/O port is returned. This function must guarantee that
|
||||
all I/O read and write operations are serialized. Extra left bits in both
|
||||
@@ -867,10 +866,10 @@ IoBitFieldAndThenOr32 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 64-bit I/O port, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 64-bit I/O port, performs a bitwise OR, and writes the
|
||||
result back to the 64-bit I/O port.
|
||||
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 64-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -923,8 +922,8 @@ IoAnd64 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 64-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 64-bit I/O port.
|
||||
Reads a 64-bit I/O port, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 64-bit I/O port.
|
||||
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise AND between
|
||||
the read result and the value specified by AndData, performs a bitwise OR
|
||||
@@ -1027,7 +1026,7 @@ IoBitFieldWrite64 (
|
||||
Reads a bit field in a 64-bit port, performs a bitwise OR, and writes the
|
||||
result back to the bit field in the 64-bit port.
|
||||
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise inclusive OR
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise OR
|
||||
between the read result and the value specified by OrData, and writes the
|
||||
result to the 64-bit I/O port specified by Port. The value written to the I/O
|
||||
port is returned. This function must guarantee that all I/O read and write
|
||||
@@ -1105,11 +1104,11 @@ IoBitFieldAnd64 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 64-bit port, performs a bitwise AND followed by a
|
||||
bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
bitwise OR, and writes the result back to the bit field in the
|
||||
64-bit port.
|
||||
|
||||
Reads the 64-bit I/O port specified by Port, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR between the read result and the value specified by
|
||||
by a bitwise OR between the read result and the value specified by
|
||||
AndData, and writes the result to the 64-bit I/O port specified by Port. The
|
||||
value written to the I/O port is returned. This function must guarantee that
|
||||
all I/O read and write operations are serialized. Extra left bits in both
|
||||
@@ -1148,11 +1147,11 @@ IoBitFieldAndThenOr64 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads an 8-bit MMIO register, performs a bitwise inclusive OR, and writes the
|
||||
Reads an 8-bit MMIO register, performs a bitwise OR, and writes the
|
||||
result back to the 8-bit MMIO register.
|
||||
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 8-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized.
|
||||
@@ -1204,8 +1203,8 @@ MmioAnd8 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads an 8-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 8-bit MMIO register.
|
||||
Reads an 8-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 8-bit MMIO register.
|
||||
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise AND
|
||||
between the read result and the value specified by AndData, performs a
|
||||
@@ -1308,8 +1307,8 @@ MmioBitFieldWrite8 (
|
||||
Reads a bit field in an 8-bit MMIO register, performs a bitwise OR, and
|
||||
writes the result back to the bit field in the 8-bit MMIO register.
|
||||
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 8-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized. Extra left bits in OrData
|
||||
@@ -1388,11 +1387,11 @@ MmioBitFieldAnd8 (
|
||||
|
||||
/**
|
||||
Reads a bit field in an 8-bit MMIO register, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
by a bitwise OR, and writes the result back to the bit field in the
|
||||
8-bit MMIO register.
|
||||
|
||||
Reads the 8-bit MMIO register specified by Address, performs a bitwise AND
|
||||
followed by a bitwise inclusive OR between the read result and the value
|
||||
followed by a bitwise OR between the read result and the value
|
||||
specified by AndData, and writes the result to the 8-bit MMIO register
|
||||
specified by Address. The value written to the MMIO register is returned.
|
||||
This function must guarantee that all MMIO read and write operations are
|
||||
@@ -1431,11 +1430,11 @@ MmioBitFieldAndThenOr8 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 16-bit MMIO register, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 16-bit MMIO register, performs a bitwise OR, and writes the
|
||||
result back to the 16-bit MMIO register.
|
||||
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 16-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized.
|
||||
@@ -1487,8 +1486,8 @@ MmioAnd16 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 16-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 16-bit MMIO register.
|
||||
Reads a 16-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 16-bit MMIO register.
|
||||
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise AND
|
||||
between the read result and the value specified by AndData, performs a
|
||||
@@ -1591,8 +1590,8 @@ MmioBitFieldWrite16 (
|
||||
Reads a bit field in a 16-bit MMIO register, performs a bitwise OR, and
|
||||
writes the result back to the bit field in the 16-bit MMIO register.
|
||||
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 16-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized. Extra left bits in OrData
|
||||
@@ -1671,11 +1670,11 @@ MmioBitFieldAnd16 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 16-bit MMIO register, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
by a bitwise OR, and writes the result back to the bit field in the
|
||||
16-bit MMIO register.
|
||||
|
||||
Reads the 16-bit MMIO register specified by Address, performs a bitwise AND
|
||||
followed by a bitwise inclusive OR between the read result and the value
|
||||
followed by a bitwise OR between the read result and the value
|
||||
specified by AndData, and writes the result to the 16-bit MMIO register
|
||||
specified by Address. The value written to the MMIO register is returned.
|
||||
This function must guarantee that all MMIO read and write operations are
|
||||
@@ -1714,11 +1713,11 @@ MmioBitFieldAndThenOr16 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 32-bit MMIO register, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 32-bit MMIO register, performs a bitwise OR, and writes the
|
||||
result back to the 32-bit MMIO register.
|
||||
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 32-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized.
|
||||
@@ -1770,8 +1769,8 @@ MmioAnd32 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 32-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 32-bit MMIO register.
|
||||
Reads a 32-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 32-bit MMIO register.
|
||||
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise AND
|
||||
between the read result and the value specified by AndData, performs a
|
||||
@@ -1874,8 +1873,8 @@ MmioBitFieldWrite32 (
|
||||
Reads a bit field in a 32-bit MMIO register, performs a bitwise OR, and
|
||||
writes the result back to the bit field in the 32-bit MMIO register.
|
||||
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 32-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized. Extra left bits in OrData
|
||||
@@ -1954,11 +1953,11 @@ MmioBitFieldAnd32 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 32-bit MMIO register, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
by a bitwise OR, and writes the result back to the bit field in the
|
||||
32-bit MMIO register.
|
||||
|
||||
Reads the 32-bit MMIO register specified by Address, performs a bitwise AND
|
||||
followed by a bitwise inclusive OR between the read result and the value
|
||||
followed by a bitwise OR between the read result and the value
|
||||
specified by AndData, and writes the result to the 32-bit MMIO register
|
||||
specified by Address. The value written to the MMIO register is returned.
|
||||
This function must guarantee that all MMIO read and write operations are
|
||||
@@ -1997,11 +1996,11 @@ MmioBitFieldAndThenOr32 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 64-bit MMIO register, performs a bitwise inclusive OR, and writes the
|
||||
Reads a 64-bit MMIO register, performs a bitwise OR, and writes the
|
||||
result back to the 64-bit MMIO register.
|
||||
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 64-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized.
|
||||
@@ -2053,8 +2052,8 @@ MmioAnd64 (
|
||||
}
|
||||
|
||||
/**
|
||||
Reads a 64-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
inclusive OR, and writes the result back to the 64-bit MMIO register.
|
||||
Reads a 64-bit MMIO register, performs a bitwise AND followed by a bitwise
|
||||
OR, and writes the result back to the 64-bit MMIO register.
|
||||
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise AND
|
||||
between the read result and the value specified by AndData, performs a
|
||||
@@ -2157,8 +2156,8 @@ MmioBitFieldWrite64 (
|
||||
Reads a bit field in a 64-bit MMIO register, performs a bitwise OR, and
|
||||
writes the result back to the bit field in the 64-bit MMIO register.
|
||||
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise
|
||||
inclusive OR between the read result and the value specified by OrData, and
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise
|
||||
OR between the read result and the value specified by OrData, and
|
||||
writes the result to the 64-bit MMIO register specified by Address. The value
|
||||
written to the MMIO register is returned. This function must guarantee that
|
||||
all MMIO read and write operations are serialized. Extra left bits in OrData
|
||||
@@ -2237,11 +2236,11 @@ MmioBitFieldAnd64 (
|
||||
|
||||
/**
|
||||
Reads a bit field in a 64-bit MMIO register, performs a bitwise AND followed
|
||||
by a bitwise inclusive OR, and writes the result back to the bit field in the
|
||||
by a bitwise OR, and writes the result back to the bit field in the
|
||||
64-bit MMIO register.
|
||||
|
||||
Reads the 64-bit MMIO register specified by Address, performs a bitwise AND
|
||||
followed by a bitwise inclusive OR between the read result and the value
|
||||
followed by a bitwise OR between the read result and the value
|
||||
specified by AndData, and writes the result to the 64-bit MMIO register
|
||||
specified by Address. The value written to the MMIO register is returned.
|
||||
This function must guarantee that all MMIO read and write operations are
|
||||
|
Reference in New Issue
Block a user