soc/mediatek/mt8196: Initialize SSPM
[coreboot2.git] / src / soc / intel / meteorlake / acpi / tcss_dma.asl
blob90824698bb519ae3c448d84c4d53b338168fc3fa
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 OperationRegion (DPME, SystemMemory, BASE(_ADR), 0x100)
4 Field (DPME, AnyAcc, NoLock, Preserve)
6         VDID, 32,
7         Offset(0x84),   /* 0x84, DMA CFG PM CAP */
8         PMST, 2,        /* 1:0, PM_STATE */
9         , 6,
10         PMEE, 1,        /* 8, PME_EN */
11         , 6,
12         PMES, 1,        /* 15, PME_STATUS */
13         Offset(0xC8),   /* 0xC8, TBT NVM FW Revision */
14         ,     31,
15         INFR,  1,       /* TBT NVM FW Ready */
16         Offset(0xEC),   /* 0xEC, TBT TO PCIE Register */
17         TB2P, 32,       /* TBT to PCIe */
18         P2TB, 32,       /* PCIe to TBT */
19         Offset(0xFC),   /* 0xFC, DMA RTD3 Force Power */
20         DD3E, 1,        /* 0:0 DMA RTD3 Enable */
21         DFPE, 1,        /* 1:1 DMA Force Power */
22         , 22,
23         DMAD, 8         /* 31:24 DMA Active Delay */
26 Name (STAT, 0x1)  /* Variable to save power state 1 - D0, 0 - D3C */
28 Method (_S0W, 0x0)
30 #if CONFIG(D3COLD_SUPPORT)
31         Return (0x04)
32 #else
33         Return (0x03)
34 #endif  // D3COLD_SUPPORT
38  * Get power resources that are dependent on this device for Operating System Power Management
39  * to put the device in the D0 device state
40  */
41 Method (_PR0)
43 #if CONFIG(D3COLD_SUPPORT)
44         If (DUID == 0) {
45                 Return (Package() { \_SB.PCI0.D3C, \_SB.PCI0.TBT0 })
46         } Else {
47                 Return (Package() { \_SB.PCI0.D3C, \_SB.PCI0.TBT1 })
48         }
49 #else
50         If (DUID == 0) {
51                 Return (Package() { \_SB.PCI0.TBT0 })
52         } Else {
53                 Return (Package() { \_SB.PCI0.TBT1 })
54         }
55 #endif  // D3COLD_SUPPORT
58 Method (_PR3)
60 #if CONFIG(D3COLD_SUPPORT)
61         If (DUID == 0) {
62                 Return (Package() { \_SB.PCI0.D3C, \_SB.PCI0.TBT0 })
63         } Else {
64                 Return (Package() { \_SB.PCI0.D3C, \_SB.PCI0.TBT1 })
65         }
66 #else
67         If (DUID == 0) {
68                 Return (Package() { \_SB.PCI0.TBT0 })
69         } Else {
70                 Return (Package() { \_SB.PCI0.TBT1 })
71         }
72 #endif  // D3COLD_SUPPORT
76  * RTD3 Exit Method to bring TBT controller out of RTD3 mode.
77  */
78 Method (D3CX, 0, Serialized)
80         DD3E = 0x00     /* Disable DMA RTD3 */
81         STAT = 0x01
85  * RTD3 Entry method to enable TBT controller RTD3 mode.
86  */
87 Method (D3CE, 0, Serialized)
89         DD3E = 0x01     /* Enable DMA RTD3 */
90         STAT = 0x00
94  * Variable to skip TCSS/TBT D3 cold; 1+: Skip D3CE, 0 - Enable D3CE
95  * TCSS D3 Cold and TBT RTD3 is only available when system power state is in S0.
96  */
97 Name (SD3C, 0)
99 Method (_DSW, 3)
101         /* If entering Sx (Arg1 > 1), need to skip TCSS D3Cold & TBT RTD3/D3Cold. */
102         SD3C = Arg1
105 Method (_PRW, 0)
107         Return (Package() { 0x6D, 4 })