Attention is currently required from: Arthur Heymans, Patrick Rudolph.
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63004 )
Change subject: Move common EFI and FSP definitions to commonlib
......................................................................
Patch Set 3:
(4 comments)
File src/commonlib/include/commonlib/uefi_types.h:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144483):
https://review.coreboot.org/c/coreboot/+/63004/comment/765fa55b_5dcf57d6
PS3, Line 9: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144483):
https://review.coreboot.org/c/coreboot/+/63004/comment/37e00b1d_444625b4
PS3, Line 9: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144483):
https://review.coreboot.org/c/coreboot/+/63004/comment/129a6ef9_1637b8a0
PS3, Line 13: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144483):
https://review.coreboot.org/c/coreboot/+/63004/comment/07d53882_6c133624
PS3, Line 13: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
Macros with complex values should be enclosed in parentheses
--
To view, visit https://review.coreboot.org/c/coreboot/+/63004
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Gerrit-Change-Number: 63004
Gerrit-PatchSet: 3
Gerrit-Owner: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Comment-Date: Tue, 22 Mar 2022 20:09:32 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Arthur Heymans, Patrick Rudolph.
Hello build bot (Jenkins), Patrick Rudolph, Arthur Heymans,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63004
to look at the new patch set (#3).
Change subject: Move common EFI and FSP definitions to commonlib
......................................................................
Move common EFI and FSP definitions to commonlib
The original implementation of fsp_component_relocate() was very lazy
in that it indiscriminately pulled in all EFI headers. Because that is
used in commonlib code, it essentially created an EFI decendency on
both the firmware components, as well as the userspace components of
the codebase.
Resolve this by pulling in the needed definitions into commonlib, and
passing them through the semantic patches from FSP 2.0 to remove the
deep dependency on EFI definitions. It turns out that very little code
is needed to make things function.
Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/commonlib/fsp_relocate.c
A src/commonlib/include/commonlib/fsp_info_header.h
A src/commonlib/include/commonlib/uefi_types.h
M util/cbfstool/Makefile.inc
4 files changed, 179 insertions(+), 46 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/63004/3
--
To view, visit https://review.coreboot.org/c/coreboot/+/63004
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Gerrit-Change-Number: 63004
Gerrit-PatchSet: 3
Gerrit-Owner: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-MessageType: newpatchset
Tim Wawrzynczak has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62964 )
Change subject: drivers/tpm/cr50: Use cr50_get_firmware_version in get_board_cfg
......................................................................
drivers/tpm/cr50: Use cr50_get_firmware_version in get_board_cfg
cr50_get_board_cfg() may be called in ramstage for some mainboards in
order to determine the BOARD_CFG register's value. The code was
written assuming that the firmware version was already retrieved, but
for boards calling this in ramstage, this is not the case. Therefore,
instead of using the cached cr50_firmware_version (which is all 0s in
ramstage at that time), use the cr50_get_firmware_version function
instead.
BUG=b:225206079, b:220685274
BRANCH=firmware-brya-14505.B
TEST=boot on brya0 and see:
[INFO ] Firmware version: B2-C:0 RO_B:0.0.11/4d655eab RW_B:0.6.93/cr50_v3.94
[INFO ] Enabling GPIO PM b/c CR50 has long IRQ pulse support
in the logs.
Signed-off-by: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Change-Id: Ia6e5f4965a8852793d2f95e6eb21ea87860335a9
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62964
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Julius Werner <jwerner(a)chromium.org>
Reviewed-by: Subrata Banik <subratabanik(a)google.com>
---
M src/drivers/tpm/cr50.c
1 file changed, 13 insertions(+), 5 deletions(-)
Approvals:
build bot (Jenkins): Verified
Julius Werner: Looks good to me, approved
Subrata Banik: Looks good to me, approved
diff --git a/src/drivers/tpm/cr50.c b/src/drivers/tpm/cr50.c
index f96e174..1d6c691 100644
--- a/src/drivers/tpm/cr50.c
+++ b/src/drivers/tpm/cr50.c
@@ -13,8 +13,6 @@
(CONFIG(CR50_USE_LONG_INTERRUPT_PULSES) \
? CR50_BOARD_CFG_100US_READY_PULSE : 0)
-static struct cr50_firmware_version cr50_firmware_version;
-
enum cr50_register {
CR50_FW_VER_REG,
CR50_BOARD_CFG_REG,
@@ -74,9 +72,13 @@
*/
static uint32_t cr50_get_board_cfg(void)
{
+ struct cr50_firmware_version ver;
uint32_t value;
- if (!cr50_fw_supports_board_cfg(&cr50_firmware_version))
+ if (cr50_get_firmware_version(&ver) != CB_SUCCESS)
+ return 0;
+
+ if (!cr50_fw_supports_board_cfg(&ver))
return 0;
const enum cb_err ret = tis_vendor_read(get_reg_addr(CR50_BOARD_CFG_REG), &value,
@@ -94,10 +96,14 @@
*/
enum cb_err cr50_set_board_cfg(void)
{
- uint32_t value;
+ struct cr50_firmware_version ver;
enum cb_err ret;
+ uint32_t value;
- if (!cr50_fw_supports_board_cfg(&cr50_firmware_version))
+ if (cr50_get_firmware_version(&ver) != CB_SUCCESS)
+ return CB_ERR;
+
+ if (!cr50_fw_supports_board_cfg(&ver))
return CB_ERR;
/* Set the CR50_BOARD_CFG register, for e.g. asking cr50 to use longer ready pulses. */
@@ -167,6 +173,8 @@
enum cb_err cr50_get_firmware_version(struct cr50_firmware_version *version)
{
+ static struct cr50_firmware_version cr50_firmware_version;
+
if (cr50_firmware_version.epoch || cr50_firmware_version.major ||
cr50_firmware_version.minor)
goto success;
--
To view, visit https://review.coreboot.org/c/coreboot/+/62964
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia6e5f4965a8852793d2f95e6eb21ea87860335a9
Gerrit-Change-Number: 62964
Gerrit-PatchSet: 5
Gerrit-Owner: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: merged
Attention is currently required from: Shelley Chen, Subrata Banik, Matt DeVillier, Edward O'Callaghan, Angel Pons, Nick Vaccaro.
Tim Wawrzynczak has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/62970 )
Change subject: mb/google/hatch: split up hatch and puff baseboards
......................................................................
Patch Set 2:
(2 comments)
Patchset:
PS2:
I like this, but it's a big change, let's let it bake a for just a bit
File src/mainboard/google/puff/Kconfig:
https://review.coreboot.org/c/coreboot/+/62970/comment/244045d4_41dcbf9c
PS2, Line 95: select GBB_FLAG_FORCE_DEV_SWITCH_ON
: select GBB_FLAG_FORCE_DEV_BOOT_USB
: select GBB_FLAG_FORCE_DEV_BOOT_ALTFW
nit: not alphabetized
--
To view, visit https://review.coreboot.org/c/coreboot/+/62970
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I8c7350f3afcff3ddefc6fa14054a3f9257568cd3
Gerrit-Change-Number: 62970
Gerrit-PatchSet: 2
Gerrit-Owner: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Edward O'Callaghan <quasisec(a)chromium.org>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Shelley Chen <shchen(a)google.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Shelley Chen <shchen(a)google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-Attention: Edward O'Callaghan <quasisec(a)chromium.org>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Comment-Date: Tue, 22 Mar 2022 19:56:46 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Arthur Heymans, Patrick Rudolph.
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63004 )
Change subject: Move common EFI and FSP definitions to commonlib
......................................................................
Patch Set 2:
(5 comments)
File src/commonlib/include/commonlib/fsp_info_header.h:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144481):
https://review.coreboot.org/c/coreboot/+/63004/comment/7a795648_888d98d6
PS2, Line 37: struct FSP_EXTENTED_HEADER {
'EXTENTED' may be misspelled - perhaps 'EXTENDED'?
File src/commonlib/include/commonlib/uefi_types.h:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144481):
https://review.coreboot.org/c/coreboot/+/63004/comment/e2814643_a71ce939
PS2, Line 9: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144481):
https://review.coreboot.org/c/coreboot/+/63004/comment/39aa7952_dfd1589d
PS2, Line 9: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144481):
https://review.coreboot.org/c/coreboot/+/63004/comment/1e163d07_62ba0a7c
PS2, Line 13: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144481):
https://review.coreboot.org/c/coreboot/+/63004/comment/eed2abfa_57e5e396
PS2, Line 13: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
Macros with complex values should be enclosed in parentheses
--
To view, visit https://review.coreboot.org/c/coreboot/+/63004
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Gerrit-Change-Number: 63004
Gerrit-PatchSet: 2
Gerrit-Owner: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Attention: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Comment-Date: Tue, 22 Mar 2022 19:53:37 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Arthur Heymans, Patrick Rudolph.
Hello build bot (Jenkins), Patrick Rudolph, Arthur Heymans,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63004
to look at the new patch set (#2).
Change subject: Move common EFI and FSP definitions to commonlib
......................................................................
Move common EFI and FSP definitions to commonlib
The original implementation of fsp_component_relocate() was very lazy
in that it indiscriminately pulled in all EFI headers. Because that is
used in commonlib code, it essentially created an EFI decendency on
both the firmware components, as well as the userspace components of
the codebase.
Resolve this by pulling in the needed definitions into commonlib, and
passing them through the semantic patches from FSP 2.0 to remove the
deep dependency on EFI definitions. It turns out that very little code
is needed to make things function.
Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/commonlib/fsp_relocate.c
A src/commonlib/include/commonlib/fsp_info_header.h
A src/commonlib/include/commonlib/uefi_types.h
M util/cbfstool/Makefile.inc
4 files changed, 188 insertions(+), 46 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/63004/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/63004
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Gerrit-Change-Number: 63004
Gerrit-PatchSet: 2
Gerrit-Owner: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Attention: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-MessageType: newpatchset
Attention is currently required from: Arthur Heymans.
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63004 )
Change subject: Move common EFI and FSP definitions to commonlib
......................................................................
Patch Set 1:
(5 comments)
File src/commonlib/include/commonlib/fsp_info_header.h:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144480):
https://review.coreboot.org/c/coreboot/+/63004/comment/8a3545ee_022a1f56
PS1, Line 51: struct FSP_EXTENTED_HEADER {
'EXTENTED' may be misspelled - perhaps 'EXTENDED'?
File src/commonlib/include/commonlib/uefi_types.h:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144480):
https://review.coreboot.org/c/coreboot/+/63004/comment/e5055803_51814766
PS1, Line 23: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144480):
https://review.coreboot.org/c/coreboot/+/63004/comment/2030a5ac_a7e59373
PS1, Line 23: #define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16))
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144480):
https://review.coreboot.org/c/coreboot/+/63004/comment/bb1b6b78_4d6814c1
PS1, Line 27: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-144480):
https://review.coreboot.org/c/coreboot/+/63004/comment/38c8bf00_75a44497
PS1, Line 27: #define EFI_FVH_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', 'H')
Macros with complex values should be enclosed in parentheses
--
To view, visit https://review.coreboot.org/c/coreboot/+/63004
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia2e4051cf31789a48e63b9cee6cdf2b67a6e475f
Gerrit-Change-Number: 63004
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Comment-Date: Tue, 22 Mar 2022 19:50:28 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Subrata Banik, Maulik V Vaghela, Paul Menzel, Nick Vaccaro, Eric Lai, Andrey Petrov.
Tim Wawrzynczak has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/62942 )
Change subject: drivers/intel/fsp2_0: Add provision to extract FSP Performance Data
......................................................................
Patch Set 4:
(1 comment)
File src/drivers/intel/fsp2_0/fsp_timestamp.c:
https://review.coreboot.org/c/coreboot/+/62942/comment/e6f15c41_12547bc2
PS4, Line 111:
: BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT, fsp_get_timestamp, NULL);
: BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, fsp_get_timestamp, NULL);
Instead of boot state entries, can we just add call fsp_print_timestamps() from somewhere in the flow of the fsp2_0 driver, e.g. end of do_silicon_init() ? I realize that you will not capture any timestamp emitted by Notify APIs that way, but we are also moving towards eliminating the need for those too...
--
To view, visit https://review.coreboot.org/c/coreboot/+/62942
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia1b7f6b98bafeec0afe843f0f78c99c2f34f50b3
Gerrit-Change-Number: 62942
Gerrit-PatchSet: 4
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Reviewer: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-Reviewer: Kangheui Won <khwon(a)chromium.org>
Gerrit-Reviewer: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-CC: Reka Norman <rekanorman(a)chromium.org>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Attention: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-Attention: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Comment-Date: Tue, 22 Mar 2022 19:39:47 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Tim Wawrzynczak, Nick Vaccaro.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/62964 )
Change subject: drivers/tpm/cr50: Use cr50_get_firmware_version in get_board_cfg
......................................................................
Patch Set 4: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/62964
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia6e5f4965a8852793d2f95e6eb21ea87860335a9
Gerrit-Change-Number: 62964
Gerrit-PatchSet: 4
Gerrit-Owner: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Comment-Date: Tue, 22 Mar 2022 19:38:12 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment