]> git.sur5r.net Git - u-boot/blob - include/configs/mx7ulp_evk.h
9c58c294891029cdbe08a1fffb2a9c216ba2f035
[u-boot] / include / configs / mx7ulp_evk.h
1 /*
2  * Copyright (C) 2016 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Freescale i.MX7ULP EVK board.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __MX7ULP_EVK_CONFIG_H
10 #define __MX7ULP_EVK_CONFIG_H
11
12 #include <linux/sizes.h>
13 #include <asm/arch/imx-regs.h>
14
15 /*Uncomment it to use secure boot*/
16 /*#define CONFIG_SECURE_BOOT*/
17
18 #ifdef CONFIG_SECURE_BOOT
19 #ifndef CONFIG_CSF_SIZE
20 #define CONFIG_CSF_SIZE                 0x4000
21 #endif
22 #endif
23
24 #define CONFIG_BOARD_POSTCLK_INIT
25 #define CONFIG_SYS_BOOTM_LEN            0x1000000
26
27 #define SRC_BASE_ADDR                   CMC1_RBASE
28 #define IRAM_BASE_ADDR                  OCRAM_0_BASE
29 #define IOMUXC_BASE_ADDR                IOMUXC1_RBASE
30
31 #define CONFIG_BOUNCE_BUFFER
32 #define CONFIG_FSL_ESDHC
33 #define CONFIG_FSL_USDHC
34 #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
35
36 #define CONFIG_SYS_FSL_USDHC_NUM        1
37
38 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
39 #define CONFIG_SYS_MMC_ENV_DEV          0       /* USDHC1 */
40 #define CONFIG_SYS_MMC_ENV_PART         0       /* user area */
41 #define CONFIG_MMCROOT                  "/dev/mmcblk0p2"  /* USDHC1 */
42 #define CONFIG_SYS_MMC_IMG_LOAD_PART    1
43
44 #define CONFIG_ENV_OFFSET               (12 * SZ_64K)
45 #define CONFIG_ENV_SIZE                 SZ_8K
46
47 /* Using ULP WDOG for reset */
48 #define WDOG_BASE_ADDR                  WDG1_RBASE
49
50 #define CONFIG_SYS_ARCH_TIMER
51 #define CONFIG_SYS_HZ_CLOCK             1000000 /* Fixed at 1Mhz from TSTMR */
52
53 #define CONFIG_INITRD_TAG
54 #define CONFIG_CMDLINE_TAG
55 #define CONFIG_SETUP_MEMORY_TAGS
56 /*#define CONFIG_REVISION_TAG*/
57
58 /* Size of malloc() pool */
59 #define CONFIG_SYS_MALLOC_LEN           (8 * SZ_1M)
60
61 #define CONFIG_BOARD_EARLY_INIT_F
62
63 /* UART */
64 #define LPUART_BASE                     LPUART4_RBASE
65
66 /* allow to overwrite serial and ethaddr */
67 #define CONFIG_ENV_OVERWRITE
68 #define CONFIG_BAUDRATE                 115200
69
70 #define CONFIG_SYS_CACHELINE_SIZE      64
71
72 /* Miscellaneous configurable options */
73 #define CONFIG_SYS_PROMPT               "=> "
74 #define CONFIG_SYS_CBSIZE               512
75
76 #define CONFIG_SYS_MAXARGS              256
77
78 /* Physical Memory Map */
79 #define CONFIG_NR_DRAM_BANKS            1
80
81 #define PHYS_SDRAM                      0x60000000
82 #define PHYS_SDRAM_SIZE                 SZ_1G
83 #define CONFIG_SYS_MEMTEST_START        PHYS_SDRAM
84 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
85
86 #define CONFIG_LOADADDR             0x60800000
87
88 #define CONFIG_CMD_MEMTEST
89 #define CONFIG_SYS_MEMTEST_END      0x9E000000
90
91 #define CONFIG_EXTRA_ENV_SETTINGS \
92         "script=boot.scr\0" \
93         "image=zImage\0" \
94         "console=ttyLP0\0" \
95         "fdt_high=0xffffffff\0" \
96         "initrd_high=0xffffffff\0" \
97         "fdt_file=imx7ulp-evk.dtb\0" \
98         "fdt_addr=0x63000000\0" \
99         "boot_fdt=try\0" \
100         "earlycon=lpuart32,0x402D0010\0" \
101         "ip_dyn=yes\0" \
102         "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
103         "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
104         "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
105         "mmcautodetect=yes\0" \
106         "mmcargs=setenv bootargs console=${console},${baudrate} " \
107                 "root=${mmcroot}\0" \
108         "loadbootscript=" \
109                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
110         "bootscript=echo Running bootscript from mmc ...; " \
111                 "source\0" \
112         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
113         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
114         "mmcboot=echo Booting from mmc ...; " \
115                 "run mmcargs; " \
116                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
117                         "if run loadfdt; then " \
118                                 "bootz ${loadaddr} - ${fdt_addr}; " \
119                         "else " \
120                                 "if test ${boot_fdt} = try; then " \
121                                         "bootz; " \
122                                 "else " \
123                                         "echo WARN: Cannot load the DT; " \
124                                 "fi; " \
125                         "fi; " \
126                 "else " \
127                         "bootz; " \
128                 "fi;\0" \
129         "netargs=setenv bootargs console=${console},${baudrate} " \
130                 "root=/dev/nfs " \
131                 "ip=:::::eth0:dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
132         "netboot=echo Booting from net ...; " \
133                 "run netargs; " \
134                 "if test ${ip_dyn} = yes; then " \
135                         "setenv get_cmd dhcp; " \
136                 "else " \
137                         "setenv get_cmd tftp; " \
138                 "fi; " \
139                 "usb start; "\
140                 "${get_cmd} ${image}; " \
141                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
142                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
143                                 "bootz ${loadaddr} - ${fdt_addr}; " \
144                         "else " \
145                                 "if test ${boot_fdt} = try; then " \
146                                         "bootz; " \
147                                 "else " \
148                                         "echo WARN: Cannot load the DT; " \
149                                 "fi; " \
150                         "fi; " \
151                 "else " \
152                         "bootz; " \
153                 "fi;\0" \
154
155 #define CONFIG_BOOTCOMMAND \
156            "mmc dev ${mmcdev}; if mmc rescan; then " \
157                    "if run loadbootscript; then " \
158                            "run bootscript; " \
159                    "else " \
160                            "if run loadimage; then " \
161                                    "run mmcboot; " \
162                            "fi; " \
163                    "fi; " \
164            "fi"
165
166 #define CONFIG_SYS_HZ                   1000
167 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
168
169 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
170 #define CONFIG_SYS_INIT_RAM_SIZE        SZ_256K
171
172 #define CONFIG_SYS_INIT_SP_OFFSET \
173         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
174 #define CONFIG_SYS_INIT_SP_ADDR \
175         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
176
177 #ifndef CONFIG_SYS_DCACHE_OFF
178 #define CONFIG_CMD_CACHE
179 #endif
180
181 #endif  /* __CONFIG_H */