Attention is currently required from: Ed Sharma, Angel Pons.
Hello Ed Sharma, Angel Pons,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/69682
to look at the new patch set (#2).
Change subject: src/commonlib/fsp_relocate.c: Fix cbfstool build on 32 bit host
......................................................................
src/commonlib/fsp_relocate.c: Fix cbfstool build on 32 bit host
On a 32 bit host, uintptr_t is defined as 'unsigned int' instead of
'unsigend long int' like on a 64 bit host. When cbfstool is build on a
32 bit host, the printk format specifier '%lx' expects a 'long int'
while new_addr is of type 'uintptr_t', aka 'unsigned int'.
This in the end leads to a build error.
To fix this and make it build on both, 32 and 64 bit hosts, cast
new_addr to (void *) and use %p as the format specifier.
Test=Build cbfstool on 32 and 64 bit hosts.
Change-Id: Ia917d2ed31778f3a29c0a6c7368f74c15319b099
Signed-off-by: Werner Zeh <werner.zeh(a)siemens.com>
---
M src/commonlib/fsp_relocate.c
1 file changed, 22 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/69682/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/69682
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia917d2ed31778f3a29c0a6c7368f74c15319b099
Gerrit-Change-Number: 69682
Gerrit-PatchSet: 2
Gerrit-Owner: Werner Zeh <werner.zeh(a)siemens.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Ed Sharma <aeddiesharma(a)fb.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Ed Sharma <aeddiesharma(a)fb.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: newpatchset
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/69682 )
Change subject: src/commonlib/fsp_relocate.c: Fix cbfstool build on 32 bit host
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-163757):
https://review.coreboot.org/c/coreboot/+/69682/comment/f452dd90_6f13f365
PS1, Line 11: 32 bit host, the printk format specifier '%lx' expects a 'long int' while
Possible unwrapped commit description (prefer a maximum 72 chars per line)
--
To view, visit https://review.coreboot.org/c/coreboot/+/69682
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia917d2ed31778f3a29c0a6c7368f74c15319b099
Gerrit-Change-Number: 69682
Gerrit-PatchSet: 1
Gerrit-Owner: Werner Zeh <werner.zeh(a)siemens.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Wed, 16 Nov 2022 07:09:50 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Werner Zeh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69682 )
Change subject: src/commonlib/fsp_relocate.c: Fix cbfstool build on 32 bit host
......................................................................
src/commonlib/fsp_relocate.c: Fix cbfstool build on 32 bit host
On a 32 bit host, uintptr_t is defined as 'unsigned int' instead of
'unsigend long int' like on a 64 bit host. When cbfstool is build on a
32 bit host, the printk format specifier '%lx' expects a 'long int' while
new_addr is of type 'uintptr_t', aka 'unsigned int'. This in the end
leads to a build error.
To fix this and make it build on both, 32 and 64 bit hosts, cast
new_addr to (void *) and use %p as the format specifier.
Test=Build cbfstool on 32 and 64 bit hosts.
Change-Id: Ia917d2ed31778f3a29c0a6c7368f74c15319b099
Signed-off-by: Werner Zeh <werner.zeh(a)siemens.com>
---
M src/commonlib/fsp_relocate.c
1 file changed, 22 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/69682/1
diff --git a/src/commonlib/fsp_relocate.c b/src/commonlib/fsp_relocate.c
index 55295ca..afc3f31 100644
--- a/src/commonlib/fsp_relocate.c
+++ b/src/commonlib/fsp_relocate.c
@@ -219,7 +219,7 @@
delta, image_base, img_base_off,
(uint32_t)((uint8_t *)&ophdr->ImageBase - pe_base));
- printk(FSP_DBG_LVL, "relocating PE32 image at addr - 0x%lx\n", new_addr);
+ printk(FSP_DBG_LVL, "relocating PE32 image at addr - 0x%p\n", (void *) new_addr);
rsize = read_le32(&ophdr->DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC].Size);
roffset = read_le32(&ophdr->DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC].VirtualAddress);
printk(FSP_DBG_LVL, "relocation table at offset-%x,size=%x\n", roffset, rsize);
--
To view, visit https://review.coreboot.org/c/coreboot/+/69682
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia917d2ed31778f3a29c0a6c7368f74c15319b099
Gerrit-Change-Number: 69682
Gerrit-PatchSet: 1
Gerrit-Owner: Werner Zeh <werner.zeh(a)siemens.com>
Gerrit-MessageType: newchange
Attention is currently required from: Tarun Tuli, Kangheui Won, Reka Norman, Shou-Chieh Hsu.
Leo Chou has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/69679 )
Change subject: mb/google/nissa/var/pujjo: Tune timing on SD device RTD3
......................................................................
Patch Set 1:
(1 comment)
File src/mainboard/google/brya/variants/pujjo/overridetree.cb:
https://review.coreboot.org/c/coreboot/+/69679/comment/61bf2cbc_a5906d9e
PS1, Line 546: 50
> Why 50 ms? The datasheet only says min 10 us. […]
Because datasheet don't define max, and we confirm waveform with SD vendor and Google Dio.
They don't have any concern about this waveform.
This issue don't need set reset_off_delay_ms.
--
To view, visit https://review.coreboot.org/c/coreboot/+/69679
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I1ea77ec8381000249229653f1c0b9044bdf7866d
Gerrit-Change-Number: 69679
Gerrit-PatchSet: 1
Gerrit-Owner: Leo Chou <leo.chou(a)lcfc.corp-partner.google.com>
Gerrit-Reviewer: Kangheui Won <khwon(a)chromium.org>
Gerrit-Reviewer: Reka Norman <rekanorman(a)chromium.org>
Gerrit-Reviewer: Shou-Chieh Hsu <shouchieh(a)google.com>
Gerrit-Reviewer: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Joey Peng <joey.peng(a)lcfc.corp-partner.google.com>
Gerrit-CC: Jynn Chen <jynn.chen(a)lcfc.corp-partner.google.com>
Gerrit-CC: Kevin3 Yang <Kevin3.Yang(a)lcfuturecenter.com>
Gerrit-CC: Melo Chuang <melo.chuang(a)lcfc.corp-partner.google.com>
Gerrit-CC: Stanley Wu <stanley1.wu(a)lcfc.corp-partner.google.com>
Gerrit-Attention: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Attention: Kangheui Won <khwon(a)chromium.org>
Gerrit-Attention: Reka Norman <rekanorman(a)chromium.org>
Gerrit-Attention: Shou-Chieh Hsu <shouchieh(a)google.com>
Gerrit-Comment-Date: Wed, 16 Nov 2022 07:03:03 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Reka Norman <rekanorman(a)chromium.org>
Gerrit-MessageType: comment
Attention is currently required from: Tarun Tuli, Kapil Porwal.
Sridhar Siricilla has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/69680 )
Change subject: soc/intel/meteorlake: Skip setting D0I3 bit for HECI devices
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/69680/comment/55f8067f_e5dc61d9
PS1, Line 9: This patch skips setting D0I3 bit for all HECI devices by FSP.
Can you please add reason for it?
--
To view, visit https://review.coreboot.org/c/coreboot/+/69680
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I1c3765ce41f192ab5f5ff176e0a2b49b312d18d2
Gerrit-Change-Number: 69680
Gerrit-PatchSet: 1
Gerrit-Owner: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Gerrit-Attention: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Comment-Date: Wed, 16 Nov 2022 06:19:12 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Paul Menzel, Tim Wawrzynczak, Johnny Li, Paul F Yang.
Sumeet R Pawnikar has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/69135 )
Change subject: mb/google/brya/variants/crota: Configure TDC current for VR domains.
......................................................................
Patch Set 9: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/69135
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ife36655f077bae567bff3c3e33f779c990cf5ed9
Gerrit-Change-Number: 69135
Gerrit-PatchSet: 9
Gerrit-Owner: Johnny Li <johnny_li(a)wistron.corp-partner.google.com>
Gerrit-Reviewer: Paul F Yang <paul.f.yang(a)intel.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Paul Yang <paul.f.yang(a)intel.corp-partner.google.com>
Gerrit-Reviewer: Sumeet R Pawnikar <sumeet.r.pawnikar(a)intel.com>
Gerrit-Reviewer: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Reviewer: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Casper Chang <casper_chang(a)wistron.corp-partner.google.com>
Gerrit-CC: Mars Chen <chenxiangrui(a)huaqin.corp-partner.google.com>
Gerrit-CC: Peter Chi <peter_chi(a)wistron.corp-partner.google.com>
Gerrit-CC: Scott Chao <scott_chao(a)wistron.corp-partner.google.com>
Gerrit-CC: Terry Chen <terry_chen(a)wistron.corp-partner.google.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Attention: Johnny Li <johnny_li(a)wistron.corp-partner.google.com>
Gerrit-Attention: Paul F Yang <paul.f.yang(a)intel.com>
Gerrit-Comment-Date: Wed, 16 Nov 2022 06:18:41 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment