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
24
/** @file
  This file contains definitions of  PCIe Configuration
 
  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _CPU_PCIE_REGS_H_
#define _CPU_PCIE_REGS_H_
 
#define  R_PCIE_LCAP                              0x4C
#define  R_PCIE_LCTL                              0x50
#define  R_PCIE_LSTS                              0x52
#define  R_PCIE_SLCAP                             0x54
#define  R_PCIE_SLSTS                             0x5A
#define  R_PCIE_LCTL2                             0x70
#define  R_PCIE_MPC                               0xD8
#define  B_PCIE_MPC_HPME                          BIT1
#define  R_PCIE_PGTHRES                           0x5C0
#define  B_PCIE_PGTHRES_L1PGLTREN                 BIT0
#define  R_PCIE_LCTL3                             0xA34
#define  B_PCIE_LCTL3_PE                          BIT0
 
#endif