From 3d34ae3fc4273682de7d9f8e92425af864fd564c Mon Sep 17 00:00:00 2001 From: Richard Spiegel Date: Fri, 13 Apr 2018 13:20:08 -0700 Subject: soc/amd/stoneyridge/northbridge.c: Fix bit definitions The latest public BKDG (3.6) releases some previously undefined (reserved) bits. Fix these definitions, including the header file where they are defined. BUG=b:77940747 TEST=Build and boot grunt. Change-Id: Icb5334110248d7806421200a161fa3befefcea8a Signed-off-by: Richard Spiegel Reviewed-on: https://review.coreboot.org/25665 Reviewed-by: Paul Menzel Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- src/soc/amd/stoneyridge/include/soc/northbridge.h | 4 ++++ src/soc/amd/stoneyridge/northbridge.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/soc/amd/stoneyridge/include/soc/northbridge.h b/src/soc/amd/stoneyridge/include/soc/northbridge.h index 92bce98780..365a9f5eef 100644 --- a/src/soc/amd/stoneyridge/include/soc/northbridge.h +++ b/src/soc/amd/stoneyridge/include/soc/northbridge.h @@ -20,6 +20,10 @@ #include #include +/* D1F1 - HDA Configuration Registers */ +#define HDA_DEV_CTRL_STATUS 0x60 +#define HDA_NO_SNOOP_EN BIT(11) + /* D18F0 - HT Configuration Registers */ #define D18F0_NODE_ID 0x60 #define D18F0_CPU_CNT 0x62 /* BKDG defines as a field in DWORD 0x60 */ diff --git a/src/soc/amd/stoneyridge/northbridge.c b/src/soc/amd/stoneyridge/northbridge.c index a7c78e65b0..2cefb9161f 100644 --- a/src/soc/amd/stoneyridge/northbridge.c +++ b/src/soc/amd/stoneyridge/northbridge.c @@ -363,9 +363,9 @@ void fam15_finalize(void *chip_info) /* disable No Snoop */ dev = dev_find_slot(0, HDA0_DEVFN); - value = pci_read_config32(dev, 0x60); - value &= ~(1 << 11); - pci_write_config32(dev, 0x60, value); + value = pci_read_config32(dev, HDA_DEV_CTRL_STATUS); + value &= ~HDA_NO_SNOOP_EN; + pci_write_config32(dev, HDA_DEV_CTRL_STATUS, value); } void domain_read_resources(device_t dev) -- cgit v1.2.3