Lines Matching refs:HostPRB

71   ZeroMem (SataPort->HostPRB, sizeof (SATA_SI3132_PRB));  in SiI3132AtaPassThruCommand()
83 SataPort->HostPRB->Fis.Control = 0x0F; in SiI3132AtaPassThruCommand()
115 SataPort->HostPRB->Sge[0].DataAddressLow = (UINT32)PhysInDataBuffer; in SiI3132AtaPassThruCommand()
116 SataPort->HostPRB->Sge[0].DataAddressHigh = (UINT32)(PhysInDataBuffer >> 32); in SiI3132AtaPassThruCommand()
117 SataPort->HostPRB->Sge[0].Attributes = SGE_TRM; // Only one SGE in SiI3132AtaPassThruCommand()
118 SataPort->HostPRB->Sge[0].DataCount = InDataBufferLength; in SiI3132AtaPassThruCommand()
121 CopyMem (&SataPort->HostPRB->Fis, Packet->Acb, sizeof (EFI_ATA_COMMAND_BLOCK)); in SiI3132AtaPassThruCommand()
124 SataPort->HostPRB->Fis.FisType = 0x27; // Register - Host to Device FIS in SiI3132AtaPassThruCommand()
125 SataPort->HostPRB->Fis.Control = 1 << 7; // Is a command in SiI3132AtaPassThruCommand()
127 SataPort->HostPRB->Fis.Control |= PortMultiplierPort & 0xFF; in SiI3132AtaPassThruCommand()
150 SataPort->HostPRB->Sge[0].DataAddressLow = (UINT32)PhysOutDataBuffer; in SiI3132AtaPassThruCommand()
151 SataPort->HostPRB->Sge[0].DataAddressHigh = (UINT32)(PhysOutDataBuffer >> 32); in SiI3132AtaPassThruCommand()
152 SataPort->HostPRB->Sge[0].Attributes = SGE_TRM; // Only one SGE in SiI3132AtaPassThruCommand()
153 SataPort->HostPRB->Sge[0].DataCount = OutDataBufferLength; in SiI3132AtaPassThruCommand()
156 CopyMem (&SataPort->HostPRB->Fis, Packet->Acb, sizeof (EFI_ATA_COMMAND_BLOCK)); in SiI3132AtaPassThruCommand()
159 SataPort->HostPRB->Fis.FisType = 0x27; // Register - Host to Device FIS in SiI3132AtaPassThruCommand()
160 SataPort->HostPRB->Fis.Control = 1 << 7; // Is a command in SiI3132AtaPassThruCommand()
162 SataPort->HostPRB->Fis.Control |= PortMultiplierPort & 0xFF; in SiI3132AtaPassThruCommand()
188 SataPort->HostPRB->Control = Control; in SiI3132AtaPassThruCommand()
189 SataPort->HostPRB->ProtocolOverride = Protocol; in SiI3132AtaPassThruCommand()
209 SataPort->HostPRB); in SiI3132AtaPassThruCommand()