1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
5 * Configuration settings for the Freescale i.MX7ULP EVK board.
8 #ifndef __MX7ULP_EVK_CONFIG_H
9 #define __MX7ULP_EVK_CONFIG_H
11 #include <linux/sizes.h>
12 #include <asm/arch/imx-regs.h>
14 #define CONFIG_SYS_BOOTM_LEN 0x1000000
17 /* Using ULP WDOG for reset */
18 #define WDOG_BASE_ADDR WDG1_RBASE
20 #define CONFIG_SYS_HZ_CLOCK 1000000 /* Fixed at 1Mhz from TSTMR */
23 #define LPUART_BASE LPUART4_RBASE
25 /* Miscellaneous configurable options */
26 #define CONFIG_SYS_CBSIZE 512
28 #define CONFIG_SYS_MAXARGS 256
30 /* Physical Memory Map */
32 #define PHYS_SDRAM 0x60000000
33 #define PHYS_SDRAM_SIZE SZ_1G
34 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
36 #define CONFIG_EXTRA_ENV_SETTINGS \
40 "fdt_high=0xffffffff\0" \
41 "initrd_high=0xffffffff\0" \
42 "fdt_file=imx7ulp-evk.dtb\0" \
43 "fdt_addr=0x63000000\0" \
45 "earlycon=lpuart32,0x402D0010\0" \
47 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
49 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
50 "mmcautodetect=yes\0" \
51 "mmcargs=setenv bootargs console=${console},${baudrate} " \
54 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
55 "bootscript=echo Running bootscript from mmc ...; " \
57 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
58 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
59 "mmcboot=echo Booting from mmc ...; " \
61 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
62 "if run loadfdt; then " \
63 "bootz ${loadaddr} - ${fdt_addr}; " \
65 "if test ${boot_fdt} = try; then " \
68 "echo WARN: Cannot load the DT; " \
74 "netargs=setenv bootargs console=${console},${baudrate} " \
76 "ip=:::::eth0:dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
77 "netboot=echo Booting from net ...; " \
79 "if test ${ip_dyn} = yes; then " \
80 "setenv get_cmd dhcp; " \
82 "setenv get_cmd tftp; " \
85 "${get_cmd} ${image}; " \
86 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
87 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
88 "bootz ${loadaddr} - ${fdt_addr}; " \
90 "if test ${boot_fdt} = try; then " \
93 "echo WARN: Cannot load the DT; " \
100 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
101 #define CONFIG_SYS_INIT_RAM_SIZE SZ_256K
103 #define CONFIG_SYS_INIT_SP_OFFSET \
104 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
105 #define CONFIG_SYS_INIT_SP_ADDR \
106 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
108 #endif /* __CONFIG_H */