Lines Matching refs:Value
26 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
34 @return The value read.
56 Writes the 8-bit I/O port specified by Port with the value specified by Value
57 and returns Value. This function must guarantee that all I/O read and write
63 @param Value The value to write to the I/O port.
65 @return The value written the I/O port.
72 IN UINT8 Value
82 CpuIo->IoWrite8 (PeiServices, CpuIo, (UINT64) Port, Value);
83 return Value;
89 Reads the 16-bit I/O port specified by Port. The 16-bit read value is returned.
98 @return The value read.
123 Writes the 16-bit I/O port specified by Port with the value specified by Value
124 and returns Value. This function must guarantee that all I/O read and write
131 @param Value The value to write to the I/O port.
133 @return The value written the I/O port.
140 IN UINT16 Value
153 CpuIo->IoWrite16 (PeiServices, CpuIo, (UINT64) Port, Value);
154 return Value;
160 Reads the 32-bit I/O port specified by Port. The 32-bit read value is returned.
169 @return The value read.
194 Writes the 32-bit I/O port specified by Port with the value specified by Value
195 and returns Value. This function must guarantee that all I/O read and write
202 @param Value The value to write to the I/O port.
204 @return The value written the I/O port.
211 IN UINT32 Value
224 CpuIo->IoWrite32 (PeiServices, CpuIo, (UINT64) Port, Value);
225 return Value;
231 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
240 @return The value read.
265 Writes the 64-bit I/O port specified by Port with the value specified by Value
266 and returns Value. This function must guarantee that all I/O read and write
273 @param Value The value to write to the I/O port.
275 @return The value written the I/O port.
282 IN UINT64 Value
295 CpuIo->IoWrite64 (PeiServices, CpuIo, (UINT64) Port, Value);
296 return Value;;
302 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
310 @return The value read.
332 Writes the 8-bit MMIO register specified by Address with the value specified
333 by Value and returns Value. This function must guarantee that all MMIO read
339 @param Value The value to write to the MMIO register.
341 @return Value.
348 IN UINT8 Value
358 CpuIo->MemWrite8 (PeiServices, CpuIo, (UINT64) Address, Value);
359 return Value;
365 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
374 @return The value read.
400 Writes the 16-bit MMIO register specified by Address with the value specified
401 by Value and returns Value. This function must guarantee that all MMIO read
408 @param Value The value to write to the MMIO register.
410 @return Value.
417 IN UINT16 Value
430 CpuIo->MemWrite16 (PeiServices, CpuIo, (UINT64) Address, Value);
431 return Value;
437 Reads the 32-bit MMIO register specified by Address. The 32-bit read value is
446 @return The value read.
472 Writes the 32-bit MMIO register specified by Address with the value specified
473 by Value and returns Value. This function must guarantee that all MMIO read
480 @param Value The value to write to the MMIO register.
482 @return Value.
489 IN UINT32 Value
502 CpuIo->MemWrite32 (PeiServices, CpuIo, (UINT64) Address, Value);
503 return Value;
509 Reads the 64-bit MMIO register specified by Address. The 64-bit read value is
518 @return The value read.
544 Writes the 64-bit MMIO register specified by Address with the value specified
545 by Value and returns Value. This function must guarantee that all MMIO read
552 @param Value The value to write to the MMIO register.
559 IN UINT64 Value
572 CpuIo->MemWrite64 (PeiServices, CpuIo, (UINT64) Address, Value);
573 return Value;