diff options
| author | Marek Vasut <[email protected]> | 2020-04-22 13:18:11 +0200 |
|---|---|---|
| committer | Patrick Delaunay <[email protected]> | 2020-05-14 09:02:12 +0200 |
| commit | 731fd50e27fb3e9e55eb508cebebc7a111616a30 (patch) | |
| tree | 1a249cb61826db64a8b8bcbb470209fac20869e2 /include | |
| parent | 65e38e81acb0c1eb0b0478626b1985e9ae9055c6 (diff) | |
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 <[email protected]>
Signed-off-by: Marek Vasut <[email protected]>
Cc: Manivannan Sadhasivam <[email protected]>
Cc: Patrick Delaunay <[email protected]>
Cc: Patrice Chotard <[email protected]>
Change-Id: Iddb330b9a66500495885457cbe17edc0eacaaf43
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/dh_stm32mp1.h | 15 |
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 00000000000..89d317ba2bd --- /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 <[email protected]> + * + * 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 |
