mb/google/sarien: Fix SSD power leakage in S5
Turn off SSD power in S5. BUG=b:133389422 TEST=measure H13 is low in S5 Signed-off-by: Eric Lai <ericr_lai@compal.corp-partner.google.com> Change-Id: I40b5381cac33b0eac962a7730ee5c57e60e6d375 Reviewed-on: https://review.coreboot.org/c/coreboot/+/32952 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
This commit is contained in:
parent
9e5b06297d
commit
63cba976b1
|
@ -15,6 +15,8 @@
|
|||
|
||||
#define CAM_EN GPP_B11 /* Active low */
|
||||
#define TS_PD GPP_E7
|
||||
#define SSD_EN GPP_H13
|
||||
#define SSD_RST GPP_H12
|
||||
|
||||
/* Method called from LPIT prior to enter s0ix state */
|
||||
Method (MS0X, 1)
|
||||
|
@ -35,6 +37,12 @@ Method (MPTS, 1)
|
|||
|
||||
/* Clear touch screen pd pin to avoid leakage */
|
||||
\_SB.PCI0.CTXS (TS_PD)
|
||||
|
||||
/* Clear SSD EN adn RST pin to avoid leakage */
|
||||
If (Arg0 == 5) {
|
||||
\_SB.PCI0.CTXS (SSD_EN)
|
||||
\_SB.PCI0.CTXS (SSD_RST)
|
||||
}
|
||||
}
|
||||
|
||||
/* Method called from _WAK prior to wakeup */
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
#define CAM_EN GPP_B11 /* Active low */
|
||||
#define TS_PD GPP_E7
|
||||
#define SSD_EN GPP_H13
|
||||
#define SSD_RST GPP_H12
|
||||
|
||||
/* Method called from LPIT prior to enter s0ix state */
|
||||
Method (MS0X, 1)
|
||||
|
@ -35,6 +37,12 @@ Method (MPTS, 1)
|
|||
|
||||
/* Clear touch screen pd pin to avoid leakage */
|
||||
\_SB.PCI0.CTXS (TS_PD)
|
||||
|
||||
/* Clear SSD EN adn RST pin to avoid leakage */
|
||||
If (Arg0 == 5) {
|
||||
\_SB.PCI0.CTXS (SSD_EN)
|
||||
\_SB.PCI0.CTXS (SSD_RST)
|
||||
}
|
||||
}
|
||||
|
||||
/* Method called from _WAK prior to wakeup */
|
||||
|
|
Loading…
Reference in New Issue