Home | History | Annotate | Download | only in AtaAtapiPassThru

Lines Matching refs:DriveParameters

2219   @param DriveParameters  A pointer to EFI_ATA_DRIVE_PARMS data structure.

2233 IN EFI_ATA_DRIVE_PARMS *DriveParameters,
2243 AtaCommandBlock.AtaSectorCount = DriveParameters->Sector;
2244 AtaCommandBlock.AtaDeviceHead = (UINT8) ((Device << 0x4) + DriveParameters->Heads);
2262 AtaCommandBlock.AtaSectorCount = DriveParameters->MultipleSector;
2638 EFI_ATA_DRIVE_PARMS DriveParameters;
2809 DriveParameters.Sector = (UINT8) ((ATA5_IDENTIFY_DATA *)(&Buffer.AtaData))->sectors_per_track;
2810 DriveParameters.Heads = (UINT8) (((ATA5_IDENTIFY_DATA *)(&Buffer.AtaData))->heads - 1);
2811 DriveParameters.MultipleSector = (UINT8) ((ATA5_IDENTIFY_DATA *)(&Buffer.AtaData))->multi_sector_cmd_max_sct_cnt;
2813 Status = SetDriveParameters (Instance, IdeChannel, IdeDevice, &DriveParameters, NULL);