1 /** @file
2   Defines Whiskey Lake Platform Board IDs
3 
4 
5   Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.<BR>
6   SPDX-License-Identifier: BSD-2-Clause-Patent
7 **/
8 
9 #ifndef _PLATFORM_BOARD_ID_H_
10 #define _PLATFORM_BOARD_ID_H_
11 
12 #define FlavorUnknown                       0x0
13 #define FlavorMobile                        0x1
14 #define FlavorDesktop                       0x2
15 #define FlavorWorkstation                   0x3
16 #define FlavorUpServer                      0x4
17 #define FlavorEmbedded                      0x5
18 #define FlavorPlatformMax                   0x6
19 
20 #define TypeUnknown                         0x0
21 #define TypeTrad                            0x1
22 #define TypeUltUlx                          0x2
23 
24 #define BoardIdUpXtreme                     0x10
25 #define BoardIdWhiskeyLakeRvp               0x60
26 
27 #define BoardIdUnknown1                     0xffff
28 
29 #endif
30 
31 
32