blob: a9caa814d5a7609c1a00bd92fb5fb4986caa1ccc [file] [log] [blame]
Stefano Babic649a33e2010-11-30 11:46:56 -05001/*
2 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * Based on davinci_dvevm.h. Original Copyrights follow:
5 *
6 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#ifndef __CONFIG_H
24#define __CONFIG_H
25
26/*
27 * Board
28 */
29#define CONFIG_DRIVER_TI_EMAC
30#define CONFIG_USE_SPIFLASH
Stefano Babic17a89042011-10-04 23:43:30 +000031#define CONFIG_SYS_USE_NAND
Stefano Babic649a33e2010-11-30 11:46:56 -050032#define CONFIG_DRIVER_TI_EMAC_USE_RMII
Stefano Babic2084f212011-10-04 23:43:32 +000033#define CONFIG_BOARD_EARLY_INIT_F
Nobuhiro Iwamatsu2d594fd2012-04-17 16:41:54 +000034#define CONFIG_BOARD_LATE_INIT
Stefano Babic3c891012011-10-04 23:43:37 +000035#define CONFIG_VIDEO
Stefano Babic92e86c82011-10-04 23:43:39 +000036#define CONFIG_PREBOOT
Stefano Babic649a33e2010-11-30 11:46:56 -050037
38/*
39 * SoC Configuration
40 */
41#define CONFIG_MACH_DAVINCI_DA850_EVM
42#define CONFIG_ARM926EJS /* arm926ejs CPU core */
43#define CONFIG_SOC_DA8XX /* TI DA8xx SoC */
44#define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
45#define CONFIG_SYS_OSCIN_FREQ 24000000
46#define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
47#define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
48#define CONFIG_SYS_HZ 1000
49#define CONFIG_SKIP_LOWLEVEL_INIT
50#define CONFIG_SYS_TEXT_BASE 0xc1080000
Stefano Babic1441aa62011-10-05 03:08:24 +000051#define CONFIG_DA8XX_GPIO
Stefano Babic649a33e2010-11-30 11:46:56 -050052
53/*
54 * Memory Info
55 */
Stefano Babic3c891012011-10-04 23:43:37 +000056#define CONFIG_SYS_MALLOC_LEN (0x10000 + 4*1024*1024) /* malloc() len */
Stefano Babic649a33e2010-11-30 11:46:56 -050057#define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
58#define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
59#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
60
61/* memtest start addr */
62#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + 0x2000000)
63
64/* memtest will be run on 16MB */
65#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
66
67#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
68#define CONFIG_STACKSIZE (256*1024) /* regular stack */
69
70/*
71 * Serial Driver info
72 */
73#define CONFIG_SYS_NS16550
74#define CONFIG_SYS_NS16550_SERIAL
75#define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size */
Bastian Ruppertf9fc2372011-10-04 23:43:28 +000076#define CONFIG_SYS_NS16550_COM1 DAVINCI_UART0_BASE /* Base address of UART0 */
Stefano Babic649a33e2010-11-30 11:46:56 -050077#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
78#define CONFIG_CONS_INDEX 1 /* use UART0 for console */
79#define CONFIG_BAUDRATE 115200 /* Default baud rate */
Stefano Babic649a33e2010-11-30 11:46:56 -050080
81#define CONFIG_SPI
82#define CONFIG_SPI_FLASH
83#define CONFIG_SPI_FLASH_STMICRO
84#define CONFIG_DAVINCI_SPI
85#define CONFIG_SYS_SPI_BASE DAVINCI_SPI1_BASE
86#define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI1_CLKID)
87#define CONFIG_SF_DEFAULT_SPEED 30000000
88#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
89
90/*
Stefano Babic42059872011-10-04 23:43:38 +000091 * I2C Configuration
92 */
93#define CONFIG_HARD_I2C
94#define CONFIG_DRIVER_DAVINCI_I2C
95#define CONFIG_SYS_I2C_SPEED 100000
96
97/*
Stefano Babic649a33e2010-11-30 11:46:56 -050098 * Network & Ethernet Configuration
99 */
100#ifdef CONFIG_DRIVER_TI_EMAC
Stefano Babic649a33e2010-11-30 11:46:56 -0500101#define CONFIG_MII
102#define CONFIG_BOOTP_DEFAULT
103#define CONFIG_BOOTP_DNS
104#define CONFIG_BOOTP_DNS2
105#define CONFIG_BOOTP_SEND_HOSTNAME
106#define CONFIG_NET_RETRY_COUNT 10
Stefano Babic649a33e2010-11-30 11:46:56 -0500107#endif
108
109#ifdef CONFIG_USE_SPIFLASH
110#undef CONFIG_ENV_IS_IN_FLASH
111#undef CONFIG_ENV_IS_IN_NAND
112#define CONFIG_ENV_IS_IN_SPI_FLASH
113#define CONFIG_ENV_SIZE (8 << 10)
Stefano Babic17a89042011-10-04 23:43:30 +0000114#define CONFIG_ENV_OFFSET 0x80000
Stefano Babic649a33e2010-11-30 11:46:56 -0500115#define CONFIG_ENV_SECT_SIZE (64 << 10)
116#define CONFIG_SYS_NO_FLASH
117#endif
118
Stefano Babic3c891012011-10-04 23:43:37 +0000119
120#if defined(CONFIG_VIDEO)
121#define CONFIG_VIDEO_DA8XX
122#define CONFIG_CFB_CONSOLE
123#define CONFIG_VGA_AS_SINGLE_DEVICE
124#define CONFIG_SPLASH_SCREEN
125#define CONFIG_VIDEO_LOGO
126#define CONFIG_VIDEO_BMP_RLE8
127#define CONFIG_CMD_BMP
128#endif
129
Stefano Babic649a33e2010-11-30 11:46:56 -0500130/*
131 * U-Boot general configuration
132 */
133#define CONFIG_BOOTFILE "uImage" /* Boot file name */
134#define CONFIG_SYS_PROMPT "ea20 > " /* Command Prompt */
135#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
136#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
137#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
138#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
139#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
140#define CONFIG_VERSION_VARIABLE
141#define CONFIG_AUTO_COMPLETE
142#define CONFIG_SYS_HUSH_PARSER
Stefano Babic649a33e2010-11-30 11:46:56 -0500143#define CONFIG_CMDLINE_EDITING
144#define CONFIG_SYS_LONGHELP
145#define CONFIG_CRC32_VERIFY
146#define CONFIG_MX_CYCLIC
147
148/*
149 * Linux Information
150 */
151#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
152#define CONFIG_CMDLINE_TAG
153#define CONFIG_SETUP_MEMORY_TAGS
154#define CONFIG_BOOTDELAY 3
155
156/*
157 * U-Boot commands
158 */
159#include <config_cmd_default.h>
160#define CONFIG_CMD_ENV
161#define CONFIG_CMD_ASKENV
162#define CONFIG_CMD_DHCP
163#define CONFIG_CMD_DIAG
164#define CONFIG_CMD_MII
165#define CONFIG_CMD_PING
166#define CONFIG_CMD_SAVES
167#define CONFIG_CMD_MEMORY
Stefano Babic42059872011-10-04 23:43:38 +0000168#define CONFIG_CMD_I2C
Stefano Babic1441aa62011-10-05 03:08:24 +0000169#define CONFIG_CMD_GPIO
Stefano Babic649a33e2010-11-30 11:46:56 -0500170
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000171#ifdef CONFIG_CMD_BDI
172#define CONFIG_CLOCKS
173#endif
174
Stefano Babic649a33e2010-11-30 11:46:56 -0500175#ifndef CONFIG_DRIVER_TI_EMAC
176#undef CONFIG_CMD_NET
177#undef CONFIG_CMD_DHCP
178#undef CONFIG_CMD_MII
179#undef CONFIG_CMD_PING
180#endif
181
Stefano Babic17a89042011-10-04 23:43:30 +0000182/* NAND Setup */
183#ifdef CONFIG_SYS_USE_NAND
Stefano Babic649a33e2010-11-30 11:46:56 -0500184#undef CONFIG_CMD_FLASH
185#undef CONFIG_CMD_IMLS
186#define CONFIG_CMD_NAND
187
188#define CONFIG_CMD_MTDPARTS
189#define CONFIG_MTD_DEVICE
190#define CONFIG_MTD_PARTITIONS
191#define CONFIG_LZO
192#define CONFIG_RBTREE
193#define CONFIG_CMD_UBI
194#define CONFIG_CMD_UBIFS
Stefano Babic17a89042011-10-04 23:43:30 +0000195
196#define CONFIG_NAND_DAVINCI
197#define CONFIG_SYS_NAND_PAGE_2K
198#define CONFIG_SYS_NAND_CS 2
199#define CONFIG_SYS_NAND_BASE DAVINCI_ASYNC_EMIF_DATA_CE2_BASE
200#undef CONFIG_SYS_NAND_HW_ECC
201#define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
202#define CONFIG_SYS_NAND_USE_FLASH_BBT
203#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */
Stefano Babic649a33e2010-11-30 11:46:56 -0500204#endif
205
Stefano Babic17a89042011-10-04 23:43:30 +0000206/* SPI Flash */
Stefano Babic649a33e2010-11-30 11:46:56 -0500207#ifdef CONFIG_USE_SPIFLASH
208#undef CONFIG_CMD_IMLS
209#undef CONFIG_CMD_FLASH
210#define CONFIG_CMD_SPI
211#define CONFIG_CMD_SF
212#define CONFIG_CMD_SAVEENV
213#endif
214
Stefano Babic17a89042011-10-04 23:43:30 +0000215#if !defined(CONFIG_SYS_USE_NAND) && \
Stefano Babic649a33e2010-11-30 11:46:56 -0500216 !defined(CONFIG_USE_NOR) && \
217 !defined(CONFIG_USE_SPIFLASH)
218#define CONFIG_ENV_IS_NOWHERE
219#define CONFIG_SYS_NO_FLASH
220#define CONFIG_ENV_SIZE (16 << 10)
221#undef CONFIG_CMD_IMLS
222#undef CONFIG_CMD_ENV
223#endif
224
225/* additions for new relocation code, must added to all boards */
226#define CONFIG_SYS_SDRAM_BASE 0xc0000000
227#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
228 GENERATED_GBL_DATA_SIZE)
Stefano Babic2084f212011-10-04 23:43:32 +0000229/*
230 * Default environment and default scripts
231 * to update uboot and load kernel
232 */
233#define xstr(s) str(s)
234#define str(s) #s
235
236
237#define CONFIG_HOSTNAME ea20
238#define CONFIG_EXTRA_ENV_SETTINGS \
239 "as=3\0" \
240 "netdev=eth0\0" \
241 "nfsargs=setenv bootargs root=/dev/nfs rw " \
242 "nfsroot=${serverip}:${rootpath}\0" \
243 "rfsbargs=setenv bootargs root=/dev/nfs rw " \
244 "nfsroot=${serverip}:${rfsbpath}\0" \
245 "ramargs=setenv bootargs root=/dev/ram rw\0" \
246 "mtdids=nand0=davinci_nand.0\0" \
247 "mtdparts=mtdparts=davinci_nand.0:8m(Settings),8m(aKernel)," \
248 "8m(bKernel),76m(aRootfs),76m(bRootfs),-(MassSD)\0" \
249 "nandargs=setenv bootargs rootfstype=ubifs ro chk_data_crc " \
250 "ubi.mtd=${as} root=ubi0:rootfs\0" \
251 "addip_sta=setenv bootargs ${bootargs} " \
252 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
253 ":${hostname}:${netdev}:off panic=1\0" \
254 "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0" \
255 "addip=if test -n ${ipdyn};then run addip_dyn;" \
256 "else run addip_sta;fi\0" \
257 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
258 "addtty=setenv bootargs ${bootargs}" \
259 " console=${consoledev},${baudrate}n8\0" \
260 "addmisc=setenv bootargs ${bootargs} ${misc}\0" \
261 "addmem=setenv bootargs ${bootargs} mem=${memory}\0" \
262 "consoledev=ttyS0\0" \
263 "loadaddr=c0000014\0" \
264 "memory=32M\0" \
265 "kernel_addr_r=c0700000\0" \
266 "hostname=" xstr(CONFIG_HOSTNAME) "\0" \
267 "bootfile=" xstr(CONFIG_HOSTNAME) "/uImage\0" \
268 "ramdisk_file=" xstr(CONFIG_HOSTNAME) "/uRamdisk\0" \
269 "flash_self=run ramargs addip addtty addmtd addmisc addmem;" \
270 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
271 "flash_nfs=run nfsargs addip addtty addmtd addmisc addmem;" \
272 "bootm ${kernel_addr}\0" \
273 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
274 "run nfsargs addip addtty addmtd addmisc addmem;" \
275 "bootm ${kernel_addr_r}\0" \
276 "net_rfsb=tftp ${kernel_addr_r} ${bootfile}; " \
277 "run rfsbargs addip addtty addmtd addmisc addmem; " \
278 "bootm ${kernel_addr_r}\0" \
279 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
280 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
281 "nand_nand=ubi part nand0,${as};ubifsmount rootfs;" \
282 "ubifsload ${kernel_addr_r} /boot/uImage;" \
283 "ubifsumount; run nandargs addip addtty " \
284 "addmtd addmisc addmem;bootm ${kernel_addr_r}\0" \
285 "u-boot=" xstr(CONFIG_HOSTNAME) "/u-boot.bin\0" \
286 "load_magic=if sf probe 0;then sf " \
287 "read c0000000 0x10000 0x60000;fi\0" \
288 "load_nand=ubi part nand0,${as};ubifsmount rootfs;" \
289 "if ubifsload c0000014 /boot/u-boot.bin;" \
290 "then mw c0000008 ${filesize};else echo Error reading " \
291 "u-boot from nand!;fi\0" \
292 "load_net=if sf probe 0;then sf read c0000000 0x10000 0x60000;" \
293 "tftp c0000014 ${u-boot};" \
294 "mw c0000008 ${filesize};" \
295 "fi\0" \
296 "upd=if sf probe 0;then sf erase 10000 60000;" \
297 "sf write c0000000 10000 60000;" \
298 "fi\0" \
299 "ubootupd_net=if run load_net;then echo Updating u-boot;" \
300 "if run upd; then echo U-Boot updated;" \
301 "else echo Error updating u-boot !;" \
302 "echo Board without bootloader !!;" \
303 "fi;" \
304 "else echo U-Boot not downloaded..exiting;fi\0" \
305 "ubootupd_nand=echo run load_magic,run load_nand,run upd;\0" \
306 "bootcmd=run net_nfs\0"
307
Stefano Babic649a33e2010-11-30 11:46:56 -0500308#endif /* __CONFIG_H */