Nico Huber has uploaded this change for review. ( https://review.coreboot.org/29571
Change subject: drivers/uart/Kconfig: Be smarter about DRIVERS_UART_8250IO
......................................................................
drivers/uart/Kconfig: Be smarter about DRIVERS_UART_8250IO
It defaults to y to avoid having to select it per mainboard. But that
makes a mess because it results in linker conflicts unless other UART
drivers disable it explicitly.
We try to be smarter about the default value for now. The real solu-
tion would be to hardcode it per mainboard. But who knows which boards
actually have it?
Change-Id: I7e755fe0e4f6d1c31ef2854603a5510c3cdc4967
Signed-off-by: Nico Huber <nico.h(a)gmx.de>
---
M src/drivers/uart/Kconfig
M src/soc/intel/denverton_ns/Kconfig
2 files changed, 4 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/29571/1
diff --git a/src/drivers/uart/Kconfig b/src/drivers/uart/Kconfig
index 39d20a3..1130aeb 100644
--- a/src/drivers/uart/Kconfig
+++ b/src/drivers/uart/Kconfig
@@ -4,8 +4,11 @@
default n
config DRIVERS_UART_8250IO
+ # FIXME: Shouldn't have a prompt, should default to n, and
+ # should be selected by boards that have it instead.
bool "Serial port on SuperIO"
depends on ARCH_X86
+ default n if DRIVERS_UART_8250MEM || HAVE_UART_SPECIAL
default n if NO_UART_ON_SUPERIO
default y
diff --git a/src/soc/intel/denverton_ns/Kconfig b/src/soc/intel/denverton_ns/Kconfig
index 736d567..59655ce 100644
--- a/src/soc/intel/denverton_ns/Kconfig
+++ b/src/soc/intel/denverton_ns/Kconfig
@@ -166,7 +166,7 @@
endchoice
config ENABLE_HSUART
- depends on (!DRIVERS_UART_8250IO && NON_LEGACY_UART_MODE)
+ depends on NON_LEGACY_UART_MODE
bool "Enable High-speed UART debug port selected by UART_FOR_CONSOLE."
default n
select CONSOLE_SERIAL
--
To view, visit https://review.coreboot.org/29571
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: I7e755fe0e4f6d1c31ef2854603a5510c3cdc4967
Gerrit-Change-Number: 29571
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h(a)gmx.de>
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/29569 )
Change subject: arch/acpi.h: Add FACS – ospm_flags
......................................................................
Patch Set 2:
Commit message doesn't explain why the change is done. I find sentences starting with 'regarding' hard to understand.
--
To view, visit https://review.coreboot.org/29569
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: I91291c8202d1562b720b9922791c6282e572601f
Gerrit-Change-Number: 29569
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Comment-Date: Sat, 10 Nov 2018 22:21:57 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/29569
to look at the new patch set (#2).
Change subject: arch/acpi.h: Add FACS – ospm_flags
......................................................................
arch/acpi.h: Add FACS – ospm_flags
regarding ACPI Version 6.2 Errata A, 64BIT_WAKE_F
flag can only be set if platform firmware sets
64BIT_WAKE_SUPPORTED_F in the FACS flags field.
Change-Id: I91291c8202d1562b720b9922791c6282e572601f
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/arch/x86/include/arch/acpi.h
1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/29569/2
--
To view, visit https://review.coreboot.org/29569
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I91291c8202d1562b720b9922791c6282e572601f
Gerrit-Change-Number: 29569
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>