Idwer Vollering (vidwer(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5442
-gerrit
commit 6d242f0c60f759793dc8f18d676a9ac65568e19e
Author: Idwer Vollering <vidwer(a)gmail.com>
Date: Tue Apr 1 15:46:24 2014 +0000
payloads/external: Update SeaBIOS stable to the release-1.7.4 commit
Drop CONFIG_SMBIOS, as it does not exist in the release's .config any more.
Set CONFIG_THREAD_OPTIONROMS.
Change-Id: I8f87ffa782758ec0a05f44a19b800e892cefb9f0
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
---
payloads/external/SeaBIOS/Makefile.inc | 6 +++++-
src/Kconfig | 13 ++++++++++++-
2 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 84f1515..e8bcaec 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -1,5 +1,5 @@
TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
-TAG-$(CONFIG_SEABIOS_STABLE)=88cb66ea542906ffff8a80ef397b9e3adbb33116
+TAG-$(CONFIG_SEABIOS_STABLE)=96917a8ed761f017fc8c72ba3b9181fbac03ac59
unexport KCONFIG_AUTOCONFIG
@@ -21,12 +21,16 @@ config: checkout
echo " CONFIG SeaBIOS $(TAG-y)"
$(MAKE) -C $(OUT)/seabios defconfig OUT=$(OUT)/seabios/out/
echo "CONFIG_COREBOOT=y" >> $(OUT)/seabios/.config
+ifeq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
+ echo "CONFIG_THREAD_OPTIONROMS=y" >> $(OUT)/seabios/.config
+endif
echo "CONFIG_DEBUG_SERIAL=y" >> $(OUT)/seabios/.config
echo "CONFIG_DEBUG_SERIAL_PORT=0x3f8" >> $(OUT)/seabios/.config
echo "CONFIG_COREBOOT_FLASH=y" >> $(OUT)/seabios/.config
echo "CONFIG_LZMA=y" >> $(OUT)/seabios/.config
echo "CONFIG_FLASH_FLOPPY=y" >> $(OUT)/seabios/.config
echo "CONFIG_VGAHOOKS=y" >> $(OUT)/seabios/.config
+ echo "CONFIG_DEBUG_COREBOOT=y" >> $(OUT)/seabios/.config
# This shows how to force a previously set .config option *off*
#echo "# CONFIG_SMBIOS is not set" >> $(OUT)/seabios/.config
diff --git a/src/Kconfig b/src/Kconfig
index fe7dc9b..1558811 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -605,7 +605,7 @@ choice
depends on PAYLOAD_SEABIOS
config SEABIOS_STABLE
- bool "1.7.2.1"
+ bool "1.7.4"
help
Stable SeaBIOS version
config SEABIOS_MASTER
@@ -624,6 +624,17 @@ config SEABIOS_PS2_TIMEOUT
after powering on. This specifies how long SeaBIOS will wait for the
keyboard controller to become ready before giving up.
+config SEABIOS_THREAD_OPTIONROMS
+ prompt "Hardware init during option ROM execution" if PAYLOAD_SEABIOS
+ default n
+ boolean
+ help
+ Allow hardware init to run in parallel with optionrom execution.
+
+ This can reduce boot time, but can cause some timing
+ variations during option ROM code execution. It is not
+ known if all option ROMs will behave properly with this option.
+
choice
prompt "GRUB2 version"
default GRUB2_MASTER
Idwer Vollering (vidwer(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5442
-gerrit
commit 2ff4f7d921c734e03d1fb2f7198f5936d1909066
Author: Idwer Vollering <vidwer(a)gmail.com>
Date: Tue Apr 1 15:46:24 2014 +0000
payloads/external: Update SeaBIOS stable to the release-1.7.4 commit
Drop CONFIG_SMBIOS, as it does not exist in the release's .config any more.
Set CONFIG_THREAD_OPTIONROMS.
Change-Id: I8f87ffa782758ec0a05f44a19b800e892cefb9f0
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
---
payloads/external/SeaBIOS/Makefile.inc | 12 +++++++-----
src/Kconfig | 13 ++++++++++++-
2 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 84f1515..d6af0d0 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -1,5 +1,5 @@
TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
-TAG-$(CONFIG_SEABIOS_STABLE)=88cb66ea542906ffff8a80ef397b9e3adbb33116
+TAG-$(CONFIG_SEABIOS_STABLE)=96917a8ed761f017fc8c72ba3b9181fbac03ac59
unexport KCONFIG_AUTOCONFIG
@@ -21,14 +21,16 @@ config: checkout
echo " CONFIG SeaBIOS $(TAG-y)"
$(MAKE) -C $(OUT)/seabios defconfig OUT=$(OUT)/seabios/out/
echo "CONFIG_COREBOOT=y" >> $(OUT)/seabios/.config
+ echo "CONFIG_COREBOOT_FLASH=y" >> $(OUT)/seabios/.config
+ echo "CONFIG_DEBUG_COREBOOT=y" >> $(OUT)/seabios/.config
echo "CONFIG_DEBUG_SERIAL=y" >> $(OUT)/seabios/.config
echo "CONFIG_DEBUG_SERIAL_PORT=0x3f8" >> $(OUT)/seabios/.config
- echo "CONFIG_COREBOOT_FLASH=y" >> $(OUT)/seabios/.config
- echo "CONFIG_LZMA=y" >> $(OUT)/seabios/.config
echo "CONFIG_FLASH_FLOPPY=y" >> $(OUT)/seabios/.config
+ echo "CONFIG_LZMA=y" >> $(OUT)/seabios/.config
+ ifeq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
+ echo "CONFIG_THREAD_OPTIONROMS=y" >> $(OUT)/seabios/.config
+ endif
echo "CONFIG_VGAHOOKS=y" >> $(OUT)/seabios/.config
- # This shows how to force a previously set .config option *off*
- #echo "# CONFIG_SMBIOS is not set" >> $(OUT)/seabios/.config
build: config
echo " MAKE SeaBIOS $(TAG-y)"
diff --git a/src/Kconfig b/src/Kconfig
index fe7dc9b..1558811 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -605,7 +605,7 @@ choice
depends on PAYLOAD_SEABIOS
config SEABIOS_STABLE
- bool "1.7.2.1"
+ bool "1.7.4"
help
Stable SeaBIOS version
config SEABIOS_MASTER
@@ -624,6 +624,17 @@ config SEABIOS_PS2_TIMEOUT
after powering on. This specifies how long SeaBIOS will wait for the
keyboard controller to become ready before giving up.
+config SEABIOS_THREAD_OPTIONROMS
+ prompt "Hardware init during option ROM execution" if PAYLOAD_SEABIOS
+ default n
+ boolean
+ help
+ Allow hardware init to run in parallel with optionrom execution.
+
+ This can reduce boot time, but can cause some timing
+ variations during option ROM code execution. It is not
+ known if all option ROMs will behave properly with this option.
+
choice
prompt "GRUB2 version"
default GRUB2_MASTER
the following patch was just integrated into master:
commit 777fbfa22342d76b0ca2eaed6f275fa8a6672151
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 28 08:40:59 2014 -0500
x86: use car_(get|set)_var accessors for apic timer
The timer_fsb variable was not correctly being accessed in the
presence of cache-as-ram. The cache-as-ram backing store could
be torn down but then udelay() could be called causing hangs from
accessing variables that have unknown values.
Instead change the timer_fsb variable to g_timer_fsb and obtain
the value through a local access method that does the correct things
to obtain the correct value.
Change-Id: Ia3e30808498cbe4a7f6f116c17a8cf1240a807a3
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/5411 for details.
-gerrit
the following patch was just integrated into master:
commit 1d6092e2a45791f6817219fc6629d17e755017a4
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Fri Mar 28 23:46:45 2014 +0200
Static CBMEM / CAR: Flag boards with BROKEN_CAR_MIGRATE
Use of CAR_GLOBAL is not safe after CAR is torn down, unless the
board properly implements EARLY_CBMEM_INIT.
Flag vulnerable boards that only do cbmem_recovery() in romstage on S3
resume and implementation with Intel FSP that invalidates cache before
we have a chance to copy the contents.
Change-Id: Iecd10dee9b73ab3f1f66826950fa0945675ff39f
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
See http://review.coreboot.org/5419 for details.
-gerrit
the following patch was just integrated into master:
commit c81dbd139b50f5ad9c446b630cc1a5501b05f982
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sun Mar 30 18:55:05 2014 +0200
git-ignore site-local
It's _local_
Change-Id: I5624e240ffe486763b25b14b218e69362c488f50
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/5432 for details.
-gerrit