MdeModulePkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
Private Include file for IdeBus PEIM.
|
||||
|
||||
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions
|
||||
@@ -140,16 +140,16 @@ typedef struct {
|
||||
/**
|
||||
Gets the count of block I/O devices that one specific block driver detects.
|
||||
|
||||
This function is used for getting the count of block I/O devices that one
|
||||
This function is used for getting the count of block I/O devices that one
|
||||
specific block driver detects. To the PEI ATAPI driver, it returns the number
|
||||
of all the detected ATAPI devices it detects during the enumeration process.
|
||||
To the PEI legacy floppy driver, it returns the number of all the legacy
|
||||
devices it finds during its enumeration process. If no device is detected,
|
||||
then the function will return zero.
|
||||
|
||||
@param[in] PeiServices General-purpose services that are available
|
||||
of all the detected ATAPI devices it detects during the enumeration process.
|
||||
To the PEI legacy floppy driver, it returns the number of all the legacy
|
||||
devices it finds during its enumeration process. If no device is detected,
|
||||
then the function will return zero.
|
||||
|
||||
@param[in] PeiServices General-purpose services that are available
|
||||
to every PEIM.
|
||||
@param[in] This Indicates the EFI_PEI_RECOVERY_BLOCK_IO_PPI
|
||||
@param[in] This Indicates the EFI_PEI_RECOVERY_BLOCK_IO_PPI
|
||||
instance.
|
||||
@param[out] NumberBlockDevices The number of block I/O devices discovered.
|
||||
|
||||
@@ -167,27 +167,27 @@ AtapiGetNumberOfBlockDevices (
|
||||
/**
|
||||
Gets a block device's media information.
|
||||
|
||||
This function will provide the caller with the specified block device's media
|
||||
information. If the media changes, calling this function will update the media
|
||||
This function will provide the caller with the specified block device's media
|
||||
information. If the media changes, calling this function will update the media
|
||||
information accordingly.
|
||||
|
||||
@param[in] PeiServices General-purpose services that are available to every
|
||||
PEIM
|
||||
@param[in] This Indicates the EFI_PEI_RECOVERY_BLOCK_IO_PPI instance.
|
||||
@param[in] DeviceIndex Specifies the block device to which the function wants
|
||||
to talk. Because the driver that implements Block I/O
|
||||
PPIs will manage multiple block devices, the PPIs that
|
||||
want to talk to a single device must specify the
|
||||
@param[in] DeviceIndex Specifies the block device to which the function wants
|
||||
to talk. Because the driver that implements Block I/O
|
||||
PPIs will manage multiple block devices, the PPIs that
|
||||
want to talk to a single device must specify the
|
||||
device index that was assigned during the enumeration
|
||||
process. This index is a number from one to
|
||||
process. This index is a number from one to
|
||||
NumberBlockDevices.
|
||||
@param[out] MediaInfo The media information of the specified block media.
|
||||
The caller is responsible for the ownership of this
|
||||
@param[out] MediaInfo The media information of the specified block media.
|
||||
The caller is responsible for the ownership of this
|
||||
data structure.
|
||||
|
||||
@retval EFI_SUCCESS Media information about the specified block device
|
||||
|
||||
@retval EFI_SUCCESS Media information about the specified block device
|
||||
was obtained successfully.
|
||||
@retval EFI_DEVICE_ERROR Cannot get the media information due to a hardware
|
||||
@retval EFI_DEVICE_ERROR Cannot get the media information due to a hardware
|
||||
error.
|
||||
@retval Others Other failure occurs.
|
||||
|
||||
@@ -204,31 +204,31 @@ AtapiGetBlockDeviceMediaInfo (
|
||||
/**
|
||||
Reads the requested number of blocks from the specified block device.
|
||||
|
||||
The function reads the requested number of blocks from the device. All the
|
||||
The function reads the requested number of blocks from the device. All the
|
||||
blocks are read, or an error is returned. If there is no media in the device,
|
||||
the function returns EFI_NO_MEDIA.
|
||||
|
||||
@param[in] PeiServices General-purpose services that are available to
|
||||
@param[in] PeiServices General-purpose services that are available to
|
||||
every PEIM.
|
||||
@param[in] This Indicates the EFI_PEI_RECOVERY_BLOCK_IO_PPI instance.
|
||||
@param[in] DeviceIndex Specifies the block device to which the function wants
|
||||
to talk. Because the driver that implements Block I/O
|
||||
PPIs will manage multiple block devices, the PPIs that
|
||||
want to talk to a single device must specify the device
|
||||
index that was assigned during the enumeration process.
|
||||
@param[in] DeviceIndex Specifies the block device to which the function wants
|
||||
to talk. Because the driver that implements Block I/O
|
||||
PPIs will manage multiple block devices, the PPIs that
|
||||
want to talk to a single device must specify the device
|
||||
index that was assigned during the enumeration process.
|
||||
This index is a number from one to NumberBlockDevices.
|
||||
@param[in] StartLBA The starting logical block address (LBA) to read from
|
||||
on the device
|
||||
@param[in] BufferSize The size of the Buffer in bytes. This number must be
|
||||
a multiple of the intrinsic block size of the device.
|
||||
@param[out] Buffer A pointer to the destination buffer for the data.
|
||||
The caller is responsible for the ownership of the
|
||||
The caller is responsible for the ownership of the
|
||||
buffer.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The data was read correctly from the device.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while attempting
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while attempting
|
||||
to perform the read operation.
|
||||
@retval EFI_INVALID_PARAMETER The read request contains LBAs that are not
|
||||
@retval EFI_INVALID_PARAMETER The read request contains LBAs that are not
|
||||
valid, or the buffer is not properly aligned.
|
||||
@retval EFI_NO_MEDIA There is no media in the device.
|
||||
@retval EFI_BAD_BUFFER_SIZE The BufferSize parameter is not a multiple of
|
||||
@@ -374,7 +374,7 @@ AtapiEnumerateDevices (
|
||||
|
||||
/**
|
||||
Detect Atapi devices.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] DevicePosition An integer to signify device position.
|
||||
@param[out] MediaInfo The media information of the specified block media.
|
||||
@@ -394,7 +394,7 @@ DiscoverAtapiDevice (
|
||||
|
||||
/**
|
||||
Detect if an IDE controller exists in specified position.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] DevicePosition An integer to signify device position.
|
||||
|
||||
@@ -410,7 +410,7 @@ DetectIDEController (
|
||||
|
||||
/**
|
||||
Wait specified time interval to poll for BSY bit clear in the Status Register.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] IdeIoRegisters A pointer to IDE IO registers.
|
||||
@param[in] TimeoutInMilliSeconds Time specified in milliseconds.
|
||||
@@ -428,7 +428,7 @@ WaitForBSYClear (
|
||||
|
||||
/**
|
||||
Wait specified time interval to poll for DRDY bit set in the Status register.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] IdeIoRegisters A pointer to IDE IO registers.
|
||||
@param[in] TimeoutInMilliSeconds Time specified in milliseconds.
|
||||
@@ -446,7 +446,7 @@ DRDYReady (
|
||||
|
||||
/**
|
||||
Wait specified time interval to poll for DRQ bit clear in the Status Register.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] IdeIoRegisters A pointer to IDE IO registers.
|
||||
@param[in] TimeoutInMilliSeconds Time specified in milliseconds.
|
||||
@@ -464,7 +464,7 @@ DRQClear (
|
||||
|
||||
/**
|
||||
Wait specified time interval to poll for DRQ bit clear in the Alternate Status Register.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] IdeIoRegisters A pointer to IDE IO registers.
|
||||
@param[in] TimeoutInMilliSeconds Time specified in milliseconds.
|
||||
@@ -569,7 +569,7 @@ TestUnitReady (
|
||||
|
||||
/**
|
||||
Send out ATAPI commands conforms to the Packet Command with PIO Data In Protocol.
|
||||
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] DevicePosition An integer to signify device position.
|
||||
@param[in] Packet A pointer to ATAPI command packet.
|
||||
@@ -613,10 +613,10 @@ Inquiry (
|
||||
OUT EFI_PEI_BLOCK_IO2_MEDIA *MediaInfo2
|
||||
);
|
||||
|
||||
/**
|
||||
Used before read/write blocks from/to ATAPI device media.
|
||||
/**
|
||||
Used before read/write blocks from/to ATAPI device media.
|
||||
Since ATAPI device media is removable, it is necessary to detect
|
||||
whether media is present and get current present media's information.
|
||||
whether media is present and get current present media's information.
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@param[in] DevicePosition An integer to signify device position.
|
||||
@@ -636,7 +636,7 @@ DetectMedia (
|
||||
IN OUT EFI_PEI_BLOCK_IO2_MEDIA *MediaInfo2
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Reset specified Atapi device.
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@@ -654,7 +654,7 @@ ResetDevice (
|
||||
IN BOOLEAN Extensive
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Sends out ATAPI Request Sense Packet Command to the specified device.
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@@ -674,7 +674,7 @@ RequestSense (
|
||||
IN OUT UINT8 *SenseCounts
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Sends out ATAPI Read Capacity Packet Command to the specified device.
|
||||
This command will return the information regarding the capacity of the
|
||||
media in the device.
|
||||
@@ -696,7 +696,7 @@ ReadCapacity (
|
||||
IN OUT EFI_PEI_BLOCK_IO2_MEDIA *MediaInfo2
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Perform read from disk in block unit.
|
||||
|
||||
@param[in] AtapiBlkIoDev A pointer to atapi block IO device.
|
||||
@@ -720,7 +720,7 @@ ReadSectors (
|
||||
IN UINTN BlockSize
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Check if there is media according to sense data.
|
||||
|
||||
@param[in] SenseData Pointer to sense data.
|
||||
@@ -736,14 +736,14 @@ IsNoMedia (
|
||||
IN UINTN SenseCounts
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Check if device state is unclear according to sense data.
|
||||
|
||||
@param[in] SenseData Pointer to sense data.
|
||||
@param[in] SenseCounts Count of sense data.
|
||||
|
||||
@retval TRUE Device state is unclear
|
||||
@retval FALSE Device state is clear
|
||||
@retval FALSE Device state is clear
|
||||
|
||||
**/
|
||||
BOOLEAN
|
||||
@@ -752,7 +752,7 @@ IsDeviceStateUnclear (
|
||||
IN UINTN SenseCounts
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Check if there is media error according to sense data.
|
||||
|
||||
@param[in] SenseData Pointer to sense data.
|
||||
@@ -768,7 +768,7 @@ IsMediaError (
|
||||
IN UINTN SenseCounts
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Check if drive is ready according to sense data.
|
||||
|
||||
@param[in] SenseData Pointer to sense data.
|
||||
|
Reference in New Issue
Block a user