mx25pdk: Use generic filesystem commands
[oweals/u-boot.git] / include / configs / mx25pdk.h
1 /*
2  * (C) Copyright 2011 Freescale Semiconductor, Inc.
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #include <asm/arch/imx-regs.h>
11
12 /* High Level Configuration Options */
13
14 #define CONFIG_MX25
15 #define CONFIG_SYS_TEXT_BASE            0x81200000
16 #define CONFIG_MXC_GPIO
17 #define CONFIG_SYS_FSL_CLK
18
19 #define CONFIG_SYS_TIMER_RATE           32768
20 #define CONFIG_SYS_TIMER_COUNTER        \
21         (&((struct gpt_regs *)IMX_GPT1_BASE)->counter)
22
23 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
24 #define CONFIG_SETUP_MEMORY_TAGS
25 #define CONFIG_INITRD_TAG
26
27 #define CONFIG_MACH_TYPE        MACH_TYPE_MX25_3DS
28
29 /* Size of malloc() pool */
30 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
31
32 /* Physical Memory Map */
33
34 #define CONFIG_NR_DRAM_BANKS    1
35 #define PHYS_SDRAM_1            0x80000000
36 #define PHYS_SDRAM_1_SIZE       (64 * 1024 * 1024)
37
38 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
39 #define CONFIG_SYS_INIT_RAM_ADDR        IMX_RAM_BASE
40 #define CONFIG_SYS_INIT_RAM_SIZE        IMX_RAM_SIZE
41
42 #define CONFIG_SYS_INIT_SP_OFFSET \
43         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
44 #define CONFIG_SYS_INIT_SP_ADDR \
45         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
46
47 /* Memory Test */
48 #define CONFIG_SYS_MEMTEST_START        (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE/2)
49 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)
50
51 /* Serial Info */
52 #define CONFIG_MXC_UART
53 #define CONFIG_MXC_UART_BASE    UART1_BASE
54 #define CONFIG_CONS_INDEX       1       /* use UART0 for console */
55
56 /* No NOR flash present */
57 #define CONFIG_ENV_OFFSET      (6 * 64 * 1024)
58 #define CONFIG_ENV_SIZE        (8 * 1024)
59 #define CONFIG_SYS_MMC_ENV_DEV          0
60
61 #define CONFIG_SYS_MMC_ENV_DEV 0
62
63 /* U-Boot general configuration */
64 #define CONFIG_AUTO_COMPLETE
65 #define CONFIG_SYS_CBSIZE       1024    /* Console I/O Buffer Size  */
66 /* Boot Argument Buffer Size */
67 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE
68 #define CONFIG_CMDLINE_EDITING
69 #define CONFIG_SYS_LONGHELP
70
71 /* U-Boot commands */
72
73 /* Filesystem support */
74 #define CONFIG_FS_EXT4
75
76 /* Ethernet */
77 #define CONFIG_FEC_MXC
78 #define CONFIG_FEC_MXC_PHYADDR          0x1f
79 #define CONFIG_MII
80 #define CONFIG_ENV_OVERWRITE
81
82 /* ESDHC driver */
83 #define CONFIG_FSL_ESDHC
84 #define CONFIG_SYS_FSL_ESDHC_ADDR       IMX_MMC_SDHC1_BASE
85 #define CONFIG_SYS_FSL_ESDHC_NUM        1
86
87 /* PMIC Configs */
88 #define CONFIG_POWER
89 #define CONFIG_POWER_I2C
90 #define CONFIG_POWER_FSL
91 #define CONFIG_POWER_FSL_MC34704
92 #define CONFIG_SYS_FSL_PMIC_I2C_ADDR    0x54
93
94 /* I2C Configs */
95 #define CONFIG_SYS_I2C
96 #define CONFIG_SYS_I2C_MXC
97 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
98 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
99
100 /* RTC */
101 #define CONFIG_RTC_IMXDI
102
103 /* Fuse API support */
104 #define CONFIG_FSL_IIM
105 #define CONFIG_CMD_FUSE
106
107 /* Ethernet Configs */
108
109
110 #define CONFIG_LOADADDR         0x81000000      /* loadaddr env var */
111 #define CONFIG_SYS_LOAD_ADDR    CONFIG_LOADADDR
112
113 #define CONFIG_EXTRA_ENV_SETTINGS \
114         "script=boot.scr\0" \
115         "image=zImage\0" \
116         "console=ttymxc0\0" \
117         "splashpos=m,m\0" \
118         "fdt_high=0xffffffff\0" \
119         "initrd_high=0xffffffff\0" \
120         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
121         "fdt_addr=0x82000000\0" \
122         "boot_fdt=try\0" \
123         "ip_dyn=yes\0" \
124         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
125         "mmcpart=1\0" \
126         "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
127         "update_sd_firmware_filename=u-boot.imx\0" \
128         "update_sd_firmware=" \
129                 "if test ${ip_dyn} = yes; then " \
130                         "setenv get_cmd dhcp; " \
131                 "else " \
132                         "setenv get_cmd tftp; " \
133                 "fi; " \
134                 "if mmc dev ${mmcdev}; then "   \
135                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
136                                 "setexpr fw_sz ${filesize} / 0x200; " \
137                                 "setexpr fw_sz ${fw_sz} + 1; "  \
138                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
139                         "fi; "  \
140                 "fi\0" \
141         "mmcargs=setenv bootargs console=${console},${baudrate} " \
142                 "root=${mmcroot}\0" \
143         "loadbootscript=" \
144                 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
145         "bootscript=echo Running bootscript from mmc ...; " \
146                 "source\0" \
147         "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
148         "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
149         "mmcboot=echo Booting from mmc ...; " \
150                 "run mmcargs; " \
151                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
152                         "if run loadfdt; then " \
153                                 "bootz ${loadaddr} - ${fdt_addr}; " \
154                         "else " \
155                                 "if test ${boot_fdt} = try; then " \
156                                         "bootz; " \
157                                 "else " \
158                                         "echo WARN: Cannot load the DT; " \
159                                 "fi; " \
160                         "fi; " \
161                 "else " \
162                         "bootz; " \
163                 "fi;\0" \
164         "netargs=setenv bootargs console=${console},${baudrate} " \
165                 "root=/dev/nfs " \
166         "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
167                 "netboot=echo Booting from net ...; " \
168                 "run netargs; " \
169                 "if test ${ip_dyn} = yes; then " \
170                         "setenv get_cmd dhcp; " \
171                 "else " \
172                         "setenv get_cmd tftp; " \
173                 "fi; " \
174                 "${get_cmd} ${image}; " \
175                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
176                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
177                                 "bootz ${loadaddr} - ${fdt_addr}; " \
178                         "else " \
179                                 "if test ${boot_fdt} = try; then " \
180                                         "bootz; " \
181                                 "else " \
182                                         "echo WARN: Cannot load the DT; " \
183                                 "fi; " \
184                         "fi; " \
185                 "else " \
186                         "bootz; " \
187                 "fi;\0"
188
189 #define CONFIG_BOOTCOMMAND \
190            "mmc dev ${mmcdev}; if mmc rescan; then " \
191                    "if run loadbootscript; then " \
192                            "run bootscript; " \
193                    "else " \
194                            "if run loadimage; then " \
195                                    "run mmcboot; " \
196                            "else run netboot; " \
197                            "fi; " \
198                    "fi; " \
199            "else run netboot; fi"
200
201 /* Miscellaneous configurable options */
202 #define CONFIG_SYS_LONGHELP
203 #define CONFIG_AUTO_COMPLETE
204
205 #endif /* __CONFIG_H */