build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/27103 )
Change subject: soc/cavium: Enable DRAM test
......................................................................
Patch Set 7:
(2 comments)
https://review.coreboot.org/#/c/27103/7/src/soc/cavium/cn81xx/sdram.c
File src/soc/cavium/cn81xx/sdram.c:
https://review.coreboot.org/#/c/27103/7/src/soc/cavium/cn81xx/sdram.c@93
PS7, Line 93: if (0 != bdk_numa_master())
Comparisons should place the constant on the right side of the test
https://review.coreboot.org/#/c/27103/7/src/soc/cavium/cn81xx/sdram.c@97
PS7, Line 97: if (0 == bdk_numa_master())
Comparisons should place the constant on the right side of the test
--
To view, visit https://review.coreboot.org/27103
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: I6a375f3d4c5cea7c3c0cd4592287f3f85dc7d3cf
Gerrit-Change-Number: 27103
Gerrit-PatchSet: 7
Gerrit-Owner: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Fri, 20 Jul 2018 09:06:44 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/27559
Change subject: arch/arm64: Add Kconfig to include BL31 as blob
......................................................................
arch/arm64: Add Kconfig to include BL31 as blob
Add Kconfig options to not build the ATF, but use a precompiled
binary instead. To be used on platforms that do not have upstream
ATF support.
Change-Id: I17954247029df627a3f4db8b73993bd549e55967
Signed-off-by: Patrick Rudolph <patrick.rudolph(a)9elements.com>
---
M src/arch/arm64/Kconfig
M src/arch/arm64/Makefile.inc
2 files changed, 23 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/27559/1
diff --git a/src/arch/arm64/Kconfig b/src/arch/arm64/Kconfig
index cae558b..2ce9f68 100644
--- a/src/arch/arm64/Kconfig
+++ b/src/arch/arm64/Kconfig
@@ -31,6 +31,20 @@
default n
depends on ARCH_RAMSTAGE_ARM64
+config ARM64_BUILD_ARM_TRUSTED_FIRMWARE
+ bool
+ default y
+ depends on ARM64_USE_ARM_TRUSTED_FIRMWARE
+ help
+ If false include bl31.elf from blobs repo.
+
+config ARM64_BL31_BLOB
+ string "Precompiled BL31.ELF to use as ATF"
+ depends on ARM64_USE_ARM_TRUSTED_FIRMWARE
+ depends on !ARM64_BUILD_ARM_TRUSTED_FIRMWARE
+ help
+ The blob to use if not building the ATF in tree.
+
config ARM64_USE_SECURE_OS
bool
default n
diff --git a/src/arch/arm64/Makefile.inc b/src/arch/arm64/Makefile.inc
index 3c3cd20..12c7392 100644
--- a/src/arch/arm64/Makefile.inc
+++ b/src/arch/arm64/Makefile.inc
@@ -156,6 +156,8 @@
ifeq ($(CONFIG_ARM64_USE_ARM_TRUSTED_FIRMWARE),y)
+ifeq ($(CONFIG_ARM64_BUILD_ARM_TRUSTED_FIRMWARE), y)
+
BL31_SOURCE := $(top)/3rdparty/arm-trusted-firmware
BL31_BUILD := $(abspath $(obj)/3rdparty/arm-trusted-firmware)
BL31_TARGET := $(BL31_BUILD)/bl31/bl31.elf
@@ -205,6 +207,13 @@
.PHONY: $(BL31)
+else
+
+BL31 := $(call strip_quotes,$(CONFIG_ARM64_BL31_BLOB))
+
+endif # CONFIG_ARM64_BUILD_ARM_TRUSTED_FIRMWARE
+
+
BL31_CBFS := $(CONFIG_CBFS_PREFIX)/bl31
$(BL31_CBFS)-file := $(BL31)
$(BL31_CBFS)-type := payload
--
To view, visit https://review.coreboot.org/27559
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: I17954247029df627a3f4db8b73993bd549e55967
Gerrit-Change-Number: 27559
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27557
to look at the new patch set (#3).
Change subject: riscv: clean up redundancy in Makefile
......................................................................
riscv: clean up redundancy in Makefile
src/arch/riscv/stages.c is a entry of romstage/ramstage, and does not
need in bootblock.
src/arch/riscv/id.S src/arch/riscv/id.ld is used to generate some
compile/board/time information, which is repeated with src/lib/version.c
Change-Id: Ic736b378e24df387584c5f86a2b04078fc55723d
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/Makefile.inc
D src/arch/riscv/id.S
D src/arch/riscv/id.ld
3 files changed, 1 insertion(+), 56 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/27557/3
--
To view, visit https://review.coreboot.org/27557
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: Ic736b378e24df387584c5f86a2b04078fc55723d
Gerrit-Change-Number: 27557
Gerrit-PatchSet: 3
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Xiang Wang has uploaded a new patch set (#2). ( https://review.coreboot.org/27557 )
Change subject: riscv: clean up redundancy in Makefile
......................................................................
riscv: clean up redundancy in Makefile
src/arch/riscv/stages.c is a entry of romstage/ramstage, and does not
need in bootblock.
Change-Id: Ic736b378e24df387584c5f86a2b04078fc55723d
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/Makefile.inc
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/27557/2
--
To view, visit https://review.coreboot.org/27557
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: Ic736b378e24df387584c5f86a2b04078fc55723d
Gerrit-Change-Number: 27557
Gerrit-PatchSet: 2
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Xiang Wang has uploaded this change for review. ( https://review.coreboot.org/27557
Change subject: riscv: clean up redundancy in Makefile
......................................................................
riscv: clean up redundancy in Makefile
src/arch/riscv/stages.c is a entry of romstage/ramstage, and does not need in bootblock.
Change-Id: Ic736b378e24df387584c5f86a2b04078fc55723d
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/Makefile.inc
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/27557/1
diff --git a/src/arch/riscv/Makefile.inc b/src/arch/riscv/Makefile.inc
index e00469b..44a5eae 100644
--- a/src/arch/riscv/Makefile.inc
+++ b/src/arch/riscv/Makefile.inc
@@ -42,7 +42,7 @@
bootblock-y += id.S
$(call src-to-obj,bootblock,$(dir)/id.S): $(obj)/build.h
-bootblock-y = bootblock.S stages.c
+bootblock-y = bootblock.S
bootblock-y += trap_util.S
bootblock-y += trap_handler.c
bootblock-y += mcall.c
--
To view, visit https://review.coreboot.org/27557
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: Ic736b378e24df387584c5f86a2b04078fc55723d
Gerrit-Change-Number: 27557
Gerrit-PatchSet: 1
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Furquan Shaikh has uploaded this change for review. ( https://review.coreboot.org/27555
Change subject: mb/google/octopus: Use unused space in RO_SECTION for COREBOOT region
......................................................................
mb/google/octopus: Use unused space in RO_SECTION for COREBOOT region
This change increases COREBOOT region size by the amount of unused space
left in RO_SECTION. This extra space is useful when building images with
debug enabled.
BUG=b:111661025
Change-Id: Icbd88c3350f96707f37b69fe01f8ae9c7838ab82
Signed-off-by: Furquan Shaikh <furquan(a)google.com>
---
M src/mainboard/google/octopus/chromeos.fmd
1 file changed, 2 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/27555/1
diff --git a/src/mainboard/google/octopus/chromeos.fmd b/src/mainboard/google/octopus/chromeos.fmd
index 3c4ed4a..5572930 100644
--- a/src/mainboard/google/octopus/chromeos.fmd
+++ b/src/mainboard/google/octopus/chromeos.fmd
@@ -7,9 +7,8 @@
FMAP@0x0 0x800
RO_FRID@0x800 0x40
RO_FRID_PAD@0x840 0x7c0
- COREBOOT(CBFS)@0x1000 0x1b3000
- GBB@0x1b4000 0x40000
- RO_UNUSED@0x1f4000 0x8000
+ COREBOOT(CBFS)@0x1000 0x1bb000
+ GBB@0x1bc000 0x40000
}
}
MISC_RW@0x400000 0x30000 {
--
To view, visit https://review.coreboot.org/27555
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: Icbd88c3350f96707f37b69fe01f8ae9c7838ab82
Gerrit-Change-Number: 27555
Gerrit-PatchSet: 1
Gerrit-Owner: Furquan Shaikh <furquan(a)google.com>