Fix CRLF format

Signed-off-by: Tian, Hot <hot.tian@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15159 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Tian, Hot 2014-01-22 08:40:06 +00:00 committed by hhtian
parent 1cc799c5b3
commit 1f345b7d29
1 changed files with 175 additions and 175 deletions

View File

@ -1,175 +1,175 @@
/** @file /** @file
I/O FIFO routines I/O FIFO routines
Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR> Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are This program and the accompanying materials are
licensed and made available under the terms and conditions of the BSD License licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/ **/
#ifndef _IO_FIFO_H_INCLUDED_ #ifndef _IO_FIFO_H_INCLUDED_
#define _IO_FIFO_H_INCLUDED_ #define _IO_FIFO_H_INCLUDED_
/** /**
Reads an 8-bit I/O port fifo into a block of memory. Reads an 8-bit I/O port fifo into a block of memory.
Reads the 8-bit I/O fifo port specified by Port. Reads the 8-bit I/O fifo port specified by Port.
The port is read Count times, and the read data is The port is read Count times, and the read data is
stored in the provided Buffer. stored in the provided Buffer.
This function must guarantee that all I/O read and write operations are This function must guarantee that all I/O read and write operations are
serialized. serialized.
If 8-bit I/O port operations are not supported, then ASSERT(). If 8-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to read. @param Port The I/O port to read.
@param Count The number of times to read I/O port. @param Count The number of times to read I/O port.
@param Buffer The buffer to store the read data into. @param Buffer The buffer to store the read data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoReadFifo8 ( IoReadFifo8 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
/** /**
Reads a 16-bit I/O port fifo into a block of memory. Reads a 16-bit I/O port fifo into a block of memory.
Reads the 16-bit I/O fifo port specified by Port. Reads the 16-bit I/O fifo port specified by Port.
The port is read Count times, and the read data is The port is read Count times, and the read data is
stored in the provided Buffer. stored in the provided Buffer.
This function must guarantee that all I/O read and write operations are This function must guarantee that all I/O read and write operations are
serialized. serialized.
If 16-bit I/O port operations are not supported, then ASSERT(). If 16-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to read. @param Port The I/O port to read.
@param Count The number of times to read I/O port. @param Count The number of times to read I/O port.
@param Buffer The buffer to store the read data into. @param Buffer The buffer to store the read data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoReadFifo16 ( IoReadFifo16 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
/** /**
Reads a 32-bit I/O port fifo into a block of memory. Reads a 32-bit I/O port fifo into a block of memory.
Reads the 32-bit I/O fifo port specified by Port. Reads the 32-bit I/O fifo port specified by Port.
The port is read Count times, and the read data is The port is read Count times, and the read data is
stored in the provided Buffer. stored in the provided Buffer.
This function must guarantee that all I/O read and write operations are This function must guarantee that all I/O read and write operations are
serialized. serialized.
If 32-bit I/O port operations are not supported, then ASSERT(). If 32-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to read. @param Port The I/O port to read.
@param Count The number of times to read I/O port. @param Count The number of times to read I/O port.
@param Buffer The buffer to store the read data into. @param Buffer The buffer to store the read data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoReadFifo32 ( IoReadFifo32 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
/** /**
Writes a block of memory into an 8-bit I/O port fifo. Writes a block of memory into an 8-bit I/O port fifo.
Writes the 8-bit I/O fifo port specified by Port. Writes the 8-bit I/O fifo port specified by Port.
The port is written Count times, and the write data is The port is written Count times, and the write data is
retrieved from the provided Buffer. retrieved from the provided Buffer.
This function must guarantee that all I/O write and write operations are This function must guarantee that all I/O write and write operations are
serialized. serialized.
If 8-bit I/O port operations are not supported, then ASSERT(). If 8-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to write. @param Port The I/O port to write.
@param Count The number of times to write I/O port. @param Count The number of times to write I/O port.
@param Buffer The buffer to store the write data into. @param Buffer The buffer to store the write data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoWriteFifo8 ( IoWriteFifo8 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
/** /**
Writes a block of memory into a 16-bit I/O port fifo. Writes a block of memory into a 16-bit I/O port fifo.
Writes the 16-bit I/O fifo port specified by Port. Writes the 16-bit I/O fifo port specified by Port.
The port is written Count times, and the write data is The port is written Count times, and the write data is
retrieved from the provided Buffer. retrieved from the provided Buffer.
This function must guarantee that all I/O write and write operations are This function must guarantee that all I/O write and write operations are
serialized. serialized.
If 16-bit I/O port operations are not supported, then ASSERT(). If 16-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to write. @param Port The I/O port to write.
@param Count The number of times to write I/O port. @param Count The number of times to write I/O port.
@param Buffer The buffer to store the write data into. @param Buffer The buffer to store the write data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoWriteFifo16 ( IoWriteFifo16 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
/** /**
Writes a block of memory into a 32-bit I/O port fifo. Writes a block of memory into a 32-bit I/O port fifo.
Writes the 32-bit I/O fifo port specified by Port. Writes the 32-bit I/O fifo port specified by Port.
The port is written Count times, and the write data is The port is written Count times, and the write data is
retrieved from the provided Buffer. retrieved from the provided Buffer.
This function must guarantee that all I/O write and write operations are This function must guarantee that all I/O write and write operations are
serialized. serialized.
If 32-bit I/O port operations are not supported, then ASSERT(). If 32-bit I/O port operations are not supported, then ASSERT().
@param Port The I/O port to write. @param Port The I/O port to write.
@param Count The number of times to write I/O port. @param Count The number of times to write I/O port.
@param Buffer The buffer to store the write data into. @param Buffer The buffer to store the write data into.
**/ **/
VOID VOID
EFIAPI EFIAPI
IoWriteFifo32 ( IoWriteFifo32 (
IN UINTN Port, IN UINTN Port,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
); );
#endif #endif