Home | History | Annotate | Download | only in SataControllerDxe

Lines Matching defs:IdentifyData

96   @param IdentifyData   The identify data of specific IDE device.

106 IN EFI_IDENTIFY_DATA *IdentifyData,
119 PioMode = (UINT8) (((ATA5_IDENTIFY_DATA *) (&(IdentifyData->AtaData)))->pio_cycle_timing >> 8);
124 if ((IdentifyData->AtaData.field_validity & 0x02) == 0x02) {
126 AdvancedPioMode = IdentifyData->AtaData.advanced_pio_modes;
153 MinimumPioCycleTime = IdentifyData->AtaData.min_pio_cycle_time_with_flow_control;
213 @param IdentifyData The identify data of specific IDE device.
223 IN EFI_IDENTIFY_DATA *IdentifyData,
236 if ((IdentifyData->AtaData.field_validity & 0x04) == 0x00) {
240 DeviceUDmaMode = IdentifyData->AtaData.ultra_dma_mode;
491 SataPrivateData->IdentifyData = AllocateZeroPool ((sizeof (EFI_IDENTIFY_DATA)) * ChannelDeviceCount);
492 if (SataPrivateData->IdentifyData == NULL) {
524 FreePool (SataPrivateData->IdentifyData);
609 if (SataPrivateData->IdentifyData != NULL) {
610 FreePool (SataPrivateData->IdentifyData);
653 IdentifyData, and IdentifyValid.
772 this information by issuing an ATA or ATAPI IDENTIFY_DEVICE command. IdentifyData
773 is the pointer to the response data buffer. The IdentifyData buffer is owned
775 of the entire buffer or parts of the buffer as needed. The original IdentifyData
790 should be called with IdentifyData set to NULL. The IDE controller driver may
792 setting IdentifyData to NULL does not constitute an error condition.
799 @param[in] IdentifyData The device's response to the ATA IDENTIFY_DEVICE command.
812 IN EFI_IDENTIFY_DATA *IdentifyData
828 // Make a local copy of device's IdentifyData and mark the valid flag
830 if (IdentifyData != NULL) {
832 &(SataPrivateData->IdentifyData[DeviceIndex]),
833 IdentifyData,
882 @retval EFI_INVALID_PARAMETER IdentifyData is NULL.
925 - The IdentifyData inputs to EFI_IDE_CONTROLLER_INIT_PROTOCOL.SubmitData()
983 EFI_IDENTIFY_DATA *IdentifyData;
1005 IdentifyData = &(SataPrivateData->IdentifyData[DeviceIndex]);
1018 IdentifyData,
1032 IdentifyData,