summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/common
diff options
context:
space:
mode:
authorJarried Lin <jarried.lin@mediatek.corp-partner.google.com>2024-07-16 17:42:20 +0800
committerFelix Held <felix-coreboot@felixheld.de>2024-07-22 14:06:28 +0000
commitae37d6158efdae7f902ba058628b2115daee0b88 (patch)
treed8731a15bf673f0e9e9142e79d385c9c1a0b8550 /src/soc/mediatek/common
parent27d24f21abe70d0376445548a6dd75a5b957aecb (diff)
soc/mediatek: Move symbols.h into MediaTek common directory
To reduce duplicate region declarations of MediaTek SoCs, move the header file to a common directory. BUG=b:317009620 TEST=Build geralt pass. Change-Id: Iad1c9f520cdc5c6ad2b55e8f4ec6149fa47b17b1 Signed-off-by: Jarried Lin <jarried.lin@mediatek.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/83570 Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/common')
-rw-r--r--src/soc/mediatek/common/include/soc/symbols.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/mediatek/common/include/soc/symbols.h b/src/soc/mediatek/common/include/soc/symbols.h
new file mode 100644
index 0000000000..5e1c7058c3
--- /dev/null
+++ b/src/soc/mediatek/common/include/soc/symbols.h
@@ -0,0 +1,10 @@
+/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
+
+#ifndef _SOC_MEDIATEK_COMMON_SYMBOLS_H_
+#define _SOC_MEDIATEK_COMMON_SYMBOLS_H_
+
+#include <symbols.h>
+
+DECLARE_REGION(dram_dma)
+
+#endif /* _SOC_MEDIATEK_COMMON_SYMBOLS_H_ */