summaryrefslogtreecommitdiff
path: root/include/configs/dh_stm32mp1.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2020-04-22 14:18:11 +0300
committerPatrick Delaunay <patrick.delaunay@st.com>2020-05-14 10:02:12 +0300
commit731fd50e27fb3e9e55eb508cebebc7a111616a30 (patch)
tree1a249cb61826db64a8b8bcbb470209fac20869e2 /include/configs/dh_stm32mp1.h
parent65e38e81acb0c1eb0b0478626b1985e9ae9055c6 (diff)
downloadu-boot-731fd50e27fb3e9e55eb508cebebc7a111616a30.tar.xz
ARM: stm32: Implement board coding on AV96
The AV96 board does exist in multiple variants. To cater for all of them, implement board code handling. There are two GPIOs which code the type of the board, read them out and use the value to pick the correct device tree from an fitImage. Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by: Marek Vasut <marex@denx.de> Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Cc: Patrick Delaunay <patrick.delaunay@st.com> Cc: Patrice Chotard <patrice.chotard@st.com> Change-Id: Iddb330b9a66500495885457cbe17edc0eacaaf43
Diffstat (limited to 'include/configs/dh_stm32mp1.h')
-rw-r--r--include/configs/dh_stm32mp1.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/configs/dh_stm32mp1.h b/include/configs/dh_stm32mp1.h
new file mode 100644
index 0000000000..89d317ba2b
--- /dev/null
+++ b/include/configs/dh_stm32mp1.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
+/*
+ * Copyright (C) 2020 Marek Vasut <marex@denx.de>
+ *
+ * Configuration settings for the DH STM32MP15x SoMs
+ */
+
+#ifndef __CONFIG_DH_STM32MP1_H__
+#define __CONFIG_DH_STM32MP1_H__
+
+#include <configs/stm32mp1.h>
+
+#define CONFIG_SPL_TARGET "u-boot.itb"
+
+#endif