Merge branch '2022-06-28-Kconfig-migrations' into next
[platform/kernel/u-boot.git] / include / configs / dragonboard410c.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Board configuration file for Dragonboard 410C
4  *
5  * (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
6  */
7
8 #ifndef __CONFIGS_DRAGONBOARD410C_H
9 #define __CONFIGS_DRAGONBOARD410C_H
10
11 #include <linux/sizes.h>
12 #include <asm/arch/sysmap-apq8016.h>
13
14 /* Build new ELF image from u-boot.bin (U-Boot + appended DTB) */
15
16 /* Physical Memory Map */
17 #define PHYS_SDRAM_1                    0x80000000
18 /* Note: 8 MiB (0x86000000 - 0x86800000) are reserved for tz/smem/hyp/rmtfs/rfsa */
19 #define PHYS_SDRAM_1_SIZE               SZ_1G
20 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
21 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
22
23 /* Environment */
24 #define BOOT_TARGET_DEVICES(func) \
25         func(USB, usb, 0) \
26         func(MMC, mmc, 1) \
27         func(MMC, mmc, 0) \
28         func(DHCP, dhcp, na)
29
30 #include <config_distro_bootcmd.h>
31
32 #define CONFIG_EXTRA_ENV_SETTINGS BOOTENV
33
34 #endif