SlotDataUpdateDxe.h 1.0 KB

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