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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| /** @file*
|
| Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| **/
|
| #ifndef PCH_HSIO_PTSSTABLES_H_
| #define PCH_HSIO_PTSSTABLES_H_
|
| #include <PchAccess.h>
|
| ///
| /// SATA PTSS Topology Types
| ///
| typedef enum {
| PchSataTopoUnknown = 0x00,
| PchSataTopoIsata,
| PchSataTopoDirectConnect,
| PchSataTopoFlex,
| PchSataTopoM2
| } PCH_SATA_TOPOLOGY;
|
| ///
| /// PCIe PTSS Topology Types
| ///
| typedef enum {
| PchPcieTopoUnknown = 0x00,
| PchPcieTopox1,
| PchPcieTopox4,
| PchPcieTopoSataE,
| PchPcieTopoM2
| } PCH_PCIE_TOPOLOGY;
|
| ///
| /// The PCH_SBI_PTSS_HSIO_TABLE block describes HSIO PTSS settings for PCH.
| ///
| typedef struct {
| UINT8 LaneNum;
| UINT8 PhyMode;
| UINT16 Offset;
| UINT32 Value;
| UINT32 BitMask;
| } PCH_SBI_PTSS_HSIO_TABLE;
|
| typedef struct {
| PCH_SBI_PTSS_HSIO_TABLE PtssTable;
| UINT16 Topology;
| } HSIO_PTSS_TABLES;
|
| #endif // PCH_HSIO_PTSSTABLES_H_
|
|