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