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 <felix-coreboot@felixheld.de>
Change-Id: I52f6655a5c63e31165549dcb6f5f95d4e74bad3d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80356
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
This commit is contained in:
Felix Held 2024-02-06 18:43:14 +01:00
parent 737c8c2c1c
commit 769af20640
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/acpi.h>
#include <amdblocks/data_fabric.h>
#include <device/device.h>
#include <soc/southbridge.h>
#include <soc/southbridge.h>
@ -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);
}