PvScsiControllerSupported() is called on handles passed in by the ConnectController() boot service and if the handle is the PVSCSI controller, the function would return success. A success return value will attach our driver to the device. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2567 Reviewed-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Liran Alon <liran.alon@oracle.com> Message-Id: <20200328200100.60786-5-liran.alon@oracle.com> Reviewed-by: Nikita Leshenko <nikita.leshchenko@oracle.com>
22 lines
400 B
C
22 lines
400 B
C
/** @file
|
|
|
|
VMware PVSCSI Device specific type and macro definitions.
|
|
|
|
Copyright (C) 2020, Oracle and/or its affiliates.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __PVSCSI_H_
|
|
#define __PVSCSI_H_
|
|
|
|
//
|
|
// Device offsets and constants
|
|
//
|
|
|
|
#define PCI_VENDOR_ID_VMWARE (0x15ad)
|
|
#define PCI_DEVICE_ID_VMWARE_PVSCSI (0x07c0)
|
|
|
|
#endif // __PVSCSI_H_
|