summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/mt8186
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2022-08-04 15:46:33 +0800
committerMartin L Roth <gaumless@gmail.com>2022-08-13 17:08:38 +0000
commitd6cea76dfa8d0cb65c22ef55c4947e7d1068dbc3 (patch)
tree093f72b8d0b2756fba261d28eb06b805cc632594 /src/soc/mediatek/mt8186
parent4dff4fe14e62137e909e10b9f45177442367e781 (diff)
downloadcoreboot-d6cea76dfa8d0cb65c22ef55c4947e7d1068dbc3.tar.gz
coreboot-d6cea76dfa8d0cb65c22ef55c4947e7d1068dbc3.tar.bz2
coreboot-d6cea76dfa8d0cb65c22ef55c4947e7d1068dbc3.zip
soc/mediatek: Move common definition of DFD to common folder
We use the same dump address and size for DFD in all MediaTek SoCs, so we move them to dfd_common.h and rename dfd_common.h to dfd.h. TEST=build pass BUG=b:236331724 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: I162bbb0a82e3b55c8cfbbd20e28a54ad01fd6b0d Reviewed-on: https://review.coreboot.org/c/coreboot/+/66585 Reviewed-by: Yidi Lin <yidilin@chromium.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/mt8186')
-rw-r--r--src/soc/mediatek/mt8186/include/soc/dfd.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/soc/mediatek/mt8186/include/soc/dfd.h b/src/soc/mediatek/mt8186/include/soc/dfd.h
deleted file mode 100644
index b2f1388693a4..000000000000
--- a/src/soc/mediatek/mt8186/include/soc/dfd.h
+++ /dev/null
@@ -1,12 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#ifndef SOC_MEDIATEK_MT8186_DFD_H
-#define SOC_MEDIATEK_MT8186_DFD_H
-
-#include <soc/dfd_common.h>
-
-/* DFD dump address and size need to be the same as defined in Kernel DTS. */
-#define DFD_DUMP_ADDRESS 0x6A000000
-#define DFD_DUMP_SIZE (1 * MiB)
-
-#endif