Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43420 )
Change subject: Documentation: Discuss how we use language
......................................................................
Patch Set 2:
This change is ready for review.
--
To view, visit https://review.coreboot.org/c/coreboot/+/43420
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I44fa30af538c78760821401c8d3c52029d95b72b
Gerrit-Change-Number: 43420
Gerrit-PatchSet: 2
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Comment-Date: Mon, 17 Aug 2020 16:27:59 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Sam Lewis has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44376 )
Change subject: arch/arm: Enable booting Linux payloads
......................................................................
arch/arm: Enable booting Linux payloads
Enables booting in a Linux kernel payload with the calling convention
the kernel requires. As there is no method in coreboot to check the type
of payload being booted (Linux or otherwise) this assumes any payload is
a Linux payload.
Change-Id: If50c834c8f434bc02dee8f84370d1dbf8f9b69e2
Signed-off-by: Sam Lewis <sam.vr.lewis(a)gmail.com>
---
M src/arch/arm/boot.c
1 file changed, 16 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/44376/1
diff --git a/src/arch/arm/boot.c b/src/arch/arm/boot.c
index 8c876de..fc87f2c 100644
--- a/src/arch/arm/boot.c
+++ b/src/arch/arm/boot.c
@@ -3,12 +3,28 @@
#include <arch/cache.h>
#include <program_loading.h>
+static void run_linux_payload(struct prog *prog)
+{
+ void (*kernel_entry)(void *sbz, void *sbo, void *dtb);
+ void *fdt;
+
+ kernel_entry = prog_entry(prog);
+ fdt = prog_entry_arg(prog);
+ kernel_entry(0, (void *)~0, fdt);
+}
+
void arch_prog_run(struct prog *prog)
{
void (*doit)(void *);
cache_sync_instructions();
+ if (ENV_RAMSTAGE && prog_type(prog) == PROG_PAYLOAD) {
+ dcache_mmu_disable();
+ run_linux_payload(prog);
+ return;
+ }
+
doit = prog_entry(prog);
doit(prog_entry_arg(prog));
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/44376
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: If50c834c8f434bc02dee8f84370d1dbf8f9b69e2
Gerrit-Change-Number: 44376
Gerrit-PatchSet: 1
Gerrit-Owner: Sam Lewis <sam.vr.lewis(a)gmail.com>
Gerrit-MessageType: newchange
Hello build bot (Jenkins), Furquan Shaikh, Patrick Georgi, Maulik V Vaghela, Subrata Banik, Krishna P Bhat D, Aamir Bohra, Patrick Rudolph, Karthik Ramasubramanian,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/43816
to look at the new patch set (#8).
Change subject: soc/intel/jasperlake: Disable multiphase SI init
......................................................................
soc/intel/jasperlake: Disable multiphase SI init
Jasper Lake does not have any use case for multiphase SI init so
Disable it.
BUG=b:162184827
BRANCH=None
TEST=Build and boot JSLRVP
Change-Id: I2d591b46c403e68ff0b41ac8f87c742ae774111e
Signed-off-by: Ronak Kanabar <ronak.kanabar(a)intel.com>
---
M src/soc/intel/jasperlake/fsp_params.c
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/16/43816/8
--
To view, visit https://review.coreboot.org/c/coreboot/+/43816
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I2d591b46c403e68ff0b41ac8f87c742ae774111e
Gerrit-Change-Number: 43816
Gerrit-PatchSet: 8
Gerrit-Owner: Ronak Kanabar <ronak.kanabar(a)intel.com>
Gerrit-Reviewer: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Karthik Ramasubramanian <kramasub(a)google.com>
Gerrit-Reviewer: Krishna P Bhat D <krishna.p.bhat.d(a)intel.com>
Gerrit-Reviewer: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: newpatchset
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43816 )
Change subject: soc/intel/jasperlake: Disable multiphase SI init
......................................................................
Patch Set 7:
(2 comments)
https://review.coreboot.org/c/coreboot/+/43816/7/src/soc/intel/jasperlake/f…
File src/soc/intel/jasperlake/fsp_params.c:
https://review.coreboot.org/c/coreboot/+/43816/7/src/soc/intel/jasperlake/f…
PS7, Line 355: return 0;
code indent should use tabs where possible
https://review.coreboot.org/c/coreboot/+/43816/7/src/soc/intel/jasperlake/f…
PS7, Line 355: return 0;
please, no spaces at the start of a line
--
To view, visit https://review.coreboot.org/c/coreboot/+/43816
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I2d591b46c403e68ff0b41ac8f87c742ae774111e
Gerrit-Change-Number: 43816
Gerrit-PatchSet: 7
Gerrit-Owner: Ronak Kanabar <ronak.kanabar(a)intel.com>
Gerrit-Reviewer: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Karthik Ramasubramanian <kramasub(a)google.com>
Gerrit-Reviewer: Krishna P Bhat D <krishna.p.bhat.d(a)intel.com>
Gerrit-Reviewer: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Mon, 17 Aug 2020 11:21:33 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44430 )
Change subject: cse_lite: Move global reset after MRC writeback.
......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/44430/3//COMMIT_MSG
Commit Message:
https://review.coreboot.org/c/coreboot/+/44430/3//COMMIT_MSG@7
PS3, Line 7: cse_lite: Move global reset after MRC writeback.
Please remove the dot/period at the end of the commit message summary.
--
To view, visit https://review.coreboot.org/c/coreboot/+/44430
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia42d72fdec41f9792ab8f04205b20a55758a4235
Gerrit-Change-Number: 44430
Gerrit-PatchSet: 3
Gerrit-Owner: Caveh Jalali <caveh(a)chromium.org>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Jamie Ryu <jamie.m.ryu(a)intel.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Gerrit-Reviewer: Shaunak Saha <shaunak.saha(a)intel.com>
Gerrit-Reviewer: Shelley Chen <shchen(a)google.com>
Gerrit-Reviewer: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: V Sowmya <v.sowmya(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Comment-Date: Mon, 17 Aug 2020 10:24:52 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment