Philipp Hug has posted comments on this change. ( https://review.coreboot.org/28774 )
Change subject: payloads: Only show supported payloads in menuconfig
......................................................................
Patch Set 1:
Please cross-check for riscv.
This will only leave ELF and FIT payload.
--
To view, visit https://review.coreboot.org/28774
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: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Gerrit-Change-Number: 28774
Gerrit-PatchSet: 1
Gerrit-Owner: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Comment-Date: Thu, 27 Sep 2018 15:29:39 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Philipp Hug has uploaded this change for review. ( https://review.coreboot.org/28774
Change subject: payloads: Only show supported payloads in menuconfig
......................................................................
payloads: Only show supported payloads in menuconfig
Some payloads don't depend on their supported platforms, which makes
them visible in menuconfig even if they are not supported (yet).
Change-Id: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Signed-off-by: Philipp Hug <philipp(a)hug.cx>
---
M payloads/Kconfig
M payloads/external/FILO/Kconfig.name
M payloads/external/linux/Kconfig.name
M payloads/external/tianocore/Kconfig.name
4 files changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/28774/1
diff --git a/payloads/Kconfig b/payloads/Kconfig
index 8e05df3..e66a6e4 100644
--- a/payloads/Kconfig
+++ b/payloads/Kconfig
@@ -41,6 +41,7 @@
config PAYLOAD_BAYOU
bool "Bayou"
+ depends on ARCH_X86 || ARCH_ARM
help
Select this option if you want to set bayou as your primary
payload.
diff --git a/payloads/external/FILO/Kconfig.name b/payloads/external/FILO/Kconfig.name
index ca94343..28a41dc 100644
--- a/payloads/external/FILO/Kconfig.name
+++ b/payloads/external/FILO/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_FILO
bool "FILO"
+ depends on ARCH_X86
help
Select this option if you want to build a coreboot image
with a FILO payload. If you don't know what this is
diff --git a/payloads/external/linux/Kconfig.name b/payloads/external/linux/Kconfig.name
index ae1d906..63621d8 100644
--- a/payloads/external/linux/Kconfig.name
+++ b/payloads/external/linux/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_LINUX
bool "A Linux payload"
+ depends on ARCH_X86 || ARCH_ARM
help
Select this option if you have a Linux bzImage which coreboot
should run as soon as the basic hardware initialization
diff --git a/payloads/external/tianocore/Kconfig.name b/payloads/external/tianocore/Kconfig.name
index e57925f..12c62bf 100644
--- a/payloads/external/tianocore/Kconfig.name
+++ b/payloads/external/tianocore/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_TIANOCORE
bool "Tianocore coreboot payload package"
+ depends on ARCH_X86 || ARCH_ARM
help
Select this option if you want to build a coreboot image
with a Tianocore payload. If you don't know what this is
--
To view, visit https://review.coreboot.org/28774
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: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Gerrit-Change-Number: 28774
Gerrit-PatchSet: 1
Gerrit-Owner: Philipp Hug <philipp(a)hug.cx>
Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/28773
Change subject: google/kahlee: Run FCH PTS and WAK methods
......................................................................
google/kahlee: Run FCH PTS and WAK methods
The FCH ASL is now capable of controlling the D-states of most AOAC
devices, as well as properly reinitializing the xHCI firmware on a
resume. Call the FPTS and FWAK methods.
BUG=b:77602074
TEST=On Grunt, go to S3 and wake with a USB keyboard
Change-Id: I4df8523569dc3dfbd87f79e780c18d39f0d9a37f
Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
---
M src/mainboard/google/kahlee/variants/baseboard/include/baseboard/acpi/sleep.asl
1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/73/28773/1
diff --git a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/acpi/sleep.asl b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/acpi/sleep.asl
index 1e3a617..13c111e 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/acpi/sleep.asl
+++ b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/acpi/sleep.asl
@@ -39,6 +39,8 @@
/* DBGO (Arg0) */
/* DBGO ("\n") */
+ \_SB.PCI0.FPTS ()
+
/* Clear wake status structure. */
Store (0, PEWD)
Store (0, Index(WKST,0))
@@ -85,5 +87,7 @@
/* DBGO (Arg0) */
/* DBGO (" to S0\n") */
+ \_SB.PCI0.FWAK ()
+
Return (WKST)
}
--
To view, visit https://review.coreboot.org/28773
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: I4df8523569dc3dfbd87f79e780c18d39f0d9a37f
Gerrit-Change-Number: 28773
Gerrit-PatchSet: 1
Gerrit-Owner: Marshall Dawson <marshalldawson3rd(a)gmail.com>