mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
731fd50e27
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
15 lines
316 B
C
15 lines
316 B
C
/* 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
|