]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/vf610twr.h
config: rename CONFIG_MX* to CONFIG_SOC_MX*
[karo-tx-uboot.git] / include / configs / vf610twr.h
1 /*
2  * Copyright 2013 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Freescale Vybrid vf610twr board.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <asm/arch/imx-regs.h>
13 #include <config_cmd_default.h>
14
15
16 #define CONFIG_SYS_GENERIC_BOARD
17 #define CONFIG_DISPLAY_CPUINFO
18 #define CONFIG_DISPLAY_BOARDINFO
19
20 #define CONFIG_MACH_TYPE                4146
21
22 #define CONFIG_SKIP_LOWLEVEL_INIT
23
24 /* Enable passing of ATAGs */
25 #define CONFIG_CMDLINE_TAG
26
27 #define CONFIG_CMD_FUSE
28 #ifdef CONFIG_CMD_FUSE
29 #define CONFIG_MXC_OCOTP
30 #endif
31
32 /* Size of malloc() pool */
33 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
34
35 #define CONFIG_BOARD_EARLY_INIT_F
36
37 #define CONFIG_FSL_LPUART
38 #define LPUART_BASE                     UART1_BASE
39
40 /* Allow to overwrite serial and ethaddr */
41 #define CONFIG_ENV_OVERWRITE
42 #define CONFIG_SYS_UART_PORT            (1)
43 #define CONFIG_BAUDRATE                 115200
44
45 #undef CONFIG_CMD_IMLS
46
47 /* NAND support */
48 #define CONFIG_CMD_NAND
49 #define CONFIG_CMD_NAND_TRIMFFS
50
51 #ifdef CONFIG_CMD_NAND
52 #define CONFIG_NAND_VF610_NFC
53 #define CONFIG_SYS_NAND_SELF_INIT
54 #define CONFIG_USE_ARCH_MEMCPY
55 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
56 #define CONFIG_SYS_MAX_NAND_DEVICE      1
57 #define CONFIG_SYS_NAND_BASE            NFC_BASE_ADDR
58
59 /* UBI */
60 #define CONFIG_CMD_UBI
61 #define CONFIG_CMD_UBIFS
62 #define CONFIG_RBTREE
63 #define CONFIG_LZO
64
65 /* Dynamic MTD partition support */
66 #define CONFIG_CMD_MTDPARTS
67 #define CONFIG_MTD_PARTITIONS
68 #define CONFIG_MTD_DEVICE
69 #define MTDIDS_DEFAULT                  "nand0=fsl_nfc"
70 #define MTDPARTS_DEFAULT                "mtdparts=fsl_nfc:"             \
71                                         "128k(vf-bcb)ro,"               \
72                                         "1408k(u-boot)ro,"              \
73                                         "512k(u-boot-env),"             \
74                                         "4m(kernel),"                   \
75                                         "512k(fdt),"            \
76                                         "-(rootfs)"
77 #endif
78
79 #define CONFIG_MMC
80 #define CONFIG_FSL_ESDHC
81 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
82 #define CONFIG_SYS_FSL_ESDHC_NUM        1
83
84 #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
85
86 #define CONFIG_CMD_MMC
87 #define CONFIG_GENERIC_MMC
88 #define CONFIG_CMD_FAT
89 #define CONFIG_DOS_PARTITION
90
91 #define CONFIG_CMD_PING
92 #define CONFIG_CMD_DHCP
93 #define CONFIG_CMD_MII
94 #define CONFIG_CMD_NET
95 #define CONFIG_FEC_MXC
96 #define CONFIG_MII
97 #define IMX_FEC_BASE                    ENET_BASE_ADDR
98 #define CONFIG_FEC_XCV_TYPE             RMII
99 #define CONFIG_FEC_MXC_PHYADDR          0
100 #define CONFIG_PHYLIB
101 #define CONFIG_PHY_MICREL
102
103 /* QSPI Configs*/
104 #define CONFIG_FSL_QSPI
105
106 #ifdef CONFIG_FSL_QSPI
107 #define CONFIG_CMD_SF
108 #define CONFIG_SPI_FLASH
109 #define CONFIG_SPI_FLASH_SPANSION
110 #define FSL_QSPI_FLASH_SIZE             (1 << 24)
111 #define FSL_QSPI_FLASH_NUM              2
112 #define CONFIG_SYS_FSL_QSPI_LE
113 #endif
114
115 /* I2C Configs */
116 #define CONFIG_CMD_I2C
117 #define CONFIG_SYS_I2C
118 #define CONFIG_SYS_I2C_MXC
119 #define CONFIG_SYS_SPD_BUS_NUM          0
120
121 #define CONFIG_BOOTDELAY                3
122
123 #define CONFIG_LOADADDR                 0x82000000
124
125 /* We boot from the gfxRAM area of the OCRAM. */
126 #define CONFIG_SYS_TEXT_BASE            0x3f408000
127 #define CONFIG_BOARD_SIZE_LIMIT         524288
128
129 #define CONFIG_EXTRA_ENV_SETTINGS \
130         "script=boot.scr\0" \
131         "image=zImage\0" \
132         "console=ttyLP1\0" \
133         "fdt_high=0xffffffff\0" \
134         "initrd_high=0xffffffff\0" \
135         "fdt_file=vf610-twr.dtb\0" \
136         "fdt_addr=0x81000000\0" \
137         "boot_fdt=try\0" \
138         "ip_dyn=yes\0" \
139         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
140         "mmcpart=1\0" \
141         "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
142         "update_sd_firmware_filename=u-boot.imx\0" \
143         "update_sd_firmware=" \
144                 "if test ${ip_dyn} = yes; then " \
145                         "setenv get_cmd dhcp; " \
146                 "else " \
147                         "setenv get_cmd tftp; " \
148                 "fi; " \
149                 "if mmc dev ${mmcdev}; then "   \
150                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
151                                 "setexpr fw_sz ${filesize} / 0x200; " \
152                                 "setexpr fw_sz ${fw_sz} + 1; "  \
153                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
154                         "fi; "  \
155                 "fi\0" \
156         "mmcargs=setenv bootargs console=${console},${baudrate} " \
157                 "root=${mmcroot}\0" \
158         "loadbootscript=" \
159                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
160         "bootscript=echo Running bootscript from mmc ...; " \
161                 "source\0" \
162         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
163         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
164         "mmcboot=echo Booting from mmc ...; " \
165                 "run mmcargs; " \
166                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
167                         "if run loadfdt; then " \
168                                 "bootz ${loadaddr} - ${fdt_addr}; " \
169                         "else " \
170                                 "if test ${boot_fdt} = try; then " \
171                                         "bootz; " \
172                                 "else " \
173                                         "echo WARN: Cannot load the DT; " \
174                                 "fi; " \
175                         "fi; " \
176                 "else " \
177                         "bootz; " \
178                 "fi;\0" \
179         "netargs=setenv bootargs console=${console},${baudrate} " \
180                 "root=/dev/nfs " \
181         "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
182                 "netboot=echo Booting from net ...; " \
183                 "run netargs; " \
184                 "if test ${ip_dyn} = yes; then " \
185                         "setenv get_cmd dhcp; " \
186                 "else " \
187                         "setenv get_cmd tftp; " \
188                 "fi; " \
189                 "${get_cmd} ${image}; " \
190                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
191                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
192                                 "bootz ${loadaddr} - ${fdt_addr}; " \
193                         "else " \
194                                 "if test ${boot_fdt} = try; then " \
195                                         "bootz; " \
196                                 "else " \
197                                         "echo WARN: Cannot load the DT; " \
198                                 "fi; " \
199                         "fi; " \
200                 "else " \
201                         "bootz; " \
202                 "fi;\0"
203
204 #define CONFIG_BOOTCOMMAND \
205            "mmc dev ${mmcdev}; if mmc rescan; then " \
206                    "if run loadbootscript; then " \
207                            "run bootscript; " \
208                    "else " \
209                            "if run loadimage; then " \
210                                    "run mmcboot; " \
211                            "else run netboot; " \
212                            "fi; " \
213                    "fi; " \
214            "else run netboot; fi"
215
216 /* Miscellaneous configurable options */
217 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
218 #define CONFIG_SYS_HUSH_PARSER          /* use "hush" command parser */
219 #define CONFIG_SYS_PROMPT_HUSH_PS2      "> "
220 #undef CONFIG_AUTO_COMPLETE
221 #define CONFIG_SYS_CBSIZE               256     /* Console I/O Buffer Size */
222 #define CONFIG_SYS_PBSIZE               \
223                         (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
224 #define CONFIG_SYS_MAXARGS              16      /* max number of command args */
225 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
226
227 #define CONFIG_CMD_MEMTEST
228 #define CONFIG_SYS_MEMTEST_START        0x80010000
229 #define CONFIG_SYS_MEMTEST_END          0x87C00000
230
231 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
232
233 /*
234  * Stack sizes
235  * The stack sizes are set up in start.S using the settings below
236  */
237 #define CONFIG_STACKSIZE                (128 * 1024)    /* regular stack */
238
239 /* Physical memory map */
240 #define CONFIG_NR_DRAM_BANKS            1
241 #define PHYS_SDRAM                      (0x80000000)
242 #define PHYS_SDRAM_SIZE                 (128 * 1024 * 1024)
243
244 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
245 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
246 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
247
248 #define CONFIG_SYS_INIT_SP_OFFSET \
249         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
250 #define CONFIG_SYS_INIT_SP_ADDR \
251         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
252
253 /* FLASH and environment organization */
254 #define CONFIG_SYS_NO_FLASH
255
256 #ifdef CONFIG_ENV_IS_IN_MMC
257 #define CONFIG_ENV_SIZE                 (8 * 1024)
258
259 #define CONFIG_ENV_OFFSET               (12 * 64 * 1024)
260 #define CONFIG_SYS_MMC_ENV_DEV          0
261 #endif
262
263 #ifdef CONFIG_ENV_IS_IN_NAND
264 #define CONFIG_ENV_SIZE                 (64 * 2048)
265 #define CONFIG_ENV_SECT_SIZE            (64 * 2048)
266 #define CONFIG_ENV_RANGE                (512 * 1024)
267 #define CONFIG_ENV_OFFSET               0x180000
268 #endif
269
270 #define CONFIG_OF_LIBFDT
271 #define CONFIG_CMD_BOOTZ
272
273 #endif