SlotDataUpdateDxe.h 1.1 KB

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