Eric Lai has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63424 )
Change subject: tpm: Refactor TPM Kconfig dimensions
......................................................................
Patch Set 21:
(1 comment)
Patchset:
PS21:
this broken buildbot now. #!!!!! Error: Undefined Symbol 'MAINBOARD_HAS_LPC_TPM' used at src/mainboard/prodrive/atlas/Kconfig:11.
--
To view, visit https://review.coreboot.org/c/coreboot/+/63424
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I4656b2b90363b8dfd008dc281ad591862fe2cc9e
Gerrit-Change-Number: 63424
Gerrit-PatchSet: 21
Gerrit-Owner: Jes Klinke <jbk(a)chromium.org>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Erik van den Bogaert <ebogaert(a)eltan.com>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Jeremy Soller <jeremy(a)system76.com>
Gerrit-Reviewer: Johnny Lin <Johnny_Lin(a)wiwynn.com>
Gerrit-Reviewer: Jonathan Zhang <jonzhang(a)fb.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Maxim Polyakov <max.senia.poliak(a)gmail.com>
Gerrit-Reviewer: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)chromium.org>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: Piotr Król <piotr.krol(a)3mdeb.com>
Gerrit-Reviewer: Sean Rhodes <sean(a)starlabs.systems>
Gerrit-Reviewer: Stefan Ott <coreboot(a)desire.ch>
Gerrit-Reviewer: Tim Chu <Tim.Chu(a)quantatw.com>
Gerrit-Reviewer: Tim Crawford <tcrawford(a)system76.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: Tristan Corrick <tristan(a)corrick.kiwi>
Gerrit-Reviewer: Werner Zeh <werner.zeh(a)siemens.com>
Gerrit-Reviewer: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Reviewer: siemens-bot
Gerrit-CC: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Comment-Date: Fri, 22 Apr 2022 03:09:17 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Eric Lai has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63772 )
Change subject: ec/google/chromeec: Add empty string check for OEM string
......................................................................
ec/google/chromeec: Add empty string check for OEM string
If set OEM string as "", it shows "Not Specified" with dmidecode.
Use default string if it is empty.
BUG=b:230039300
TEST=set OEM string "" and show google with dmidecode -t 2.
Signed-off-by: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Change-Id: I097e1be696ae974aadc47feb8d0c1dae672a5c82
---
M src/ec/google/chromeec/ec_smbios.c
1 file changed, 5 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/63772/1
diff --git a/src/ec/google/chromeec/ec_smbios.c b/src/ec/google/chromeec/ec_smbios.c
index 0616c986..d804f64 100644
--- a/src/ec/google/chromeec/ec_smbios.c
+++ b/src/ec/google/chromeec/ec_smbios.c
@@ -27,13 +27,13 @@
if (manuf)
return manuf;
- if (google_chromeec_cbi_get_oem_name(&oem_name[0],
- ARRAY_SIZE(oem_name)) < 0) {
+ manuf = CONFIG_MAINBOARD_SMBIOS_MANUFACTURER;
+ if (google_chromeec_cbi_get_oem_name(&oem_name[0], ARRAY_SIZE(oem_name)) < 0)
printk(BIOS_INFO, "Couldn't obtain OEM name from CBI\n");
- manuf = CONFIG_MAINBOARD_SMBIOS_MANUFACTURER;
- } else {
+ else if (strlen(oem_name) > 0)
manuf = &oem_name[0];
- }
+ else
+ printk(BIOS_INFO, "OEM name from CBI is empty, use default\n");
return manuf;
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/63772
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I097e1be696ae974aadc47feb8d0c1dae672a5c82
Gerrit-Change-Number: 63772
Gerrit-PatchSet: 1
Gerrit-Owner: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-MessageType: newchange
Attention is currently required from: Raul Rangel, Eric Lai, Karthik Ramasubramanian.
Ian Feng has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63739 )
Change subject: mb/google/skyrim: Configure SD card reader power sequence
......................................................................
Patch Set 5:
(1 comment)
File src/mainboard/google/skyrim/variants/baseboard/gpio.c:
https://review.coreboot.org/c/coreboot/+/63739/comment/e2ce9e83_0652a64b
PS5, Line 201: PAD_GPO(GPIO_27, HIGH),
> ramstage set high is enough, do we need set high here?
Yes,remove set HIGH SD card is not working.
--
To view, visit https://review.coreboot.org/c/coreboot/+/63739
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I03d88d90acc03cdebcb1e83ed2e799dda8b5b735
Gerrit-Change-Number: 63739
Gerrit-PatchSet: 5
Gerrit-Owner: Ian Feng <ian_feng(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Karthik Ramasubramanian <kramasub(a)google.com>
Gerrit-Reviewer: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Amanda Hwang <amanda_hwang(a)compal.corp-partner.google.com>
Gerrit-CC: Dtrain Hsu <dtrain_hsu(a)compal.corp-partner.google.com>
Gerrit-CC: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-CC: Van Chen <van_chen(a)compal.corp-partner.google.com>
Gerrit-Attention: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Attention: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-Attention: Karthik Ramasubramanian <kramasub(a)google.com>
Gerrit-Comment-Date: Fri, 22 Apr 2022 01:44:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Eric Lai <eric_lai(a)quanta.corp-partner.google.com>
Gerrit-MessageType: comment
Attention is currently required from: Stefan Ott, Patrick Rudolph, Frans Hendriks, Julius Werner, Erik van den Bogaert, Jason Glenesk, Sean Rhodes, Marshall Dawson, Christian Walter, Tim Wawrzynczak, Alexander Couzens, Fred Reitberger, Felix Held.
Hello Stefan Ott, Frans Hendriks, Patrick Rudolph, Julius Werner, Erik van den Bogaert, Jason Glenesk, Sean Rhodes, Marshall Dawson, Christian Walter, Tim Wawrzynczak, Alexander Couzens, Fred Reitberger, Felix Held,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63771
to look at the new patch set (#2).
Change subject: mb/*/*/*.fmd: Start flash at 0
......................................................................
mb/*/*/*.fmd: Start flash at 0
FMAP should not contain information about the memory map.
Done with the following command:
"find -name \*.fmd -exec sed -i 's/\(FLASH\).* \(.*\) /\1 \2 /' {} \;"
Change-Id: Iac86ef9be6b14817a65bf3a7ccb624d205ca3f99
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/mainboard/amd/bilby/board.fmd
M src/mainboard/amd/chausie/board.fmd
M src/mainboard/amd/chausie/chromeos.fmd
M src/mainboard/amd/majolica/board.fmd
M src/mainboard/amd/majolica/chromeos.fmd
M src/mainboard/amd/mandolin/variants/cereme/board.fmd
M src/mainboard/amd/mandolin/variants/mandolin/board.fmd
M src/mainboard/cavium/cn8100_sff_evb/board.fmd
M src/mainboard/emulation/qemu-i440fx/vboot-rwa-16M.fmd
M src/mainboard/emulation/qemu-q35/vboot-rwa-16M.fmd
M src/mainboard/emulation/qemu-q35/vboot-rwab-16M.fmd
M src/mainboard/facebook/fbg1701/vboot-rw.fmd
M src/mainboard/google/asurada/chromeos.fmd
M src/mainboard/google/auron/chromeos.fmd
M src/mainboard/google/beltino/chromeos.fmd
M src/mainboard/google/butterfly/chromeos.fmd
M src/mainboard/google/cherry/chromeos.fmd
M src/mainboard/google/corsola/chromeos.fmd
M src/mainboard/google/cyan/chromeos.fmd
M src/mainboard/google/daisy/chromeos.fmd
M src/mainboard/google/dedede/chromeos-dedede-16MiB.fmd
M src/mainboard/google/dedede/chromeos-dedede-32MiB.fmd
M src/mainboard/google/deltaur/chromeos-gbe.fmd
M src/mainboard/google/deltaur/chromeos.fmd
M src/mainboard/google/drallion/chromeos.fmd
M src/mainboard/google/eve/chromeos.fmd
M src/mainboard/google/fizz/chromeos.fmd
M src/mainboard/google/foster/chromeos.fmd
M src/mainboard/google/gale/chromeos.fmd
M src/mainboard/google/glados/chromeos.fmd
M src/mainboard/google/gru/chromeos.fmd
M src/mainboard/google/guybrush/chromeos.fmd
M src/mainboard/google/hatch/chromeos-hatch-16MiB.fmd
M src/mainboard/google/hatch/chromeos-hatch-32MiB.fmd
M src/mainboard/google/hatch/chromeos-puff-16MiB.fmd
M src/mainboard/google/hatch/chromeos-puff-32MiB.fmd
M src/mainboard/google/herobrine/chromeos.fmd
M src/mainboard/google/jecht/chromeos.fmd
M src/mainboard/google/kahlee/variants/baseboard/chromeos.fmd
M src/mainboard/google/kukui/chromeos.fmd
M src/mainboard/google/link/chromeos.fmd
M src/mainboard/google/mistral/chromeos.fmd
M src/mainboard/google/nyan/chromeos.fmd
M src/mainboard/google/nyan_big/chromeos.fmd
M src/mainboard/google/nyan_blaze/chromeos.fmd
M src/mainboard/google/oak/chromeos.fmd
M src/mainboard/google/parrot/chromeos.fmd
M src/mainboard/google/peach_pit/chromeos.fmd
M src/mainboard/google/poppy/chromeos.fmd
M src/mainboard/google/rambi/chromeos.fmd
M src/mainboard/google/sarien/chromeos.fmd
M src/mainboard/google/skyrim/chromeos.fmd
M src/mainboard/google/slippy/chromeos.fmd
M src/mainboard/google/smaug/chromeos.fmd
M src/mainboard/google/storm/chromeos.fmd
M src/mainboard/google/stout/chromeos.fmd
M src/mainboard/google/trogdor/chromeos.fmd
M src/mainboard/google/veyron/chromeos.fmd
M src/mainboard/google/veyron_mickey/chromeos.fmd
M src/mainboard/google/veyron_rialto/chromeos.fmd
M src/mainboard/google/zork/chromeos.fmd
M src/mainboard/intel/baskingridge/chromeos.fmd
M src/mainboard/intel/cedarisland_crb/board.fmd
M src/mainboard/intel/coffeelake_rvp/chromeos.fmd
M src/mainboard/intel/coffeelake_rvp/chromeos_32MB.fmd
M src/mainboard/intel/galileo/vboot.fmd
M src/mainboard/intel/icelake_rvp/chromeos.fmd
M src/mainboard/intel/jasperlake_rvp/chromeos.fmd
M src/mainboard/intel/kblrvp/chromeos.fmd
M src/mainboard/intel/kunimitsu/chromeos.fmd
M src/mainboard/intel/shadowmountain/chromeos.fmd
M src/mainboard/intel/strago/chromeos.fmd
M src/mainboard/intel/tglrvp/chromeos.fmd
M src/mainboard/intel/wtm2/chromeos.fmd
M src/mainboard/lenovo/t400/vboot-rwa.fmd
M src/mainboard/lenovo/t410/vboot-rwa.fmd
M src/mainboard/lenovo/t420/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t420/vboot-ro.fmd
M src/mainboard/lenovo/t420/vboot-rwa.fmd
M src/mainboard/lenovo/t420s/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t420s/vboot-ro.fmd
M src/mainboard/lenovo/t420s/vboot-rwa.fmd
M src/mainboard/lenovo/t430/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t430/vboot-ro.fmd
M src/mainboard/lenovo/t430/vboot-rwab.fmd
M src/mainboard/lenovo/t430s/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t430s/vboot-ro.fmd
M src/mainboard/lenovo/t430s/vboot-rwab.fmd
M src/mainboard/lenovo/t440p/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t440p/vboot-ro.fmd
M src/mainboard/lenovo/t440p/vboot-rwab.fmd
M src/mainboard/lenovo/t520/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t520/vboot-ro.fmd
M src/mainboard/lenovo/t520/vboot-rwa.fmd
M src/mainboard/lenovo/t530/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/t530/vboot-ro.fmd
M src/mainboard/lenovo/t530/vboot-rwab.fmd
M src/mainboard/lenovo/x131e/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/x131e/vboot-ro.fmd
M src/mainboard/lenovo/x131e/vboot-rwab.fmd
M src/mainboard/lenovo/x1_carbon_gen1/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/x1_carbon_gen1/vboot-ro.fmd
M src/mainboard/lenovo/x1_carbon_gen1/vboot-rwab.fmd
M src/mainboard/lenovo/x200/vboot-rwa.fmd
M src/mainboard/lenovo/x201/vboot-rwa.fmd
M src/mainboard/lenovo/x220/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/x220/vboot-ro.fmd
M src/mainboard/lenovo/x220/vboot-rwa.fmd
M src/mainboard/lenovo/x230/vboot-ro-me_clean.fmd
M src/mainboard/lenovo/x230/vboot-ro.fmd
M src/mainboard/lenovo/x230/vboot-rwab.fmd
M src/mainboard/lenovo/x60/vboot-rwa.fmd
M src/mainboard/opencellular/elgon/board.fmd
M src/mainboard/opencellular/elgon/vboot.fmd
M src/mainboard/samsung/lumpy/chromeos.fmd
M src/mainboard/samsung/stumpy/chromeos.fmd
M src/mainboard/siemens/mc_ehl/mc_ehl.fmd
M src/mainboard/starlabs/labtop/variants/tgl/board.fmd
M src/mainboard/ti/beaglebone/board.fmd
M src/soc/amd/picasso/Makefile.inc
120 files changed, 125 insertions(+), 121 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/63771/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/63771
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iac86ef9be6b14817a65bf3a7ccb624d205ca3f99
Gerrit-Change-Number: 63771
Gerrit-PatchSet: 2
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Erik van den Bogaert <ebogaert(a)eltan.com>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: Sean Rhodes <sean(a)starlabs.systems>
Gerrit-Reviewer: Stefan Ott <coreboot(a)desire.ch>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Stefan Ott <coreboot(a)desire.ch>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Attention: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Attention: Erik van den Bogaert <ebogaert(a)eltan.com>
Gerrit-Attention: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Attention: Sean Rhodes <sean(a)starlabs.systems>
Gerrit-Attention: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Attention: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Attention: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-MessageType: newpatchset
Attention is currently required from: Paul Menzel.
Arthur Heymans has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63763 )
Change subject: device/Kconfig: Change ON_DEVICE_ROM_LOAD default
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/63763/comment/d5201314_72ff95f3
PS1, Line 9: is not a good
: idea in an open source project
> Why? I understand the security perspective, and would only mention that.
Running non essential blobs should be opt-in not opt-out?
--
To view, visit https://review.coreboot.org/c/coreboot/+/63763
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I70b4ca6bf83f2d2fa591e30967e481d67e1b9f87
Gerrit-Change-Number: 63763
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Comment-Date: Fri, 22 Apr 2022 00:16:18 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Attention is currently required from: Arthur Heymans, Angel Pons, Julius Werner.
Hello build bot (Jenkins), Christian Walter, Angel Pons, Julius Werner,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63378
to look at the new patch set (#5).
Change subject: Kconfig: Add an option to omit a cbfs master header
......................................................................
Kconfig: Add an option to omit a cbfs master header
The CBFS master header is legacy feature that has no internal use in
coreboot. Some payloads do depend on it however.
Change-Id: Ib3d5b32412db40df48c0ed4dd6216bdd9cb955e2
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/Kconfig
M src/lib/Makefile.inc
2 files changed, 12 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/63378/5
--
To view, visit https://review.coreboot.org/c/coreboot/+/63378
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib3d5b32412db40df48c0ed4dd6216bdd9cb955e2
Gerrit-Change-Number: 63378
Gerrit-PatchSet: 5
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Arthur Heymans <arthur.heymans(a)9elements.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-MessageType: newpatchset
Attention is currently required from: Jes Klinke, Tim Wawrzynczak, Christian Walter, Angel Pons, Jett Rink.
Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63158 )
Change subject: tpm: Allow separate handling of Google Ti50 TPM
......................................................................
Patch Set 16:
(6 comments)
File src/drivers/i2c/tpm/cr50.c:
https://review.coreboot.org/c/coreboot/+/63158/comment/d0019c38_ee0c0b24
PS6, Line 478: gsc
> I have reverted the naming to cr50_ in this and other source files, even though many of the methods […]
It would be great if you provide a general naming overhaul in a follow-up patch!
File src/drivers/spi/tpm/tpm.c:
https://review.coreboot.org/c/coreboot/+/63158/comment/f27a7cd7_325d5c76
PS6, Line 422: H1 based
> I guess it is H1D3-based (updated now), I assumed that H1 could be taken to be any generation of the […]
Oh okay, I didn't actually know the naming worked that way.
File src/drivers/spi/tpm/tpm.c:
https://review.coreboot.org/c/coreboot/+/63158/comment/902999ad_1209b57d
PS16, Line 502: (tpm_info.vendor_id == 0x1ae0
FWIW I'm not sure why this check is here in the first place. We use CONFIG(TPM_GOOGLE) without extra runtime version checks in other critical parts of this driver already, it already wouldn't work if that option was set but the TPM wasn't actually a GSC. There's really no point in doing any of these checks here.
File src/drivers/tpm/cr50.c:
https://review.coreboot.org/c/coreboot/+/63158/comment/cb2297fd_75eec8fc
PS16, Line 104: if (!CONFIG(TPM_GOOGLE_CR50))
So now you check the same Kconfig both in the caller and the callee... seems unnecessary? I think we should decide which of the two places make more sense and then only do it there (probably callee, I think).
https://review.coreboot.org/c/coreboot/+/63158/comment/74a0bc86_d12e49c5
PS16, Line 158: return false;
Does this line have any purpose? We don't have a TPM_GOOGLE that's neither cr50 nor ti50 right now, and if we ever had one in the future it would most likely have the long pulses by default as well. So maybe just take the explicit TI50 check out and just always return true for !CR50?
File src/mainboard/google/brya/Kconfig:
https://review.coreboot.org/c/coreboot/+/63158/comment/5fbb4eda_9b1e0962
PS14, Line 47: TI50
> Seems like that would be the case, yes. […]
Considering that this is a one-off case that we'll never have again after Ti50 has rolled out, I'd prefer not to make things more complicated just for that. I'm sure we can sufficiently support the Ti50 team with the special devices by just providing custom AP images for them in a Drive directory or something like that.
--
To view, visit https://review.coreboot.org/c/coreboot/+/63158
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I1e1f8eb9b94fc2d5689656335dc1135b47880986
Gerrit-Change-Number: 63158
Gerrit-PatchSet: 16
Gerrit-Owner: Jes Klinke <jbk(a)chromium.org>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Jett Rink <jettrink(a)google.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Jes Klinke <jbk(a)chromium.org>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Jett Rink <jettrink(a)google.com>
Gerrit-Comment-Date: Thu, 21 Apr 2022 23:59:18 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Jes Klinke <jbk(a)chromium.org>
Comment-In-Reply-To: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Comment-In-Reply-To: Julius Werner <jwerner(a)chromium.org>
Gerrit-MessageType: comment
Attention is currently required from: Arthur Heymans.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/63763 )
Change subject: device/Kconfig: Change ON_DEVICE_ROM_LOAD default
......................................................................
Patch Set 1:
(2 comments)
Commit Message:
https://review.coreboot.org/c/coreboot/+/63763/comment/584183fa_aa0fd022
PS1, Line 9: is not a good
: idea in an open source project
Why? I understand the security perspective, and would only mention that.
File src/device/Kconfig:
https://review.coreboot.org/c/coreboot/+/63763/comment/0b00e901_c8482fb7
PS1, Line 180: If you are concerned about security, you might want to
: disable this option, but it might leave your system in a state of
: degraded functionality.
This would need to be updated.
--
To view, visit https://review.coreboot.org/c/coreboot/+/63763
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I70b4ca6bf83f2d2fa591e30967e481d67e1b9f87
Gerrit-Change-Number: 63763
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Comment-Date: Thu, 21 Apr 2022 23:50:55 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment