Marx Wang has uploaded this change for review. ( https://review.coreboot.org/28870
Change subject: mb/google/poppy/variants/rammus: oem_table_id is too long to be recognized
......................................................................
mb/google/poppy/variants/rammus: oem_table_id is too long to be recognized
This patch is to modify "the oem_table_id" from "RAMMUSMAX" to "RAMMUS"
so that the topology firmware can be loaded properly.
BUG=b:112945714
BRANCH=master
TEST=There is no error message like "failed to load topology firmware" in
kernel log.
Change-Id: I66a38ea38791dd3d9606a05b7b696236c350237f
Signed-off-by: Marx Wang <marx.wang(a)intel.com>
---
M src/mainboard/google/poppy/variants/rammus/nhlt.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/28870/1
diff --git a/src/mainboard/google/poppy/variants/rammus/nhlt.c b/src/mainboard/google/poppy/variants/rammus/nhlt.c
index 70c2524..efa08ee 100644
--- a/src/mainboard/google/poppy/variants/rammus/nhlt.c
+++ b/src/mainboard/google/poppy/variants/rammus/nhlt.c
@@ -38,6 +38,6 @@
uint32_t *oem_revision)
{
*oem_id = "GOOGLE";
- *oem_table_id = "RAMMUSMAX";
+ *oem_table_id = "RAMMUS";
*oem_revision = 0;
}
--
To view, visit https://review.coreboot.org/28870
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I66a38ea38791dd3d9606a05b7b696236c350237f
Gerrit-Change-Number: 28870
Gerrit-PatchSet: 1
Gerrit-Owner: Marx Wang <marx.wang(a)intel.com>
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/28867 )
Change subject: mb/google/poppy/variant/nocturne: set GPP_C19 to NF1
......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/#/c/28867/1//COMMIT_MSG
Commit Message:
https://review.coreboot.org/#/c/28867/1//COMMIT_MSG@7
PS1, Line 7: set GPP_C19 to NF1
It might be better to just say that this CL is updating GPIO configuration since it is affecting more than GPP_C19.
--
To view, visit https://review.coreboot.org/28867
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I9e972dbe4214cdd15d80d63dfa058e7755f7ecbb
Gerrit-Change-Number: 28867
Gerrit-PatchSet: 1
Gerrit-Owner: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 02 Oct 2018 00:25:47 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/28867 )
Change subject: mb/google/poppy/variant/nocturne: set GPP_C19 to NF1
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/28867
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I9e972dbe4214cdd15d80d63dfa058e7755f7ecbb
Gerrit-Change-Number: 28867
Gerrit-PatchSet: 1
Gerrit-Owner: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Comment-Date: Tue, 02 Oct 2018 00:22:43 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/28863
Change subject: amd/stoneyridge: Remove SATA D0 on suspend
......................................................................
amd/stoneyridge: Remove SATA D0 on suspend
Remove the step of setting the SATA controller to S0 as the system is
entering S3. This had been duplicated from AMD's FchCarrizo.asl file,
but upon closer inspection, the conditions for this step to run cannot
be met. This does not affect Grunt's behavior, as the SATA controller
is disabled.
TEST=Suspend and resume Grunt
BUG=b:77602074
Change-Id: Ib269a5363d03c7048abd0c8a9a28df92a773790c
Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
---
M src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl
1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/28863/1
diff --git a/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl b/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl
index 77c288b..7ac9139 100644
--- a/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl
+++ b/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl
@@ -592,10 +592,6 @@
if(LNotEqual(U2TD, 0x03)) {
FDDC(18, 3)
}
-
- if(LNotEqual(SATD, 0x00)) {
- FDDC(15, 0) /* wake SATA before sleep */
- }
}
Method(FWAK,0, Serialized) /* FCH _WAK */
--
To view, visit https://review.coreboot.org/28863
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib269a5363d03c7048abd0c8a9a28df92a773790c
Gerrit-Change-Number: 28863
Gerrit-PatchSet: 1
Gerrit-Owner: Marshall Dawson <marshalldawson3rd(a)gmail.com>