1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| /** @file
|
| @copyright
| Copyright 2016 - 2021 Intel Corporation. <BR>
|
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #ifndef _SLOT_DATA_UPDATE_DXE_H_
| #define _SLOT_DATA_UPDATE_DXE_H_
|
|
| #include <Base.h>
| #include <Uefi.h>
|
| #include <Protocol/UbaCfgDb.h>
|
| #include <Library/UefiDriverEntryPoint.h>
| #include <Library/UefiBootServicesTableLib.h>
| #include <Library/DebugLib.h>
| #include <Library/BaseLib.h>
| #include <Library/BaseMemoryLib.h>
| #include <Library/MemoryAllocationLib.h>
| #include <Library/PciLib.h>
|
| #include <Library/UbaSlotUpdateLib.h>
| #include <IioPlatformData.h>
|
| typedef enum {
| Iio_Socket0 = 0,
| Iio_Socket1,
| Iio_Socket2,
| Iio_Socket3,
| Iio_Socket4,
| Iio_Socket5,
| Iio_Socket6,
| Iio_Socket7
| } IIO_SOCKETS;
|
| typedef enum {
| Iio_Iou0 =0,
| Iio_Iou1,
| Iio_Iou2,
| Iio_Mcp0,
| Iio_Mcp1,
| Iio_IouMax
| } IIO_IOUS;
|
| typedef enum {
| Bw5_Addr_0 = 0,
| Bw5_Addr_1,
| Bw5_Addr_2,
| Bw5_Addr_3,
| Bw5_Addr_Max
| } BW5_ADDRESS;
|
| #endif //_SLOT_DATA_UPDATE_DXE_H_
|
|