hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/** @file
  UBA KTI header file
 
  @copyright
  Copyright 2019 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#include <Base.h>
#include <Uefi.h>
#include <Library/BaseLib.h>
#include <Upi/KtiHost.h>
 
#ifndef _UBA_KTI_H_
#define _UBA_KTI_H_
 
#define PLATFORM_KTIEP_UPDATE_SIGNATURE  SIGNATURE_32 ('P', 'K', 'T', 'I')
#define PLATFORM_KTIEP_UPDATE_VERSION    01
 
typedef struct _PLATFORM_KTI_EPARAM_UPDATE_TABLE {
  UINT32                            Signature;
  UINT32                            Version;
  ALL_LANES_EPARAM_LINK_INFO        *AllLanesEparamTablePtr;
  UINT32                            SizeOfAllLanesEparamTable;
  PER_LANE_EPARAM_LINK_INFO         *PerLaneEparamTablePtr;
  UINT32                             SizeOfPerLaneEparamTable;
} PLATFORM_KTI_EPARAM_UPDATE_TABLE;
#endif //_UBA_KTI_H_