mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-27 07:51:38 +00:00

Support for Schneider Electric HMIBSC. Features: - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306) - 2GiB RAM - 64GiB eMMC, SD slot - WiFi and Bluetooth - 2x Host, 1x Device USB port - HDMI - Discrete TPM2 chip over SPI Features enabled in U-Boot: - RAUC updates - Environment protection - USB based ethernet adaptors Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
16 lines
357 B
C
16 lines
357 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Board configuration file for HMIBSC
|
|
*
|
|
* (C) Copyright 2024 Sumit Garg <sumit.garg@linaro.org>
|
|
*/
|
|
|
|
#ifndef __CONFIGS_HMIBSC_H
|
|
#define __CONFIGS_HMIBSC_H
|
|
|
|
/* PHY needs a longer aneg time */
|
|
#define PHY_ANEG_TIMEOUT 8000
|
|
|
|
#define CFG_ENV_FLAGS_LIST_STATIC "BOOT_A_LEFT:dw,BOOT_B_LEFT:dw,BOOT_ORDER:sw"
|
|
|
|
#endif
|