mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
OvmfPkg/MptScsiDxe: Build and decode DevicePath
Used to identify the individual disks in the hardware tree. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2390 Signed-off-by: Nikita Leshenko <nikita.leshchenko@oracle.com> Reviewed-by: Liran Alon <liran.alon@oracle.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200504210607.144434-8-nikita.leshchenko@oracle.com>
This commit is contained in:
parent
093cceaf79
commit
f9941d31dd
@ -147,7 +147,36 @@ MptScsiBuildDevicePath (
|
|||||||
IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
|
IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return EFI_UNSUPPORTED;
|
MPT_SCSI_DEV *Dev;
|
||||||
|
SCSI_DEVICE_PATH *ScsiDevicePath;
|
||||||
|
|
||||||
|
if (DevicePath == NULL) {
|
||||||
|
return EFI_INVALID_PARAMETER;
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// This device support 256 targets only, so it's enough to dereference
|
||||||
|
// the LSB of Target.
|
||||||
|
//
|
||||||
|
Dev = MPT_SCSI_FROM_PASS_THRU (This);
|
||||||
|
if (*Target > Dev->MaxTarget || Lun > 0) {
|
||||||
|
return EFI_NOT_FOUND;
|
||||||
|
}
|
||||||
|
|
||||||
|
ScsiDevicePath = AllocateZeroPool (sizeof (*ScsiDevicePath));
|
||||||
|
if (ScsiDevicePath == NULL) {
|
||||||
|
return EFI_OUT_OF_RESOURCES;
|
||||||
|
}
|
||||||
|
|
||||||
|
ScsiDevicePath->Header.Type = MESSAGING_DEVICE_PATH;
|
||||||
|
ScsiDevicePath->Header.SubType = MSG_SCSI_DP;
|
||||||
|
ScsiDevicePath->Header.Length[0] = (UINT8)sizeof (*ScsiDevicePath);
|
||||||
|
ScsiDevicePath->Header.Length[1] = (UINT8)(sizeof (*ScsiDevicePath) >> 8);
|
||||||
|
ScsiDevicePath->Pun = *Target;
|
||||||
|
ScsiDevicePath->Lun = (UINT16)Lun;
|
||||||
|
|
||||||
|
*DevicePath = &ScsiDevicePath->Header;
|
||||||
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
@ -160,9 +189,37 @@ MptScsiGetTargetLun (
|
|||||||
OUT UINT64 *Lun
|
OUT UINT64 *Lun
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
MPT_SCSI_DEV *Dev;
|
||||||
|
SCSI_DEVICE_PATH *ScsiDevicePath;
|
||||||
|
|
||||||
|
if (DevicePath == NULL ||
|
||||||
|
Target == NULL || *Target == NULL || Lun == NULL) {
|
||||||
|
return EFI_INVALID_PARAMETER;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DevicePath->Type != MESSAGING_DEVICE_PATH ||
|
||||||
|
DevicePath->SubType != MSG_SCSI_DP) {
|
||||||
return EFI_UNSUPPORTED;
|
return EFI_UNSUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Dev = MPT_SCSI_FROM_PASS_THRU (This);
|
||||||
|
ScsiDevicePath = (SCSI_DEVICE_PATH *)DevicePath;
|
||||||
|
if (ScsiDevicePath->Pun > Dev->MaxTarget ||
|
||||||
|
ScsiDevicePath->Lun > 0) {
|
||||||
|
return EFI_NOT_FOUND;
|
||||||
|
}
|
||||||
|
|
||||||
|
ZeroMem (*Target, TARGET_MAX_BYTES);
|
||||||
|
//
|
||||||
|
// This device support 256 targets only, so it's enough to set the LSB
|
||||||
|
// of Target.
|
||||||
|
//
|
||||||
|
**Target = (UINT8)ScsiDevicePath->Pun;
|
||||||
|
*Lun = ScsiDevicePath->Lun;
|
||||||
|
|
||||||
|
return EFI_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user