Merge git://git.denx.de/u-boot-net
[oweals/u-boot.git] / include / configs / mx51evk.h
1 /*
2  * Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
3  *
4  * (C) Copyright 2009 Freescale Semiconductor, Inc.
5  *
6  * Configuration settings for the MX51EVK Board
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14  /* High Level Configuration Options */
15
16 #define CONFIG_SYS_FSL_CLK
17 #define CONFIG_SYS_TEXT_BASE    0x97800000
18
19 #include <asm/arch/imx-regs.h>
20
21 #define CONFIG_CMDLINE_TAG                      /* enable passing of ATAGs */
22 #define CONFIG_SETUP_MEMORY_TAGS
23 #define CONFIG_INITRD_TAG
24 #define CONFIG_REVISION_TAG
25
26 #define CONFIG_MACH_TYPE        MACH_TYPE_MX51_BABBAGE
27 /*
28  * Size of malloc() pool
29  */
30 #define CONFIG_SYS_MALLOC_LEN           (10 * 1024 * 1024)
31
32 /*
33  * Hardware drivers
34  */
35 #define CONFIG_FSL_IIM
36
37 #define CONFIG_MXC_UART
38 #define CONFIG_MXC_UART_BASE    UART1_BASE
39 #define CONFIG_MXC_GPIO
40
41 /*
42  * SPI Configs
43  * */
44
45 #define CONFIG_MXC_SPI
46
47 /* PMIC Controller */
48 #define CONFIG_POWER
49 #define CONFIG_POWER_SPI
50 #define CONFIG_POWER_FSL
51 #define CONFIG_FSL_PMIC_BUS     0
52 #define CONFIG_FSL_PMIC_CS      0
53 #define CONFIG_FSL_PMIC_CLK     2500000
54 #define CONFIG_FSL_PMIC_MODE    (SPI_MODE_0 | SPI_CS_HIGH)
55 #define CONFIG_FSL_PMIC_BITLEN  32
56 #define CONFIG_RTC_MC13XXX
57
58 /*
59  * MMC Configs
60  * */
61 #define CONFIG_FSL_ESDHC
62 #define CONFIG_SYS_FSL_ESDHC_ADDR       MMC_SDHC1_BASE_ADDR
63 #define CONFIG_SYS_FSL_ESDHC_NUM        2
64
65 /*
66  * Eth Configs
67  */
68 #define CONFIG_MII
69
70 #define CONFIG_FEC_MXC
71 #define IMX_FEC_BASE    FEC_BASE_ADDR
72 #define CONFIG_FEC_MXC_PHYADDR  0x1F
73
74 /* USB Configs */
75 #define CONFIG_USB_EHCI_MX5
76 #define CONFIG_USB_HOST_ETHER
77 #define CONFIG_USB_ETHER_ASIX
78 #define CONFIG_USB_ETHER_SMSC95XX
79 #define CONFIG_MXC_USB_PORT     1
80 #define CONFIG_MXC_USB_PORTSC   PORT_PTS_ULPI
81 #define CONFIG_MXC_USB_FLAGS    MXC_EHCI_POWER_PINS_ENABLED
82
83 /* Framebuffer and LCD */
84 #define CONFIG_PREBOOT
85 #define CONFIG_VIDEO_IPUV3
86 #define CONFIG_VIDEO_BMP_RLE8
87 #define CONFIG_SPLASH_SCREEN
88 #define CONFIG_BMP_16BPP
89 #define CONFIG_VIDEO_LOGO
90 #define CONFIG_IPUV3_CLK        133000000
91
92 /* allow to overwrite serial and ethaddr */
93 #define CONFIG_ENV_OVERWRITE
94 #define CONFIG_CONS_INDEX               1
95
96 #define CONFIG_ETHPRIME         "FEC0"
97
98 #define CONFIG_LOADADDR         0x92000000      /* loadaddr env var */
99
100 #define CONFIG_EXTRA_ENV_SETTINGS \
101         "script=boot.scr\0" \
102         "image=zImage\0" \
103         "fdt_file=imx51-babbage.dtb\0" \
104         "fdt_addr=0x91000000\0" \
105         "boot_fdt=try\0" \
106         "ip_dyn=yes\0" \
107         "mmcdev=0\0" \
108         "mmcpart=1\0" \
109         "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
110         "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \
111                 "root=${mmcroot}\0" \
112         "loadbootscript=" \
113                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
114         "bootscript=echo Running bootscript from mmc ...; " \
115                 "source\0" \
116         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
117         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
118         "mmcboot=echo Booting from mmc ...; " \
119                 "run mmcargs; " \
120                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
121                         "if run loadfdt; then " \
122                                 "bootz ${loadaddr} - ${fdt_addr}; " \
123                         "else " \
124                                 "if test ${boot_fdt} = try; then " \
125                                         "bootz; " \
126                                 "else " \
127                                         "echo WARN: Cannot load the DT; " \
128                                 "fi; " \
129                         "fi; " \
130                 "else " \
131                         "bootz; " \
132                 "fi;\0" \
133         "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
134                 "root=/dev/nfs " \
135                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
136         "netboot=echo Booting from net ...; " \
137                 "run netargs; " \
138                 "if test ${ip_dyn} = yes; then " \
139                         "setenv get_cmd dhcp; " \
140                 "else " \
141                         "setenv get_cmd tftp; " \
142                 "fi; " \
143                 "${get_cmd} ${image}; " \
144                 "if test ${boot_fdt} = yes ||  test ${boot_fdt} = try; then " \
145                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
146                                 "bootz ${loadaddr} - ${fdt_addr}; " \
147                         "else " \
148                                 "if test ${boot_fdt} = try; then " \
149                                         "bootz; " \
150                                 "else " \
151                                         "echo ERROR: Cannot load the DT; " \
152                                         "exit; " \
153                                 "fi; " \
154                         "fi; " \
155                 "else " \
156                         "bootz; " \
157                 "fi;\0"
158
159 #define CONFIG_BOOTCOMMAND \
160         "mmc dev ${mmcdev}; if mmc rescan; then " \
161                 "if run loadbootscript; then " \
162                         "run bootscript; " \
163                 "else " \
164                         "if run loadimage; then " \
165                                 "run mmcboot; " \
166                         "else run netboot; " \
167                         "fi; " \
168                 "fi; " \
169         "else run netboot; fi"
170
171 #define CONFIG_ARP_TIMEOUT      200UL
172
173 /*
174  * Miscellaneous configurable options
175  */
176 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
177 #define CONFIG_AUTO_COMPLETE
178 #define CONFIG_SYS_CBSIZE               256     /* Console I/O Buffer Size */
179 #define CONFIG_SYS_MAXARGS      16      /* max number of command args */
180 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
181
182 #define CONFIG_SYS_MEMTEST_START       0x90000000
183 #define CONFIG_SYS_MEMTEST_END         0x90010000
184
185 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
186
187 #define CONFIG_CMDLINE_EDITING
188
189 /*-----------------------------------------------------------------------
190  * Physical Memory Map
191  */
192 #define CONFIG_NR_DRAM_BANKS    1
193 #define PHYS_SDRAM_1            CSD0_BASE_ADDR
194 #define PHYS_SDRAM_1_SIZE       (512 * 1024 * 1024)
195
196 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
197 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
198 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
199
200 #define CONFIG_SYS_INIT_SP_OFFSET \
201         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
202 #define CONFIG_SYS_INIT_SP_ADDR \
203         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
204
205 #define CONFIG_SYS_DDR_CLKSEL   0
206 #define CONFIG_SYS_CLKTL_CBCDR  0x59E35100
207 #define CONFIG_SYS_MAIN_PWR_ON
208
209 /*-----------------------------------------------------------------------
210  * environment organization
211  */
212 #define CONFIG_ENV_OFFSET      (6 * 64 * 1024)
213 #define CONFIG_ENV_SIZE        (8 * 1024)
214 #define CONFIG_ENV_IS_IN_MMC
215 #define CONFIG_SYS_MMC_ENV_DEV 0
216
217 #endif