summaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-07-12 15:25:02 +0200
committerFelix Held <felix-coreboot@felixheld.de>2024-07-22 13:57:37 +0000
commita4b9c182dded30d2a9437b6e78df9f60251cb85e (patch)
treede857c3c0e704fc33b543ad24ae72adae27e6688 /src/soc
parentbe06b8b98cf5e6a1a44547916a3a9859da39866d (diff)
soc/amd/common/root_complex: move IOHC_MMIO_EN definition to header
To be able to use the IOHC_MMIO_EN define in other compilation units, move the define to the corresponding header file. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: If88950418406d1709ed95b3d05f7e6ad66438f95 Reviewed-on: https://review.coreboot.org/c/coreboot/+/83444 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com> Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/root_complex.h2
-rw-r--r--src/soc/amd/common/block/root_complex/non_pci_resources.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/root_complex.h b/src/soc/amd/common/block/include/amdblocks/root_complex.h
index 767221ec06..9ef5d05925 100644
--- a/src/soc/amd/common/block/include/amdblocks/root_complex.h
+++ b/src/soc/amd/common/block/include/amdblocks/root_complex.h
@@ -11,6 +11,8 @@
#define SMN_IOHC_MISC_BASE_13D1 0x13d10000
#define SMN_IOHC_MISC_BASE_13E1 0x13e10000
+#define IOHC_MMIO_EN BIT(0)
+
#define NON_PCI_RES_IDX_AUTO 0
struct non_pci_mmio_reg {
diff --git a/src/soc/amd/common/block/root_complex/non_pci_resources.c b/src/soc/amd/common/block/root_complex/non_pci_resources.c
index 54f3de276f..1e2e235beb 100644
--- a/src/soc/amd/common/block/root_complex/non_pci_resources.c
+++ b/src/soc/amd/common/block/root_complex/non_pci_resources.c
@@ -5,8 +5,6 @@
#include <device/device.h>
#include <types.h>
-#define IOHC_MMIO_EN BIT(0)
-
void read_non_pci_resources(struct device *domain, unsigned long *idx)
{
const uint32_t iohc_misc_base = get_iohc_misc_smn_base(domain);