Attention is currently required from: Kapil Porwal, Subrata Banik.
Mac Chiang has posted comments on this change by Mac Chiang. ( https://review.coreboot.org/c/coreboot/+/86699?usp=email )
Change subject: mb/google/fatcat/var/francka: Add support for DMIC0
......................................................................
Patch Set 6:
(1 comment)
File src/mainboard/google/fatcat/variants/francka/fw_config.c:
https://review.coreboot.org/c/coreboot/+/86699/comment/eee03abb_3e9aeed0?us… :
PS6, Line 28: /* GPP_D09: PCH_DGPU_HOLD_RST#_R */
: PAD_NC(GPP_D09, NONE),
: /* GPP_D16: HDA_RST# */
: PAD_NC(GPP_D16, NONE),
: /* GPP_S00: SNDW_3_SCL */
: PAD_NC(GPP_S00, NONE),
: /* GPP_S01: SNDW_3_SDA */
: PAD_NC(GPP_S01, NONE),
: /* GPP_S04: SNDW2_CLK */
: PAD_NC(GPP_S04, NONE),
: /* GPP_S05: SNDW2_DATA0 */
: PAD_NC(GPP_S05, NONE),
> These pins are NC in either case. why not move them to gpio. […]
For future SoundWire SKUs, I think it will need to be reconfigured if set to default.
--
To view, visit https://review.coreboot.org/c/coreboot/+/86699?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Idcc18a6a605694bc5c1a2994453717887814e897
Gerrit-Change-Number: 86699
Gerrit-PatchSet: 6
Gerrit-Owner: Mac Chiang <mac.chiang(a)intel.com>
Gerrit-Reviewer: Jayvik Desai <jayvik(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Pranava Y N <pranavayn(a)google.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Ian Feng <ian_feng(a)compal.corp-partner.google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Comment-Date: Mon, 31 Mar 2025 02:42:27 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Kapil Porwal <kapilporwal(a)google.com>
Attention is currently required from: Felix Held, Patrick Rudolph.
Maximilian Brune has posted comments on this change by Felix Held. ( https://review.coreboot.org/c/coreboot/+/86940?usp=email )
Change subject: util/amdfwtool: add PLATFORM_FAEGAN
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/86940?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I40a3e9981696fc02a44fbf300d1b47060a4a398b
Gerrit-Change-Number: 86940
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Ana Carolina Cabral <ana.cpmelo95(a)gmail.com>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Comment-Date: Mon, 31 Mar 2025 00:23:52 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: Dinesh Gehlot, Intel coreboot Reviewers, Kapil Porwal.
Subrata Banik has posted comments on this change by Dinesh Gehlot. ( https://review.coreboot.org/c/coreboot/+/86153?usp=email )
Change subject: soc/intel/cmn/blk: Remove boot partition check for forced cse sync
......................................................................
Patch Set 13:
(3 comments)
File src/soc/intel/common/block/cse/cse_lite.c:
https://review.coreboot.org/c/coreboot/+/86153/comment/b5c6485f_f3071db0?us… :
PS12, Line 751: if ((vb2api_gbb_get_flags(ctx) & VB2_GBB_FLAG_FORCE_CSE_SYNC) &&
: cse_get_current_bp() == RO) {
> The current flag-based implementation has backward compatibility and will always function regardless of the current boot partition. Therefore, I believe we may not need to check if the platform is newer or older than PTL. WDYT.
what is the point returning `return cse_info_in_cmos.cse_sync_status & CSE_ENFORCED_SYNC_REQUEST` as true if the CSE slot is RW? We won't be able to enforce CSE sync when CSE is booting from RW slot ? we might need to push CSE to go into RO slot so we can enforce CSE update
https://review.coreboot.org/c/coreboot/+/86153/comment/3922cd55_4723b0de?us… :
PS12, Line 765: is_cse_sync_enforced
> The ESOL screen function at romstage also calls `is_cse_sync_enforced()`. At that stage, the enforce CSE sync status flags have not been updated. Therefore, an update to these status flags is required.
I'm unable to follow. if you take a look into `is_cse_sync_enforced` API used previously then this API just meant to tell if CSE sync being enforced but now you have used this function to also store the status of CSE info crc, CSE specific information etc. What i'm asking is to decouple this API. What you need here is just return `return cse_info_in_cmos.cse_sync_status & CSE_ENFORCED_SYNC_REQUEST`
if you need to update the CSE info CMOS status during `is_cse_sync_enforced`, then you can add `update_cse_info()` from all caller of `is_cse_sync_enforced` API.
https://review.coreboot.org/c/coreboot/+/86153/comment/70eadfe7_a61bfc66?us… :
PS12, Line 792: n cse_info_in_cmos.cse_sync_status & CSE_ENFORCED_SYNC_REQ;
> Yes, the sync status update exhibits a distinct behavior and warrants relocation to a dedicated function, `store_cse_sync_status()`.
>
> However, `is_cse_sync_enforced()` also determines if ESOL should be displayed or not. If we move the sync status update elsewhere, ESOL execution during ROMSTAGE might not receive the correct indication to display the ESOL screen.
you just need to decouple `is_cse_sync_enforced` API to ensure storing into CSE info can be handled by the caller of the API.
--
To view, visit https://review.coreboot.org/c/coreboot/+/86153?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: If1e4180cb5fec3990fdee2b0e412173b1c8c6ded
Gerrit-Change-Number: 86153
Gerrit-PatchSet: 13
Gerrit-Owner: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Intel coreboot Reviewers <intel_coreboot_reviewers(a)intel.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-CC: Karthik Ramasubramanian <kramasub(a)google.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Intel coreboot Reviewers <intel_coreboot_reviewers(a)intel.com>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Comment-Date: Sun, 30 Mar 2025 13:04:48 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Dinesh Gehlot <digehlot(a)google.com>
Attention is currently required from: Alexander Couzens.
Hello Alexander Couzens,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/87048?usp=email
to look at the new patch set (#2).
Change subject: mb/lenovo/m900_tiny: Put options in CFR cbtable
......................................................................
mb/lenovo/m900_tiny: Put options in CFR cbtable
Change-Id: I259f88a3ceb9aee54016bb88a7d4de2b58dffa83
Signed-off-by: Michał Kopeć <michal.kopec(a)3mdeb.com>
---
M src/mainboard/lenovo/m900_tiny/Kconfig
M src/mainboard/lenovo/m900_tiny/Makefile.mk
A src/mainboard/lenovo/m900_tiny/cfr.c
M src/mainboard/lenovo/m900_tiny/ramstage.c
4 files changed, 113 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/87048/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/87048?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I259f88a3ceb9aee54016bb88a7d4de2b58dffa83
Gerrit-Change-Number: 87048
Gerrit-PatchSet: 2
Gerrit-Owner: Michał Kopeć <michal.kopec(a)3mdeb.com>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Attention: Alexander Couzens <lynxis(a)fe80.eu>
Attention is currently required from: Alexander Couzens, Krystian Hebel, Michał Kopeć, Michał Żygowski, Paul Menzel.
Hello Alexander Couzens, Krystian Hebel, Michał Żygowski, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/84873?usp=email
to look at the new patch set (#6).
The following approvals got outdated and were removed:
Verified-1 by build bot (Jenkins)
Change subject: mb/lenovo/m900_tiny: Update VBT to build 1037 with Kaby Lake gfx support
......................................................................
mb/lenovo/m900_tiny: Update VBT to build 1037 with Kaby Lake gfx support
Update VBT to one extracted from newer Lenovo UEFI, version FWKTBFA.
The newer VBT has build number 1037 and supports Kaby Lake graphics,
while the old VBT with build number 1000 only supports Skylake.
The old VBT starts with $VBT_SKYLAKE while the new one starts with
$VBT_KABYLAKE.
TEST=Insert CPU with integrated HD 630 graphics (i3-7100) and check if
all video outputs work in firmware.
Change-Id: I5e108d4ad8bf0663f3e1fa32145e40ea9babeac5
Signed-off-by: Michał Kopeć <michal.kopec(a)3mdeb.com>
---
M src/mainboard/lenovo/m900_tiny/data.vbt
1 file changed, 0 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/73/84873/6
--
To view, visit https://review.coreboot.org/c/coreboot/+/84873?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I5e108d4ad8bf0663f3e1fa32145e40ea9babeac5
Gerrit-Change-Number: 84873
Gerrit-PatchSet: 6
Gerrit-Owner: Michał Kopeć <michal.kopec(a)3mdeb.com>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Krystian Hebel <krystian.hebel(a)3mdeb.com>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Attention: Michał Kopeć <michal.kopec(a)3mdeb.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Krystian Hebel <krystian.hebel(a)3mdeb.com>
Gerrit-Attention: Alexander Couzens <lynxis(a)fe80.eu>
Attention is currently required from: Angel Pons, Bill XIE, Nicholas Chin.
Keith Hui has posted comments on this change by Keith Hui. ( https://review.coreboot.org/c/coreboot/+/85413?usp=email )
Change subject: mb/asus/p8z77-v: Attempt to correctly route PCIe lanes
......................................................................
Patch Set 7:
(1 comment)
File src/mainboard/asus/p8x7x-series/variants/p8z77-v/early_init.c:
https://review.coreboot.org/c/coreboot/+/85413/comment/4f30c54b_baa89725?us… :
PS7, Line 104: 0x40
> No, those values are from digging through p8z77-v vendor bios, module PcieLaneDxe, with Ghidra. […]
Bill, if you have a multimeter on hand, this next test will settle everything once and for all (I hope).
I'd like you to probe the three PCIe switcher select signals directly, while running vendor BIOS, for each possible setting - start with the one where PCIEX1_2 actually works. You need not boot any OS at all, though it shouldn't hurt. Hook the meter's negative lead to a ground and use the positive lead to probe these three locations:
X_QSW_SEL2: QSWR504 pad 2 (towards the PCI slot)
X_QSW_SEL3: QSWR504 pad 1 (towards the PCIEX16_1 slot)
X_QSW_SEL4: QSWQ7 pin 3 (on the single leg side)
QSWR504 according to boardview should be unpopulated, giving you access to both pads.
I uploaded a map of their positions on the board to the issue tracker.
High is 3.3v.
--
To view, visit https://review.coreboot.org/c/coreboot/+/85413?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: If41197a1f817a48c209d25fc1ae461ec97ccf16c
Gerrit-Change-Number: 85413
Gerrit-PatchSet: 7
Gerrit-Owner: Keith Hui <buurin(a)gmail.com>
Gerrit-Reviewer: Bill XIE <persmule(a)hardenedlinux.org>
Gerrit-Reviewer: Nicholas Chin <nic.c3.14(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Bill XIE <persmule(a)hardenedlinux.org>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Nicholas Chin <nic.c3.14(a)gmail.com>
Gerrit-Comment-Date: Sun, 30 Mar 2025 02:00:24 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Bill XIE <persmule(a)hardenedlinux.org>
Comment-In-Reply-To: Keith Hui <buurin(a)gmail.com>