]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/mx53ard.h
Merge tag 'xilinx-fixes-for-v2017.03' of git://www.denx.de/git/u-boot-microblaze
[people/ms/u-boot.git] / include / configs / mx53ard.h
CommitLineData
47c3e074
FE
1/*
2 * Copyright (C) 2011 Freescale Semiconductor, Inc.
3 *
4 * Configuration settings for the MX53ARD Freescale board.
5 *
3765b3e7 6 * SPDX-License-Identifier: GPL-2.0+
47c3e074
FE
7 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
12#define CONFIG_MX53
13
7c2eabab
FE
14#define CONFIG_MACH_TYPE MACH_TYPE_MX53_ARD
15
47c3e074
FE
16#include <asm/arch/imx-regs.h>
17
18#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
47c3e074
FE
19#define CONFIG_SETUP_MEMORY_TAGS
20#define CONFIG_INITRD_TAG
fd622f23 21#define CONFIG_REVISION_TAG
47c3e074 22
18fb0e3c 23#define CONFIG_SYS_FSL_CLK
4677b1b6 24
47c3e074
FE
25/* Size of malloc() pool */
26#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
27
47c3e074
FE
28#define CONFIG_MXC_GPIO
29
68fbc0e6
BT
30#define CONFIG_SYS_MAX_NAND_DEVICE 1
31#define CONFIG_SYS_NAND_BASE NFC_BASE_ADDR_AXI
32#define CONFIG_NAND_MXC
33#define CONFIG_MXC_NAND_REGS_BASE NFC_BASE_ADDR_AXI
34#define CONFIG_MXC_NAND_IP_REGS_BASE NFC_BASE_ADDR
35#define CONFIG_SYS_NAND_LARGEPAGE
36#define CONFIG_MXC_NAND_HWECC
37#define CONFIG_SYS_NAND_USE_FLASH_BBT
38#define CONFIG_CMD_NAND
39
47c3e074 40#define CONFIG_MXC_UART
40f6fffe 41#define CONFIG_MXC_UART_BASE UART1_BASE
47c3e074
FE
42
43/* I2C Configs */
b089d039 44#define CONFIG_SYS_I2C
45#define CONFIG_SYS_I2C_MXC
03544c66
AA
46#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
47#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
f8cb101e 48#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
47c3e074
FE
49
50/* MMC Configs */
51#define CONFIG_FSL_ESDHC
52#define CONFIG_SYS_FSL_ESDHC_ADDR 0
53#define CONFIG_SYS_FSL_ESDHC_NUM 2
54
47c3e074
FE
55/* Eth Configs */
56#define CONFIG_HAS_ETH1
47c3e074 57#define CONFIG_MII
47c3e074 58
47c3e074
FE
59/* allow to overwrite serial and ethaddr */
60#define CONFIG_ENV_OVERWRITE
61#define CONFIG_CONS_INDEX 1
62#define CONFIG_BAUDRATE 115200
47c3e074
FE
63
64/* Command definition */
47c3e074 65
28b119e9 66#define CONFIG_ETHPRIME "smc911x"
47c3e074
FE
67
68/*Support LAN9217*/
69#define CONFIG_SMC911X
70#define CONFIG_SMC911X_16_BIT
71#define CONFIG_SMC911X_BASE CS1_BASE_ADDR
72
547e31d2 73#define CONFIG_LOADADDR 0x72000000 /* loadaddr env var */
47c3e074
FE
74#define CONFIG_SYS_TEXT_BASE 0x77800000
75
76#define CONFIG_EXTRA_ENV_SETTINGS \
77 "script=boot.scr\0" \
3c525ecf 78 "uimage=zImage\0" \
547e31d2
OS
79 "console=ttymxc0\0" \
80 "fdt_high=0xffffffff\0" \
81 "initrd_high=0xffffffff\0" \
82 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
3c525ecf 83 "fdt_addr=0x78000000\0" \
547e31d2
OS
84 "boot_fdt=try\0" \
85 "ip_dyn=yes\0" \
86 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
a3f170cd
OS
87 "mmcpart=1\0" \
88 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
547e31d2
OS
89 "update_sd_firmware_filename=u-boot.imx\0" \
90 "update_sd_firmware=" \
91 "if test ${ip_dyn} = yes; then " \
92 "setenv get_cmd dhcp; " \
93 "else " \
94 "setenv get_cmd tftp; " \
95 "fi; " \
96 "if mmc dev ${mmcdev}; then " \
97 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
98 "setexpr fw_sz ${filesize} / 0x200; " \
99 "setexpr fw_sz ${fw_sz} + 1; " \
100 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
101 "fi; " \
102 "fi\0" \
103 "mmcargs=setenv bootargs console=${console},${baudrate} " \
104 "root=${mmcroot}\0" \
47c3e074
FE
105 "loadbootscript=" \
106 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
107 "bootscript=echo Running bootscript from mmc ...; " \
108 "source\0" \
109 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
547e31d2 110 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
47c3e074
FE
111 "mmcboot=echo Booting from mmc ...; " \
112 "run mmcargs; " \
547e31d2
OS
113 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
114 "if run loadfdt; then " \
3c525ecf 115 "bootz ${loadaddr} - ${fdt_addr}; " \
547e31d2
OS
116 "else " \
117 "if test ${boot_fdt} = try; then " \
3c525ecf 118 "bootz; " \
547e31d2
OS
119 "else " \
120 "echo WARN: Cannot load the DT; " \
121 "fi; " \
122 "fi; " \
123 "else " \
3c525ecf 124 "bootz; " \
547e31d2
OS
125 "fi;\0" \
126 "netargs=setenv bootargs console=${console},${baudrate} " \
47c3e074 127 "root=/dev/nfs " \
547e31d2
OS
128 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
129 "netboot=echo Booting from net ...; " \
47c3e074 130 "run netargs; " \
547e31d2
OS
131 "if test ${ip_dyn} = yes; then " \
132 "setenv get_cmd dhcp; " \
47c3e074 133 "else " \
547e31d2 134 "setenv get_cmd tftp; " \
47c3e074 135 "fi; " \
547e31d2
OS
136 "${get_cmd} ${uimage}; " \
137 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
138 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
3c525ecf 139 "bootz ${loadaddr} - ${fdt_addr}; " \
547e31d2
OS
140 "else " \
141 "if test ${boot_fdt} = try; then " \
3c525ecf 142 "bootz; " \
547e31d2
OS
143 "else " \
144 "echo WARN: Cannot load the DT; " \
145 "fi; " \
146 "fi; " \
147 "else " \
3c525ecf 148 "bootz; " \
547e31d2
OS
149 "fi;\0"
150
151#define CONFIG_BOOTCOMMAND \
152 "mmc dev ${mmcdev}; if mmc rescan; then " \
153 "if run loadbootscript; then " \
154 "run bootscript; " \
155 "else " \
156 "if run loaduimage; then " \
157 "run mmcboot; " \
158 "else run netboot; " \
159 "fi; " \
160 "fi; " \
161 "else run netboot; fi"
162
47c3e074
FE
163#define CONFIG_ARP_TIMEOUT 200UL
164
165/* Miscellaneous configurable options */
166#define CONFIG_SYS_LONGHELP /* undef to save memory */
47c3e074
FE
167#define CONFIG_AUTO_COMPLETE
168#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
169
170/* Print Buffer Size */
171#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
172#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
173#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
174
175#define CONFIG_SYS_MEMTEST_START 0x70000000
176#define CONFIG_SYS_MEMTEST_END 0x70010000
177
178#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
179
47c3e074
FE
180#define CONFIG_CMDLINE_EDITING
181
47c3e074
FE
182/* Physical Memory Map */
183#define CONFIG_NR_DRAM_BANKS 2
184#define PHYS_SDRAM_1 CSD0_BASE_ADDR
185#define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024)
186#define PHYS_SDRAM_2 CSD1_BASE_ADDR
187#define PHYS_SDRAM_2_SIZE (512 * 1024 * 1024)
188#define PHYS_SDRAM_SIZE (PHYS_SDRAM_1_SIZE + PHYS_SDRAM_2_SIZE)
189
190#define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
191#define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
192#define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
193
194#define CONFIG_SYS_INIT_SP_OFFSET \
195 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
196#define CONFIG_SYS_INIT_SP_ADDR \
197 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
198
e856bdcf 199/* environment organization */
47c3e074
FE
200#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
201#define CONFIG_ENV_SIZE (8 * 1024)
202#define CONFIG_ENV_IS_IN_MMC
203#define CONFIG_SYS_MMC_ENV_DEV 0
204
47c3e074
FE
205#define MX53ARD_CS1GCR1 (CSEN | DSZ(2))
206#define MX53ARD_CS1RCR1 (RCSN(2) | OEN (1) | RWSC(22))
207#define MX53ARD_CS1RCR2 RBEN(2)
208#define MX53ARD_CS1WCR1 (WCSN(2) | WEN(2) | WBEN(2) | WWSC(22))
209
210#endif /* __CONFIG_H */