mirror of https://github.com/acidanthera/audk.git
24 lines
500 B
C
24 lines
500 B
C
|
/** @file
|
||
|
|
||
|
Macros and type definitions for LSI Fusion MPT SCSI devices.
|
||
|
|
||
|
Copyright (C) 2020, Oracle and/or its affiliates.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef __FUSION_MPT_SCSI_H__
|
||
|
#define __FUSION_MPT_SCSI_H__
|
||
|
|
||
|
//
|
||
|
// Device offsets and constants
|
||
|
//
|
||
|
|
||
|
#define LSI_LOGIC_PCI_VENDOR_ID 0x1000
|
||
|
#define LSI_53C1030_PCI_DEVICE_ID 0x0030
|
||
|
#define LSI_SAS1068_PCI_DEVICE_ID 0x0054
|
||
|
#define LSI_SAS1068E_PCI_DEVICE_ID 0x0058
|
||
|
|
||
|
#endif // __FUSION_MPT_SCSI_H__
|