PlatformBoardId.h 837 B

1234567891011121314151617181920212223242526272829
  1. /** @file
  2. Defines Platform BoardIds
  3. Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _PLATFORM_BOARD_ID_H_
  7. #define _PLATFORM_BOARD_ID_H_
  8. #define FlavorUnknown 0x0
  9. #define FlavorMobile 0x1
  10. #define FlavorDesktop 0x2
  11. #define FlavorWorkstation 0x3
  12. #define FlavorUpServer 0x4
  13. #define FlavorEmbedded 0x5
  14. #define FlavorPlatformMax 0x6
  15. #define TypeUnknown 0x0
  16. #define TypeTrad 0x1
  17. #define TypeUltUlx 0x2
  18. #define BoardIdCometLakeULpddr3Rvp 0x1
  19. #define BoardIdUnknown1 0xffff
  20. #endif