Attention is currently required from: Arthur Heymans, Martin L Roth, Martin Roth.
Varshit Pandya has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/76511?usp=email )
Change subject: vendorcode/amd: Hook up opensil
......................................................................
Patch Set 13: Code-Review+1
--
To view, visit https://review.coreboot.org/c/coreboot/+/76511?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ide2d181914116119dfd37b1511d89ea965729141
Gerrit-Change-Number: 76511
Gerrit-PatchSet: 13
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Reviewer: Varshit Pandya <pandyavarshit(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Martin Roth <martin.roth(a)amd.corp-partner.google.com>
Gerrit-CC: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Attention: Martin Roth <martin.roth(a)amd.corp-partner.google.com>
Gerrit-Comment-Date: Fri, 17 Nov 2023 03:44:53 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: David Milosevic, Julius Werner, Lean Sheng Tan, Martin L Roth, Maximilian Brune.
Hello David Milosevic, Julius Werner, Lean Sheng Tan, Maximilian Brune, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/78285?usp=email
to look at the new patch set (#7).
The following approvals got outdated and were removed:
Verified+1 by build bot (Jenkins)
Change subject: arch/arm64: Implement initial set of SMBIOS tables
......................................................................
arch/arm64: Implement initial set of SMBIOS tables
Implement the two architectural tables: processor and cache.
Note that SoC/board code should override core-thread count
and, for spec-compliance, create CBMEM_ID_MEMINFO.
Need to confirm tables are in fact compliant.
Change-Id: Iedae0f26f168bd6d3af866e35d9d39ddb01abc15
Signed-off-by: Benjamin Doron <benjamin.doron(a)9elements.com>
---
M src/Kconfig
A src/arch/arm64/smbios.c
M src/arch/arm64/tables.c
M src/include/smbios.h
4 files changed, 233 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/78285/7
--
To view, visit https://review.coreboot.org/c/coreboot/+/78285?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Iedae0f26f168bd6d3af866e35d9d39ddb01abc15
Gerrit-Change-Number: 78285
Gerrit-PatchSet: 7
Gerrit-Owner: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Reviewer: David Milosevic <David.Milosevic(a)9elements.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Lean Sheng Tan <sheng.tan(a)9elements.com>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Attention: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Attention: Lean Sheng Tan <sheng.tan(a)9elements.com>
Gerrit-Attention: David Milosevic <David.Milosevic(a)9elements.com>
Gerrit-MessageType: newpatchset
Attention is currently required from: Felix Singer, Hung-Te Lin, Julius Werner, Yidi Lin.
Yu-Ping Wu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79063?usp=email )
Change subject: google/*: Clean up Kconfg board selection for Google MTK boards
......................................................................
Patch Set 1:
(5 comments)
File src/mainboard/google/corsola/Kconfig:
https://review.coreboot.org/c/coreboot/+/79063/comment/3e408669_a096bd24 :
PS1, Line 22: select DRIVER_ANALOGIX_ANX7625 if BOARD_GOOGLE_CHINCHOU
In the past we've changed the file multiple times in order to better organize these display driver Kconfigs. Note that only one driver should be selected, except on Steelix where old revisions use a different eDP bridge. The best option we have so far is to let each board select the right config, so that it's clear that only one of them is selected.
Now if the preferred model is to hide `BOARD_GOOGLE_*` from the Kconfig file, I think we'll want to change how these drivers are selected. In particular, we'll need to make sure both options are mutually exclusive (except for Steelix). My suggestion would be:
```
config CORSOLA_HAS_MIPI_PANEL
def_bool BOARD_GOOGLE_STARYU_COMMON
config DRIVER_ANALOGIX_ANX7625
def_bool BOARD_GOOGLE_KINGLER_COMMON || BOARD_GOOGLE_CHINCHOU || ...
depends on !CORSOLA_HAS_MIPI_PANEL
config DRIVER_PARADE_PS8640
def_bool !DRIVER_ANALOGIX_ANX7625 || BOARD_GOOGLE_STEELIX
depends on !CORSOLA_HAS_MIPI_PANEL
```
Do you think that's cleaner than the current patch?
File src/mainboard/google/geralt/Kconfig:
https://review.coreboot.org/c/coreboot/+/79063/comment/106057be_7b8ed6b8 :
PS1, Line 5: def_bool BOARD_GOOGLE_GERALT
And `BOARD_GOOGLE_CIRI` (added by a recent patch CB:78954).
https://review.coreboot.org/c/coreboot/+/79063/comment/f7ca0d8f_08f54390 :
PS1, Line 62: SDCARD_INIT
Also modify this for consistency (need to rebase).
File src/mainboard/google/kukui/Kconfig:
https://review.coreboot.org/c/coreboot/+/79063/comment/213d8053_35485f20 :
PS1, Line 27: BOARD_GOOGLE_WILLOW
This needs to select `BOARD_GOOGLE_KUKUI_COMMON`. Here kukui is considered as the parent of jacuzzi.
https://review.coreboot.org/c/coreboot/+/79063/comment/8228d956_63e9ae5f :
PS1, Line 36: select VBOOT_VBNV_FLASH
Not related to the patch, but I've always been wondering how repeated definitions of a Kconfig option work. Is this line equivalent to `select VBOOT_VBNV_FLASH if VBOOT` in `BOARD_SPECIFIC_OPTIONS`?
--
To view, visit https://review.coreboot.org/c/coreboot/+/79063?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I40880e7609ba703d0053ad01da742871e54d4e7a
Gerrit-Change-Number: 79063
Gerrit-PatchSet: 1
Gerrit-Owner: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yidi Lin <yidilin(a)google.com>
Gerrit-Reviewer: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Nico Huber <nico.h(a)gmx.de>
Gerrit-Attention: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Attention: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Attention: Yidi Lin <yidilin(a)google.com>
Gerrit-Comment-Date: Fri, 17 Nov 2023 01:54:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Yu-Ping Wu has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/79076?usp=email )
Change subject: mb/google/geralt/Kconfig: Simplify SDCARD_INIT with def_bool
......................................................................
Abandoned
See CB:79063
--
To view, visit https://review.coreboot.org/c/coreboot/+/79076?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ie033204894e829ab3bff79297e93861a4585495a
Gerrit-Change-Number: 79076
Gerrit-PatchSet: 1
Gerrit-Owner: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yidi Lin <yidilin(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: abandon
Yu-Ping Wu has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/79075?usp=email )
Change subject: mb/google/corsola/Kconfig: Simplify SDCARD_INIT with def_bool
......................................................................
Abandoned
See CB:79063
--
To view, visit https://review.coreboot.org/c/coreboot/+/79075?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I249917cccfd644d69546c4602a3190d03d0b3277
Gerrit-Change-Number: 79075
Gerrit-PatchSet: 1
Gerrit-Owner: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yidi Lin <yidilin(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: abandon
Attention is currently required from: Hung-Te Lin, Yu-Ping Wu.
Yidi Lin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79076?usp=email )
Change subject: mb/google/geralt/Kconfig: Simplify SDCARD_INIT with def_bool
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/79076?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ie033204894e829ab3bff79297e93861a4585495a
Gerrit-Change-Number: 79076
Gerrit-PatchSet: 1
Gerrit-Owner: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yidi Lin <yidilin(a)google.com>
Gerrit-Attention: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Attention: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Comment-Date: Fri, 17 Nov 2023 01:11:07 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: Hung-Te Lin, Yu-Ping Wu.
Yidi Lin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79075?usp=email )
Change subject: mb/google/corsola/Kconfig: Simplify SDCARD_INIT with def_bool
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/79075?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I249917cccfd644d69546c4602a3190d03d0b3277
Gerrit-Change-Number: 79075
Gerrit-PatchSet: 1
Gerrit-Owner: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yidi Lin <yidilin(a)google.com>
Gerrit-Attention: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Attention: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Comment-Date: Fri, 17 Nov 2023 01:10:53 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: Felix Singer, Julius Werner, Shelley Chen.
Yu-Ping Wu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79022?usp=email )
Change subject: google/*: Clean up Kconfig board selection for non-MTK Google Arm boards
......................................................................
Patch Set 1: Code-Review+2
(2 comments)
Patchset:
PS1:
Everything looks good to me except for the problem mentioned by Nico.
File src/mainboard/google/gru/Kconfig:
https://review.coreboot.org/c/coreboot/+/79022/comment/0399b813_466169ed :
PS1, Line 30: def_bool BOARD_GOOGLE_SCARLET || \
sort if you prefer.
--
To view, visit https://review.coreboot.org/c/coreboot/+/79022?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: If679a05afd10869afba9c2a33b54862e102b5f40
Gerrit-Change-Number: 79022
Gerrit-PatchSet: 1
Gerrit-Owner: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Shelley Chen <shchen(a)google.com>
Gerrit-Reviewer: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Attention: Shelley Chen <shchen(a)google.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Comment-Date: Fri, 17 Nov 2023 01:03:19 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment