[XS] Change in coreboot[main]: device_util: Add support for GICv3 path in device path handling
Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/79972?usp=email ) Change subject: device_util: Add support for GICv3 path in device path handling ...................................................................... device_util: Add support for GICv3 path in device path handling Change-Id: Ib4004c1f1b854a54dfdf9eaa7f25583dec947302 Signed-off-by: Naresh Solanki <naresh.solanki@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79972 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> --- M src/device/device_util.c 1 file changed, 3 insertions(+), 0 deletions(-) Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved diff --git a/src/device/device_util.c b/src/device/device_util.c index 3514de7..f33c925 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -230,6 +230,9 @@ case DEVICE_PATH_MDIO: snprintf(buffer, sizeof(buffer), "MDIO: %02x", dev->path.mdio.addr); break; + case DEVICE_PATH_GICC_V3: + snprintf(buffer, sizeof(buffer), "GICV3: %02x", dev->path.gicc_v3.mpidr); + break; default: printk(BIOS_ERR, "Unknown device path type: %d\n", dev->path.type); -- To view, visit https://review.coreboot.org/c/coreboot/+/79972?usp=email To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: coreboot Gerrit-Branch: main Gerrit-Change-Id: Ib4004c1f1b854a54dfdf9eaa7f25583dec947302 Gerrit-Change-Number: 79972 Gerrit-PatchSet: 3 Gerrit-Owner: Naresh Solanki <naresh.solanki@9elements.com> Gerrit-Reviewer: Angel Pons <th3fanbus@gmail.com> Gerrit-Reviewer: Arthur Heymans <arthur@aheymans.xyz> Gerrit-Reviewer: Felix Held <felix-coreboot@felixheld.de> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Felix Singer <service+coreboot-gerrit@felixsinger.de>
participants (1)
-
Felix Held (Code Review)