Attention is currently required from: Andrey Petrov, Kapil Porwal, Nick Vaccaro, Subrata Banik.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/76921?usp=email )
Change subject: drivers/intel/fsp2_0: Add API to convert BMP images to GOP BLT buffer
......................................................................
Patch Set 4:
(2 comments)
Commit Message:
https://review.coreboot.org/c/coreboot/+/76921/comment/eedcdc72_583994db :
PS3, Line 18: It also adds a
: new config (BMP_LOGO_TO_GOP_BLT) to ensure backward compatibility with
: older generation FSP.
> UPDs are different between just passing BMP image to FSP vs GOP BLT to FSP.
Can this be better modeled?
> Are you saying pass the GOP BLT by default (if BMP_LOGO is enabled)?
Almost. I mean, always built in the driver, but still run-time detect if BMP or BLT should be passed.
File src/drivers/intel/fsp2_0/fsp_gop_blt.c:
PS3:
> > Maybe the same structs could be used for coreboot in general, and then only the structs are conver […]
I meant just a lot of the helper functions introduced here.
Also, will “AMD FSP” ever use this?
--
To view, visit https://review.coreboot.org/c/coreboot/+/76921?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I992b45d65374f09498ff0cab497f7091e1e7a350
Gerrit-Change-Number: 76921
Gerrit-PatchSet: 4
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Attention: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Comment-Date: Thu, 03 Aug 2023 21:05:42 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/76936?usp=email )
Change subject: util/abuild: Better identify config string in log
......................................................................
util/abuild: Better identify config string in log
When using the --skip_set and --skip_unset arguments, the config line
looked like a statement that the build was being skipped instead of
abuild just printing the configuration.
This updates those config statements to better show that it's the
config and not stating that this particular build is being skipped.
Signed-off-by: Martin Roth <gaumless(a)gmail.com>
Change-Id: I6cc59f9b33dcda51aeb3640d449037a0aa054e36
---
M util/abuild/abuild
1 file changed, 7 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/76936/1
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 233a661..1f64413 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -11,8 +11,8 @@
#set -x # Turn echo on....
-ABUILD_DATE="Feb 3, 2023"
-ABUILD_VERSION="0.11.01"
+ABUILD_DATE="Aug 3, 2023"
+ABUILD_VERSION="0.11.02"
TOP=$PWD
@@ -809,12 +809,12 @@
;;
--skip_set) shift
skipconfig_set="$1"
- customizing="${customizing}, Skipping CONFIG_${skipconfig_set}=Y"
+ customizing="${customizing}, Skipping builds with CONFIG_${skipconfig_set}=Y"
shift
;;
--skip_unset) shift
skipconfig_unset="$1"
- customizing="${customizing}, Skipping CONFIG_${skipconfig_unset} not set"
+ customizing="${customizing}, Skipping builds with CONFIG_${skipconfig_unset} not set"
shift
;;
--asserts) shift
@@ -920,10 +920,10 @@
fi
customizing=$(echo "$customizing" | cut -c3-)
-if [ "$customizing" = "" ]; then
- customizing="default configuration"
+if [ -z "$customizing" ]; then
+ customizing="Default configuration"
fi
-
+customizing="Config: ${customizing}"
FAILED_BOARDS="$(realpath ${TARGET}/failed_boards)"
PASSED_BOARDS="$(realpath ${TARGET}/passing_boards)"
--
To view, visit https://review.coreboot.org/c/coreboot/+/76936?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I6cc59f9b33dcda51aeb3640d449037a0aa054e36
Gerrit-Change-Number: 76936
Gerrit-PatchSet: 1
Gerrit-Owner: Martin L Roth <gaumless(a)gmail.com>
Gerrit-MessageType: newchange
Attention is currently required from: Eric Lai, Felix Held, Felix Singer, Fred Reitberger, Jason Glenesk, Martin L Roth, Paul Menzel, Raul Rangel, Yuchen He.
Matt DeVillier has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/76044?usp=email )
Change subject: src/*/post_code.h: Change post code prefix to POSTCODE
......................................................................
Patch Set 9: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/76044?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Id2ca654126fc5b96e6b40d222bb636bbf39ab7ad
Gerrit-Change-Number: 76044
Gerrit-PatchSet: 9
Gerrit-Owner: Yuchen He <yuchenhe126(a)gmail.com>
Gerrit-Reviewer: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Reviewer: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Reviewer: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Reviewer: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Reviewer: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Attention: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Attention: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-Attention: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Attention: Yuchen He <yuchenhe126(a)gmail.com>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Comment-Date: Thu, 03 Aug 2023 19:38:10 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment