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;
473 SataPrivateData->IdentifyData = AllocateZeroPool ((sizeof (EFI_IDENTIFY_DATA)) * ChannelDeviceCount);
474 if (SataPrivateData->IdentifyData == NULL) {
508 if (SataPrivateData->IdentifyData != NULL) {
509 FreePool (SataPrivateData->IdentifyData);
583 if (SataPrivateData->IdentifyData != NULL) {
584 FreePool (SataPrivateData->IdentifyData);
617 IdentifyData, and IdentifyValid.
736 this information by issuing an ATA or ATAPI IDENTIFY_DEVICE command. IdentifyData
737 is the pointer to the response data buffer. The IdentifyData buffer is owned
739 of the entire buffer or parts of the buffer as needed. The original IdentifyData
754 should be called with IdentifyData set to NULL. The IDE controller driver may
756 setting IdentifyData to NULL does not constitute an error condition.
763 @param[in] IdentifyData The device's response to the ATA IDENTIFY_DEVICE command.
776 IN EFI_IDENTIFY_DATA *IdentifyData
792 // Make a local copy of device's IdentifyData and mark the valid flag
794 if (IdentifyData != NULL) {
796 &(SataPrivateData->IdentifyData[DeviceIndex]),
797 IdentifyData,
846 @retval EFI_INVALID_PARAMETER IdentifyData is NULL.
889 - The IdentifyData inputs to EFI_IDE_CONTROLLER_INIT_PROTOCOL.SubmitData()
947 EFI_IDENTIFY_DATA *IdentifyData;
969 IdentifyData = &(SataPrivateData->IdentifyData[DeviceIndex]);
982 IdentifyData,
996 IdentifyData,