681c831747bacfd5ac7dc122669580f123373b10
[platform/kernel/u-boot.git] / include / configs / smegw01.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2016 NXP Semiconductors
4  * Copyright (C) 2021 Fabio Estevam <festevam@denx.de>
5  *
6  * Configuration settings for the smegw01 board.
7  */
8
9 #ifndef __SMEGW01_CONFIG_H
10 #define __SMEGW01_CONFIG_H
11
12 #include "mx7_common.h"
13 #include <imximage.h>
14
15 #define PHYS_SDRAM_SIZE         SZ_512M
16
17 /* MMC Config*/
18 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
19
20 #define CONFIG_EXTRA_ENV_SETTINGS \
21         "image=zImage\0" \
22         "console=ttymxc0\0" \
23         "fdtfile=imx7d-smegw01.dtb\0" \
24         "fdt_addr=0x83000000\0" \
25         "bootm_size=0x10000000\0" \
26         "mmcdev=0\0" \
27         "mmcpart=1\0" \
28         "mmcargs=setenv bootargs console=${console},${baudrate} " \
29                 "root=/dev/mmcblk0p${mmcpart} rootwait rw\0" \
30         "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} boot/${image}\0" \
31         "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} boot/${fdtfile}\0" \
32         "mmcboot=echo Booting from mmc ...; " \
33                 "run mmcargs; " \
34                 "if run loadfdt; then " \
35                         "bootz ${loadaddr} - ${fdt_addr}; " \
36                 "fi;\0" \
37
38 /* Physical Memory Map */
39 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
40
41 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
42 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
43 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
44
45 #endif