1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Configuration header file for IOT2050
4 * Copyright (c) Siemens AG, 2018-2021
7 * Le Jin <le.jin@siemens.com>
8 * Jan Kiszka <jan.kiszka@siemens.com>
11 #ifndef __CONFIG_IOT2050_H
12 #define __CONFIG_IOT2050_H
14 #include <linux/sizes.h>
16 /* SPL Loader Configuration */
18 #define CONFIG_SYS_BOOTM_LEN SZ_64M
20 /* U-Boot general configuration */
21 #define EXTRA_ENV_IOT2050_BOARD_SETTINGS \
22 "usb_pgood_delay=900\0"
24 #ifndef CONFIG_SPL_BUILD
26 #if CONFIG_IS_ENABLED(CMD_USB)
27 # define BOOT_TARGET_USB(func) \
32 # define BOOT_TARGET_USB(func)
36 * This defines all MMC devices, even if the basic variant has no mmc1.
37 * The non-supported device will be removed from the boot targets during
38 * runtime, when that board was detected.
40 #define BOOT_TARGET_DEVICES(func) \
45 #include <config_distro_bootcmd.h>
49 #define CONFIG_EXTRA_ENV_SETTINGS \
50 DEFAULT_LINUX_BOOT_ENV \
52 EXTRA_ENV_IOT2050_BOARD_SETTINGS
54 #include <configs/ti_armv7_common.h>
56 #endif /* __CONFIG_IOT2050_H */