]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Framework/Protocol/IncompatiblePciDeviceSupport/IncompatiblePciDeviceSupport.h
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Protocol / IncompatiblePciDeviceSupport / IncompatiblePciDeviceSupport.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 IncompatiblePciDeviceSupport.h
15
16 Abstract:
17
18 EFI Incompatible PCI Device Support Protocol
19
20 Revision History
21
22 --*/
23
24 #ifndef _INCOMPATIBLE_PCI_DEVICE_SUPPORT_H_
25 #define _INCOMPATIBLE_PCI_DEVICE_SUPPORT_H_
26
27 #define EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_PROTOCOL_GUID \
28 {0xeb23f55a, 0x7863, 0x4ac2, 0x8d, 0x3d, 0x95, 0x65, 0x35, 0xde, 0x03, 0x75}
29
30 EFI_FORWARD_DECLARATION (EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT);
31
32
33 typedef
34 EFI_STATUS
35 (EFIAPI *EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_CHECK_DEVICE) (
36 IN EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT *This,
37 IN UINTN VendorId,
38 IN UINTN DeviceId,
39 IN UINTN Revision,
40 IN UINTN SubVendorId,OPTIONAL
41 IN UINTN SubDeviceId,OPTIONAL
42 OUT VOID *Configuration
43 );
44
45
46 //
47 // Interface structure for the Incompatible PCI Device Support Protocol
48 //
49 typedef struct _EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT {
50 EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_CHECK_DEVICE CheckDevice;
51 } EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_PROTOCOL;
52
53 extern EFI_GUID gEfiIncompatiblePciDeviceSupportProtocolGuid;
54
55 #endif