Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36122 )
Change subject: ec/purism/librem: hide topstar ACPI device from Windows
......................................................................
ec/purism/librem: hide topstar ACPI device from Windows
Set status to 0xB so it doesn't show as unknown device in
Device Manager. Linux driver doesn't care.
Change-Id: Ie8203badf27eee570b5fba46b02ef11657f27522
Signed-off-by: Matt DeVillier <matt.devillier(a)gmail.com>
---
M src/ec/purism/librem/acpi/ec.asl
1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/36122/1
diff --git a/src/ec/purism/librem/acpi/ec.asl b/src/ec/purism/librem/acpi/ec.asl
index ff325aa..e70e990 100644
--- a/src/ec/purism/librem/acpi/ec.asl
+++ b/src/ec/purism/librem/acpi/ec.asl
@@ -26,6 +26,10 @@
}
Name (_UID, 0)
+ Method (_STA, 0, NotSerialized) {
+ Return (0x0B)
+ }
+
Method (FNCX, 1, NotSerialized)
{
If (LEqual (Arg0, 0x86)) {
--
To view, visit https://review.coreboot.org/c/coreboot/+/36122
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie8203badf27eee570b5fba46b02ef11657f27522
Gerrit-Change-Number: 36122
Gerrit-PatchSet: 1
Gerrit-Owner: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-MessageType: newchange
Peter Lemenkov has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36214 )
Change subject: mb/lenovo/t410/early_init: Remove unused include delay.h
......................................................................
mb/lenovo/t410/early_init: Remove unused include delay.h
Change-Id: I22b78a976c6ea43caa326e990a3c3333fef99d61
Signed-off-by: Peter Lemenkov <lemenkov(a)gmail.com>
---
M src/mainboard/lenovo/t410/early_init.c
1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/36214/1
diff --git a/src/mainboard/lenovo/t410/early_init.c b/src/mainboard/lenovo/t410/early_init.c
index 63bbe92..ba222f6 100644
--- a/src/mainboard/lenovo/t410/early_init.c
+++ b/src/mainboard/lenovo/t410/early_init.c
@@ -15,9 +15,8 @@
*/
#include <bootblock_common.h>
-#include <delay.h>
-
#include <ec/acpi/ec.h>
+
void bootblock_mainboard_early_init(void)
{
/* Enable USB Power. We need to do it early for usbdebug to work. */
--
To view, visit https://review.coreboot.org/c/coreboot/+/36214
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I22b78a976c6ea43caa326e990a3c3333fef99d61
Gerrit-Change-Number: 36214
Gerrit-PatchSet: 1
Gerrit-Owner: Peter Lemenkov <lemenkov(a)gmail.com>
Gerrit-MessageType: newchange
Kane Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35595 )
Change subject: soc/intel/cannonlake: FSP UPDs settings are wrong when GBE is disabled
......................................................................
soc/intel/cannonlake: FSP UPDs settings are wrong when GBE is disabled
The previous code actually set SlpS0WithGbeSupport even GBE is disabled in
device tree.
This change will config PchPmSlpS0VmRuntimeControl, PchPmSlpS0Vm070VSupport,
PchPmSlpS0Vm075VSupport by device tree.
SlpS0WithGbeSupport will be set only when s0ix and gbe are enabled.
BUG=b:134092071
TEST=Run suspend_stress_test on kohaku and pass 100 cycles
Change-Id: I154a4e6970f99360aeb880d576eb61528034f7b6
Signed-off-by: Kane Chen <kane.chen(a)intel.com>
---
M src/soc/intel/cannonlake/fsp_params.c
1 file changed, 7 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/95/35595/1
diff --git a/src/soc/intel/cannonlake/fsp_params.c b/src/soc/intel/cannonlake/fsp_params.c
index 76d40aa..e500a75 100644
--- a/src/soc/intel/cannonlake/fsp_params.c
+++ b/src/soc/intel/cannonlake/fsp_params.c
@@ -193,13 +193,19 @@
#endif
}
+ params->SlpS0WithGbeSupport = 0;
+ params->PchPmSlpS0VmRuntimeControl = config->PchPmSlpS0VmRuntimeControl;
+ params->PchPmSlpS0Vm070VSupport = config->PchPmSlpS0Vm070VSupport;
+ params->PchPmSlpS0Vm075VSupport = config->PchPmSlpS0Vm075VSupport;
+
/* Lan */
dev = pcidev_path_on_root(PCH_DEVFN_GBE);
if (!dev)
params->PchLanEnable = 0;
else {
params->PchLanEnable = dev->enabled;
- if (config->s0ix_enable) {
+ /* Override the settings when GBE and s0ix are enabled */
+ if (config->s0ix_enable && params->PchLanEnable) {
params->SlpS0WithGbeSupport = 1;
params->PchPmSlpS0VmRuntimeControl = 0;
params->PchPmSlpS0Vm070VSupport = 0;
--
To view, visit https://review.coreboot.org/c/coreboot/+/35595
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I154a4e6970f99360aeb880d576eb61528034f7b6
Gerrit-Change-Number: 35595
Gerrit-PatchSet: 1
Gerrit-Owner: Kane Chen <kane.chen(a)intel.com>
Gerrit-MessageType: newchange