Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30694
Change subject: TESTONLY: Find where the SMBUS device is ......................................................................
TESTONLY: Find where the SMBUS device is
Change-Id: I88a8e81ab305f621b65ed04d98257fa16e309b38 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/southbridge/amd/sb700/early_setup.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/30694/1
diff --git a/src/southbridge/amd/sb700/early_setup.c b/src/southbridge/amd/sb700/early_setup.c index 70cf340..64ff7ff 100644 --- a/src/southbridge/amd/sb700/early_setup.c +++ b/src/southbridge/amd/sb700/early_setup.c @@ -83,6 +83,8 @@ /* if (rev != 0) return rev; */
dev = pci_locate_device(PCI_ID(0x1002, 0x4385), 0); + printk(BIOS_DEBUG, "found SMBUS controller on %02x:%02x.%d\n", + (dev >> 20) & 0xfff, (dev >> 3) & 0x1f, dev & 0x7);
if (dev == PCI_DEV_INVALID) { die("SMBUS controller not found\n");