Lines Matching defs:Port

26   aligned I/O Port space to the I/O address.
27 If I/O Port space base is not 64MB aligned, then ASSERT ().
29 @param Port The I/O port to read.
36 IN UINTN Port
42 Address = MAP_PORT_BASE_TO_MEM (Port);
46 // Make sure that the I/O Port space base is 64MB aligned.
57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
63 @param Port The I/O port to read.
71 IN UINTN Port
74 return MmioRead8 (InternalGetMemoryMapAddress (Port));
80 Reads the 16-bit I/O port specified by Port. The 16-bit read value is returned.
85 If Port is not aligned on a 16-bit boundary, then ASSERT().
87 @param Port The I/O port to read.
95 IN UINTN Port
98 return MmioRead16 (InternalGetMemoryMapAddress (Port));
104 Reads the 32-bit I/O port specified by Port. The 32-bit read value is returned.
109 If Port is not aligned on a 32-bit boundary, then ASSERT().
111 @param Port The I/O port to read.
119 IN UINTN Port
122 return MmioRead32 (InternalGetMemoryMapAddress (Port));
128 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
133 If Port is not aligned on a 64-bit boundary, then ASSERT().
135 @param Port The I/O port to read.
143 IN UINTN Port
153 Writes the 8-bit I/O port specified by Port with the value specified by Value
159 @param Port The I/O port to write.
168 IN UINTN Port,
172 return MmioWrite8 (InternalGetMemoryMapAddress (Port), Value);
178 Writes the 16-bit I/O port specified by Port with the value specified by Value
183 If Port is not aligned on a 16-bit boundary, then ASSERT().
185 @param Port The I/O port to write.
194 IN UINTN Port,
198 return MmioWrite16 (InternalGetMemoryMapAddress (Port), Value);
204 Writes the 32-bit I/O port specified by Port with the value specified by Value
209 If Port is not aligned on a 32-bit boundary, then ASSERT().
211 @param Port The I/O port to write.
220 IN UINTN Port,
224 return MmioWrite32 (InternalGetMemoryMapAddress (Port), Value);
230 Writes the 64-bit I/O port specified by Port with the value specified by Value
235 If Port is not aligned on a 64-bit boundary, then ASSERT().
237 @param Port The I/O port to write.
246 IN UINTN Port,