hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @file
  This header file provides common definitions just for System Agent using to avoid including extra module's file.
 
  Copyright (c) 2019 Intel Corporation. All rights reserved. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _SA_COMMON_DEFINITIONS_H_
#define _SA_COMMON_DEFINITIONS_H_
 
#define ERROR_BY_16     (0xEE15)
#define ERROR_NOT_BY_16 (0xED15)
 
#define MAX_PCIE_ASPM_OVERRIDE       500
#define MAX_PCIE_LTR_OVERRIDE        500
 
#define DISABLED  0
#define ENABLED   1
 
#define SA_VTD_ENGINE_NUMBER        3
 
#endif