From 769af20640d296070ee18d21601d2c08586881f3 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 6 Feb 2024 18:43:14 +0100 Subject: [PATCH] soc/amd/genoa_poc/chip: print data fabric MMIO decoding configuration Printing the data fabric MMIO decode window configuration might be useful and it also aligns this SoC more with the other AMD family 17h+ SoCs. Signed-off-by: Felix Held Change-Id: I52f6655a5c63e31165549dcb6f5f95d4e74bad3d Reviewed-on: https://review.coreboot.org/c/coreboot/+/80356 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/soc/amd/genoa_poc/chip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/amd/genoa_poc/chip.c b/src/soc/amd/genoa_poc/chip.c index 13ede840e5..a763dab862 100644 --- a/src/soc/amd/genoa_poc/chip.c +++ b/src/soc/amd/genoa_poc/chip.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include +#include #include #include #include @@ -13,6 +14,8 @@ static void soc_init(void *chip_info) setup_opensil(); opensil_xSIM_timepoint_1(); + data_fabric_print_mmio_conf(); + fch_init(chip_info); }