Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48436 )
Change subject: soc/amd/common/block/acpimmio: use all-y for mmio_util target
......................................................................
soc/amd/common/block/acpimmio: use all-y for mmio_util target
since mmio_util gets also liked int verstage on PSP, all-y can be used
here.
Change-Id: I03572d760b485938f0d00b6cead00746eda6ca09
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/common/block/acpimmio/Makefile.inc
1 file changed, 1 insertion(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/48436/1
diff --git a/src/soc/amd/common/block/acpimmio/Makefile.inc b/src/soc/amd/common/block/acpimmio/Makefile.inc
index 6b3e423..c93e67d 100644
--- a/src/soc/amd/common/block/acpimmio/Makefile.inc
+++ b/src/soc/amd/common/block/acpimmio/Makefile.inc
@@ -1,10 +1,6 @@
ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_ACPIMMIO),y)
-bootblock-y += mmio_util.c
-verstage-y += mmio_util.c
-romstage-y += mmio_util.c
-postcar-y += mmio_util.c
-ramstage-y += mmio_util.c
+all-y += mmio_util.c
smm-y += mmio_util.c
bootblock-y += biosram.c
--
To view, visit https://review.coreboot.org/c/coreboot/+/48436
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I03572d760b485938f0d00b6cead00746eda6ca09
Gerrit-Change-Number: 48436
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Reviewer: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-MessageType: newchange
Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48431 )
Change subject: soc/amd/stoneyridge/southbridge: make sb_disable_4dw_burst static
......................................................................
soc/amd/stoneyridge/southbridge: make sb_disable_4dw_burst static
sb_disable_4dw_burst is only used in the same compilation unit, so no
need to make it externally visible.
Change-Id: I6c7c96f67b98fb8ed808f45a7685c4d72a10d32c
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/stoneyridge/include/soc/southbridge.h
M src/soc/amd/stoneyridge/southbridge.c
2 files changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/48431/1
diff --git a/src/soc/amd/stoneyridge/include/soc/southbridge.h b/src/soc/amd/stoneyridge/include/soc/southbridge.h
index d346197..e0ffd61 100644
--- a/src/soc/amd/stoneyridge/include/soc/southbridge.h
+++ b/src/soc/amd/stoneyridge/include/soc/southbridge.h
@@ -248,7 +248,6 @@
void enable_aoac_devices(void);
void sb_clk_output_48Mhz(u32 osc);
-void sb_disable_4dw_burst(void);
void sb_enable(struct device *dev);
void southbridge_final(void *chip_info);
void southbridge_init(void *chip_info);
diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c
index 7661607..8815702 100644
--- a/src/soc/amd/stoneyridge/southbridge.c
+++ b/src/soc/amd/stoneyridge/southbridge.c
@@ -255,7 +255,7 @@
spi_write16(SPI100_ENABLE, SPI_USE_SPI100);
}
-void sb_disable_4dw_burst(void)
+static void sb_disable_4dw_burst(void)
{
spi_write16(SPI100_HOST_PREF_CONFIG,
spi_read16(SPI100_HOST_PREF_CONFIG) & ~SPI_RD4DW_EN_HOST);
--
To view, visit https://review.coreboot.org/c/coreboot/+/48431
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I6c7c96f67b98fb8ed808f45a7685c4d72a10d32c
Gerrit-Change-Number: 48431
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-MessageType: newchange
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/28101 )
Change subject: Makefile: Add $(xcompile) to specify where to write xcompile
......................................................................
Patch Set 11: Code-Review+2
(1 comment)
https://review.coreboot.org/c/coreboot/+/28101/11/Makefile
File Makefile:
https://review.coreboot.org/c/coreboot/+/28101/11/Makefile@154
PS11, Line 154: util/xcompile/xcompile $(XGCCPATH) > $(xcompile) || rm -f $(xcompile)))
Should we redirect stderr to /dev/null just in case? The `include` below
should give a reasonable error message if something goes wrong but any
output of the `$(shell )` call would likely result in a mess.
--
To view, visit https://review.coreboot.org/c/coreboot/+/28101
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia83f234447b977efa824751c9674154b77d606b0
Gerrit-Change-Number: 28101
Gerrit-PatchSet: 11
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Aaron Durbin <adurbin(a)chromium.org>
Gerrit-CC: Raul Rangel <rrangel(a)google.com>
Gerrit-Comment-Date: Tue, 08 Dec 2020 23:49:01 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48186 )
Change subject: soc/intel/tigerlake: Enable support for extended BIOS window
......................................................................
Patch Set 4:
(1 comment)
https://review.coreboot.org/c/coreboot/+/48186/4//COMMIT_MSG
Commit Message:
https://review.coreboot.org/c/coreboot/+/48186/4//COMMIT_MSG@13
PS4, Line 13: BUG=b:171534504
Waiting to land the earlier patches in chromium tree and then I will cherry-pick rest of the changes here to ensure I can set up Cq-Depend correctly.
--
To view, visit https://review.coreboot.org/c/coreboot/+/48186
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I039155506380310cf867f5f8c5542278be40838a
Gerrit-Change-Number: 48186
Gerrit-PatchSet: 4
Gerrit-Owner: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Duncan Laurie <dlaurie(a)chromium.org>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Srinidhi N Kaushik <srinidhi.n.kaushik(a)intel.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 08 Dec 2020 22:59:38 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Furquan Shaikh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48190 )
Change subject: mb/google/deltaur: Restrict RW_DIAG to lower 16MiB
......................................................................
mb/google/deltaur: Restrict RW_DIAG to lower 16MiB
This change restricts RW_DIAG region to lower 16MiB to ensure that the
extended BIOS checker for FMAP does not complain about 16MiB boundary
crossing.
I haven't updated any other regions to occupy the newly freed space
but it is fine since this board is dead and should be dropped from
coreboot soon.
Signed-off-by: Furquan Shaikh <furquan(a)google.com>
Change-Id: I19ab204fbe3e020e42baf68bfa350dcff32066a3
---
M src/mainboard/google/deltaur/chromeos.fmd
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/48190/1
diff --git a/src/mainboard/google/deltaur/chromeos.fmd b/src/mainboard/google/deltaur/chromeos.fmd
index bbec112..a84a448 100644
--- a/src/mainboard/google/deltaur/chromeos.fmd
+++ b/src/mainboard/google/deltaur/chromeos.fmd
@@ -6,9 +6,9 @@
SI_PDR(PRESERVE)@0x602000 0x4000
}
SI_BIOS@0x606000 0x19fa000 {
- RW_DIAG@0x0 0x10ca000 {
- RW_LEGACY(CBFS)@0x0 0x10ba000
- DIAG_NVRAM@0x10ba000 0x10000
+ RW_DIAG@0x0 0x9fa000 {
+ RW_LEGACY(CBFS)@0x0 0x9ea000
+ DIAG_NVRAM@0x9ea000 0x10000
}
RW_SECTION_A@0x10ca000 0x280000 {
VBLOCK_A@0x0 0x10000
--
To view, visit https://review.coreboot.org/c/coreboot/+/48190
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I19ab204fbe3e020e42baf68bfa350dcff32066a3
Gerrit-Change-Number: 48190
Gerrit-PatchSet: 1
Gerrit-Owner: Furquan Shaikh <furquan(a)google.com>
Gerrit-MessageType: newchange