1 /** @file
2     UpXtreme HSIO PTSS H File
3 
4 
5   Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
6   SPDX-License-Identifier: BSD-2-Clause-Patent
7 **/
8 
9 #ifndef _UPEXTREME_HSIO_PTSS_H_
10 #define _UPEXTREME_HSIO_PTSS_H_
11 
12 #include <PchHsioPtssTables.h>
13 
14 #ifndef HSIO_PTSS_TABLE_SIZE
15 #define HSIO_PTSS_TABLE_SIZE(A) A##_Size = sizeof (A) / sizeof (HSIO_PTSS_TABLES)
16 #endif
17 
18 //BoardId UpXtreme
19 HSIO_PTSS_TABLES PchLpHsioPtss_Cx_UpXtreme[] = {
20   {{14, 0, 0xa0, 0x00000000, (UINT32) ~0x3F3F00}, 0}
21 };
22 
23 UINT16 PchLpHsioPtss_Cx_UpXtreme_Size = sizeof(PchLpHsioPtss_Cx_UpXtreme) / sizeof(HSIO_PTSS_TABLES);
24 
25 HSIO_PTSS_TABLES PchLpHsioPtss_Bx_UpXtreme[] = {
26   {{14, 0, 0xa0, 0x00000000, (UINT32) ~0x3F3F00}, 0},
27 };
28 
29 UINT16 PchLpHsioPtss_Bx_UpXtreme_Size = sizeof(PchLpHsioPtss_Bx_UpXtreme) / sizeof(HSIO_PTSS_TABLES);
30 
31 #endif // _UPEXTREME_HSIO_PTSS_H_
32 
33