]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/mx25pdk.h
4cee64da9623545ba98d5c9fa24a11985896d8ff
[people/ms/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_ENV_IS_IN_MMC
62 #define CONFIG_SYS_MMC_ENV_DEV 0
63
64 /* U-Boot general configuration */
65 #define CONFIG_AUTO_COMPLETE
66 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
67 /* Print buffer sz */
68 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
69 sizeof(CONFIG_SYS_PROMPT) + 16)
70 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
71 /* Boot Argument Buffer Size */
72 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
73 #define CONFIG_CMDLINE_EDITING
74 #define CONFIG_SYS_LONGHELP
75
76 /* U-Boot commands */
77
78 /* Ethernet */
79 #define CONFIG_FEC_MXC
80 #define CONFIG_FEC_MXC_PHYADDR 0x1f
81 #define CONFIG_MII
82 #define CONFIG_ENV_OVERWRITE
83
84 /* ESDHC driver */
85 #define CONFIG_FSL_ESDHC
86 #define CONFIG_SYS_FSL_ESDHC_ADDR IMX_MMC_SDHC1_BASE
87 #define CONFIG_SYS_FSL_ESDHC_NUM 1
88
89 /* PMIC Configs */
90 #define CONFIG_POWER
91 #define CONFIG_POWER_I2C
92 #define CONFIG_POWER_FSL
93 #define CONFIG_POWER_FSL_MC34704
94 #define CONFIG_SYS_FSL_PMIC_I2C_ADDR 0x54
95
96 /* I2C Configs */
97 #define CONFIG_SYS_I2C
98 #define CONFIG_SYS_I2C_MXC
99 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
100 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
101
102 /* RTC */
103 #define CONFIG_RTC_IMXDI
104 #define CONFIG_CMD_DATE
105
106 /* Ethernet Configs */
107
108
109 #define CONFIG_LOADADDR 0x81000000 /* loadaddr env var */
110 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
111
112 #define CONFIG_EXTRA_ENV_SETTINGS \
113 "script=boot.scr\0" \
114 "image=zImage\0" \
115 "console=ttymxc0\0" \
116 "splashpos=m,m\0" \
117 "fdt_high=0xffffffff\0" \
118 "initrd_high=0xffffffff\0" \
119 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
120 "fdt_addr=0x82000000\0" \
121 "boot_fdt=try\0" \
122 "ip_dyn=yes\0" \
123 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
124 "mmcpart=1\0" \
125 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
126 "update_sd_firmware_filename=u-boot.imx\0" \
127 "update_sd_firmware=" \
128 "if test ${ip_dyn} = yes; then " \
129 "setenv get_cmd dhcp; " \
130 "else " \
131 "setenv get_cmd tftp; " \
132 "fi; " \
133 "if mmc dev ${mmcdev}; then " \
134 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
135 "setexpr fw_sz ${filesize} / 0x200; " \
136 "setexpr fw_sz ${fw_sz} + 1; " \
137 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
138 "fi; " \
139 "fi\0" \
140 "mmcargs=setenv bootargs console=${console},${baudrate} " \
141 "root=${mmcroot}\0" \
142 "loadbootscript=" \
143 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
144 "bootscript=echo Running bootscript from mmc ...; " \
145 "source\0" \
146 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
147 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
148 "mmcboot=echo Booting from mmc ...; " \
149 "run mmcargs; " \
150 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
151 "if run loadfdt; then " \
152 "bootz ${loadaddr} - ${fdt_addr}; " \
153 "else " \
154 "if test ${boot_fdt} = try; then " \
155 "bootz; " \
156 "else " \
157 "echo WARN: Cannot load the DT; " \
158 "fi; " \
159 "fi; " \
160 "else " \
161 "bootz; " \
162 "fi;\0" \
163 "netargs=setenv bootargs console=${console},${baudrate} " \
164 "root=/dev/nfs " \
165 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
166 "netboot=echo Booting from net ...; " \
167 "run netargs; " \
168 "if test ${ip_dyn} = yes; then " \
169 "setenv get_cmd dhcp; " \
170 "else " \
171 "setenv get_cmd tftp; " \
172 "fi; " \
173 "${get_cmd} ${image}; " \
174 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
175 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
176 "bootz ${loadaddr} - ${fdt_addr}; " \
177 "else " \
178 "if test ${boot_fdt} = try; then " \
179 "bootz; " \
180 "else " \
181 "echo WARN: Cannot load the DT; " \
182 "fi; " \
183 "fi; " \
184 "else " \
185 "bootz; " \
186 "fi;\0"
187
188 #define CONFIG_BOOTCOMMAND \
189 "mmc dev ${mmcdev}; if mmc rescan; then " \
190 "if run loadbootscript; then " \
191 "run bootscript; " \
192 "else " \
193 "if run loadimage; then " \
194 "run mmcboot; " \
195 "else run netboot; " \
196 "fi; " \
197 "fi; " \
198 "else run netboot; fi"
199
200 /* Miscellaneous configurable options */
201 #define CONFIG_SYS_LONGHELP
202 #define CONFIG_AUTO_COMPLETE
203
204 #define CONFIG_SYS_MAXARGS 16
205 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
206
207 #endif /* __CONFIG_H */