1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| /** @file
| Generic register definitions for PCH.
|
| Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
| #ifndef _PCH_REGS_H_
| #define _PCH_REGS_H_
|
| ///
| /// The default PCH PCI segment and bus number
| ///
| #define DEFAULT_PCI_SEGMENT_NUMBER_PCH 0
| #define DEFAULT_PCI_BUS_NUMBER_PCH 0
|
| #endif //_PCH_REGS_H_
|
|