Attention is currently required from: Martin L Roth.
Felix Held has posted comments on this change by Felix Held. ( https://review.coreboot.org/c/coreboot/+/87280?usp=email )
Change subject: soc/amd: add functions to retrieve I3C controller info
......................................................................
Patch Set 2:
(1 comment)
File src/soc/amd/common/block/include/amdblocks/i2c.h:
PS2:
i'm still undecided whether there should be a separate amdblocks/i3c.h header, since the i2c/i3c pad configuration function prototypes are in the amdblocks/i2c.h
--
To view, visit https://review.coreboot.org/c/coreboot/+/87280?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: Ib23fd896925770f49e567324bc8d12ac4c0944bd
Gerrit-Change-Number: 87280
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Martin L Roth <gaumless(a)gmail.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Comment-Date: Fri, 11 Apr 2025 16:37:27 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: Ana Carolina Cabral, Felix Held, Martin L Roth, Maximilian Brune, Patrick Rudolph.
Hello Ana Carolina Cabral, Martin L Roth, Maximilian Brune, Patrick Rudolph, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/87277?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Code-Review+2 by Maximilian Brune, Verified+1 by build bot (Jenkins)
The change is no longer submittable: Code-Review and Verified are unsatisfied now.
Change subject: soc/amd: report I3C controller MMIO to resource allocator
......................................................................
soc/amd: report I3C controller MMIO to resource allocator
Add minimal common AMD I3C controller code that reports the MMIO region
used by the different I3C controllers to the resource allocator. For
this to work, select the introduced SOC_AMD_COMMON_BLOCK_I3C Kconfig
option and add the 'soc_amd_i3c_mmio_ops' device operations to the I3C
device devicetree entries on all SoCs that include I3C controllers.
Change-Id: Iebf709d2548f2535b2a2a03a4f6da9531559c238
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/common/block/i2c/Kconfig
M src/soc/amd/common/block/i2c/Makefile.mk
A src/soc/amd/common/block/i2c/i3c.c
M src/soc/amd/genoa_poc/Kconfig
M src/soc/amd/genoa_poc/chipset.cb
M src/soc/amd/glinda/Kconfig
M src/soc/amd/glinda/chipset.cb
M src/soc/amd/mendocino/Kconfig
M src/soc/amd/mendocino/chipset_mendocino.cb
M src/soc/amd/mendocino/chipset_rembrandt.cb
M src/soc/amd/phoenix/Kconfig
M src/soc/amd/phoenix/chipset_fsp.cb
M src/soc/amd/phoenix/chipset_opensil.cb
13 files changed, 47 insertions(+), 24 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/77/87277/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/87277?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: Iebf709d2548f2535b2a2a03a4f6da9531559c238
Gerrit-Change-Number: 87277
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Ana Carolina Cabral <ana.cpmelo95(a)gmail.com>
Gerrit-Reviewer: Martin L Roth <gaumless(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: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Attention: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Attention: Ana Carolina Cabral <ana.cpmelo95(a)gmail.com>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Attention is currently required from: Martin L Roth.
Hello Martin L Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/87280?usp=email
to look at the new patch set (#2).
Change subject: soc/amd: add functions to retrieve I3C controller info
......................................................................
soc/amd: add functions to retrieve I3C controller info
Similarly to how things are done for the I2C controller configuration,
implement the 'soc_get_i3c_ctrlr_info' function in all SoCs that have
I3C controllers. This function returns the contents of the SoC's
'i3c_ctrlr' array containing the base addresses and ACPI names of the
I3C controllers. This function will eventually be called by the common
I3C code which will be implemented in future patches.
Change-Id: Ib23fd896925770f49e567324bc8d12ac4c0944bd
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/common/block/include/amdblocks/i2c.h
M src/soc/amd/genoa_poc/Makefile.mk
A src/soc/amd/genoa_poc/i3c.c
M src/soc/amd/genoa_poc/include/soc/iomap.h
M src/soc/amd/glinda/Makefile.mk
A src/soc/amd/glinda/i3c.c
M src/soc/amd/glinda/include/soc/iomap.h
M src/soc/amd/mendocino/Makefile.mk
A src/soc/amd/mendocino/i3c.c
M src/soc/amd/mendocino/include/soc/iomap.h
M src/soc/amd/phoenix/Makefile.mk
A src/soc/amd/phoenix/i3c.c
M src/soc/amd/phoenix/include/soc/iomap.h
13 files changed, 88 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/87280/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/87280?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: Ib23fd896925770f49e567324bc8d12ac4c0944bd
Gerrit-Change-Number: 87280
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Martin L Roth <gaumless(a)gmail.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>