aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/nb_common.h
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-11-10 20:42:07 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-11-25 09:11:58 +0000
commitec5cf1504e3bc31f308b18763eb256eeeb74dc7d (patch)
tree2666310451386de0ed416c75c969a153808f55be /src/northbridge/amd/nb_common.h
parentc19cbeeb6b4ec1f083951156e6b67d02390369b5 (diff)
nb/amd: Deduplicate nb_common.h
Save for the IO_APIC2_ADDR definition, they are equivalent. Change-Id: I14da3d9aeefcc725428957ce0c9ac164eabacec6 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47408 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/nb_common.h')
-rw-r--r--src/northbridge/amd/nb_common.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/northbridge/amd/nb_common.h b/src/northbridge/amd/nb_common.h
new file mode 100644
index 0000000000..bee75c7109
--- /dev/null
+++ b/src/northbridge/amd/nb_common.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __AMD_NB_COMMON_H__
+#define __AMD_NB_COMMON_H__
+
+#define HT_IO_HOST_ALIGN 4096
+#define HT_MEM_HOST_ALIGN (1024 * 1024)
+
+#define DEV_CDB 0x18
+#define IO_APIC2_ADDR 0xfec20000
+
+#endif