mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
OvmfPkg/LsiScsiDxe: Create the empty driver
Create the driver with only a dummy LsiScsiEntryPoint() for the further implementation of the driver for LSI 53C895A SCSI controller. v2: Fix the mixed-case GUID string Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200717061130.8881-2-glin@suse.com>
This commit is contained in:
parent
6ff53d2a13
commit
e94d04a01b
25
OvmfPkg/LsiScsiDxe/LsiScsi.c
Normal file
25
OvmfPkg/LsiScsiDxe/LsiScsi.c
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/** @file
|
||||||
|
|
||||||
|
This driver produces Extended SCSI Pass Thru Protocol instances for
|
||||||
|
LSI 53C895A SCSI devices.
|
||||||
|
|
||||||
|
Copyright (C) 2020, SUSE LLC.
|
||||||
|
|
||||||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
#include <Uefi/UefiSpec.h>
|
||||||
|
|
||||||
|
//
|
||||||
|
// Entry point of this driver
|
||||||
|
//
|
||||||
|
EFI_STATUS
|
||||||
|
EFIAPI
|
||||||
|
LsiScsiEntryPoint (
|
||||||
|
IN EFI_HANDLE ImageHandle,
|
||||||
|
IN EFI_SYSTEM_TABLE *SystemTable
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return EFI_UNSUPPORTED;
|
||||||
|
}
|
26
OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
Normal file
26
OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
## @file
|
||||||
|
# This driver produces Extended SCSI Pass Thru Protocol instances for
|
||||||
|
# LSI 53C895A SCSI devices.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2020, SUSE LLC.
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
|
[Defines]
|
||||||
|
INF_VERSION = 1.29
|
||||||
|
BASE_NAME = LsiScsiDxe
|
||||||
|
FILE_GUID = EB4EB21F-5A3D-40BE-8BD2-F1B0E38E5744
|
||||||
|
MODULE_TYPE = UEFI_DRIVER
|
||||||
|
VERSION_STRING = 1.0
|
||||||
|
ENTRY_POINT = LsiScsiEntryPoint
|
||||||
|
|
||||||
|
[Sources]
|
||||||
|
LsiScsi.c
|
||||||
|
|
||||||
|
[Packages]
|
||||||
|
MdePkg/MdePkg.dec
|
||||||
|
|
||||||
|
[LibraryClasses]
|
||||||
|
UefiDriverEntryPoint
|
@ -50,6 +50,7 @@
|
|||||||
#
|
#
|
||||||
DEFINE PVSCSI_ENABLE = TRUE
|
DEFINE PVSCSI_ENABLE = TRUE
|
||||||
DEFINE MPT_SCSI_ENABLE = TRUE
|
DEFINE MPT_SCSI_ENABLE = TRUE
|
||||||
|
DEFINE LSI_SCSI_ENABLE = FALSE
|
||||||
|
|
||||||
#
|
#
|
||||||
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
||||||
@ -771,6 +772,9 @@
|
|||||||
!endif
|
!endif
|
||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
||||||
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
@ -236,6 +236,9 @@ INF OvmfPkg/PvScsiDxe/PvScsiDxe.inf
|
|||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
INF OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
!if $(SECURE_BOOT_ENABLE) == TRUE
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
||||||
|
@ -49,6 +49,7 @@
|
|||||||
#
|
#
|
||||||
DEFINE PVSCSI_ENABLE = TRUE
|
DEFINE PVSCSI_ENABLE = TRUE
|
||||||
DEFINE MPT_SCSI_ENABLE = TRUE
|
DEFINE MPT_SCSI_ENABLE = TRUE
|
||||||
|
DEFINE LSI_SCSI_ENABLE = FALSE
|
||||||
|
|
||||||
#
|
#
|
||||||
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
||||||
@ -785,6 +786,9 @@
|
|||||||
!endif
|
!endif
|
||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
||||||
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
@ -237,6 +237,9 @@ INF OvmfPkg/PvScsiDxe/PvScsiDxe.inf
|
|||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
INF OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
!if $(SECURE_BOOT_ENABLE) == TRUE
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
||||||
|
@ -49,6 +49,7 @@
|
|||||||
#
|
#
|
||||||
DEFINE PVSCSI_ENABLE = TRUE
|
DEFINE PVSCSI_ENABLE = TRUE
|
||||||
DEFINE MPT_SCSI_ENABLE = TRUE
|
DEFINE MPT_SCSI_ENABLE = TRUE
|
||||||
|
DEFINE LSI_SCSI_ENABLE = FALSE
|
||||||
|
|
||||||
#
|
#
|
||||||
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
# Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
||||||
@ -781,6 +782,9 @@
|
|||||||
!endif
|
!endif
|
||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
||||||
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
@ -237,6 +237,9 @@ INF OvmfPkg/PvScsiDxe/PvScsiDxe.inf
|
|||||||
!if $(MPT_SCSI_ENABLE) == TRUE
|
!if $(MPT_SCSI_ENABLE) == TRUE
|
||||||
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
INF OvmfPkg/MptScsiDxe/MptScsiDxe.inf
|
||||||
!endif
|
!endif
|
||||||
|
!if $(LSI_SCSI_ENABLE) == TRUE
|
||||||
|
INF OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
!if $(SECURE_BOOT_ENABLE) == TRUE
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user