blob: 8319dc4d34156e57253126ed0a089e85692999aa [file] [log] [blame]
Stefano Babicf57fd342010-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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Stefano Babicf57fd342010-11-30 11:46:56 -05009 */
10
11#ifndef __CONFIG_H
12#define __CONFIG_H
13
14/*
15 * Board
16 */
17#define CONFIG_DRIVER_TI_EMAC
18#define CONFIG_USE_SPIFLASH
Stefano Babicc9ab5c02011-10-04 23:43:30 +000019#define CONFIG_SYS_USE_NAND
Stefano Babicf57fd342010-11-30 11:46:56 -050020#define CONFIG_DRIVER_TI_EMAC_USE_RMII
Bastian Ruppert29665cf2012-09-13 22:29:04 +000021#define CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE
Stefano Babic847b6902011-10-04 23:43:39 +000022#define CONFIG_PREBOOT
Stefano Babicf57fd342010-11-30 11:46:56 -050023
24/*
25 * SoC Configuration
26 */
27#define CONFIG_MACH_DAVINCI_DA850_EVM
Stefano Babicf57fd342010-11-30 11:46:56 -050028#define CONFIG_SOC_DA8XX /* TI DA8xx SoC */
Tomas Novotnye2095042013-02-01 06:44:06 +000029#define CONFIG_SOC_DA850 /* TI DA850 SoC */
Stefano Babicf57fd342010-11-30 11:46:56 -050030#define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
31#define CONFIG_SYS_OSCIN_FREQ 24000000
32#define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
33#define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
Stefano Babicf57fd342010-11-30 11:46:56 -050034#define CONFIG_SKIP_LOWLEVEL_INIT
35#define CONFIG_SYS_TEXT_BASE 0xc1080000
Stefano Babic562b7b92011-10-05 03:08:24 +000036#define CONFIG_DA8XX_GPIO
Stefano Babicf57fd342010-11-30 11:46:56 -050037
38/*
39 * Memory Info
40 */
Stefano Babic16f61842011-10-04 23:43:37 +000041#define CONFIG_SYS_MALLOC_LEN (0x10000 + 4*1024*1024) /* malloc() len */
Stefano Babicf57fd342010-11-30 11:46:56 -050042#define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
43#define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
44#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
45
46/* memtest start addr */
47#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + 0x2000000)
48
49/* memtest will be run on 16MB */
50#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
51
52#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
Stefano Babicf57fd342010-11-30 11:46:56 -050053
54/*
55 * Serial Driver info
56 */
Stefano Babicf57fd342010-11-30 11:46:56 -050057#define CONFIG_SYS_NS16550_SERIAL
58#define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size */
Bastian Rupperteb98e9d2011-10-04 23:43:28 +000059#define CONFIG_SYS_NS16550_COM1 DAVINCI_UART0_BASE /* Base address of UART0 */
Stefano Babicf57fd342010-11-30 11:46:56 -050060#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
61#define CONFIG_CONS_INDEX 1 /* use UART0 for console */
62#define CONFIG_BAUDRATE 115200 /* Default baud rate */
Stefano Babicf57fd342010-11-30 11:46:56 -050063
64#define CONFIG_SPI
Stefano Babicf57fd342010-11-30 11:46:56 -050065#define CONFIG_DAVINCI_SPI
66#define CONFIG_SYS_SPI_BASE DAVINCI_SPI1_BASE
67#define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI1_CLKID)
68#define CONFIG_SF_DEFAULT_SPEED 30000000
69#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
70
71/*
Stefano Babic0a00a172011-10-04 23:43:38 +000072 * I2C Configuration
73 */
Vitaly Andrianovbc9cd952014-04-04 13:16:52 -040074#define CONFIG_SYS_I2C
75#define CONFIG_SYS_I2C_DAVINCI
76#define CONFIG_SYS_DAVINCI_I2C_SPEED 100000
77#define CONFIG_SYS_DAVINCI_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
Stefano Babic0a00a172011-10-04 23:43:38 +000078
79/*
Stefano Babicf57fd342010-11-30 11:46:56 -050080 * Network & Ethernet Configuration
81 */
82#ifdef CONFIG_DRIVER_TI_EMAC
Bastian Ruppert29665cf2012-09-13 22:29:04 +000083#define CONFIG_EMAC_MDIO_PHY_NUM 0
Stefano Babicf57fd342010-11-30 11:46:56 -050084#define CONFIG_MII
Stefano Babicf57fd342010-11-30 11:46:56 -050085#define CONFIG_BOOTP_DNS
86#define CONFIG_BOOTP_DNS2
87#define CONFIG_BOOTP_SEND_HOSTNAME
88#define CONFIG_NET_RETRY_COUNT 10
Stefano Babicf57fd342010-11-30 11:46:56 -050089#endif
90
91#ifdef CONFIG_USE_SPIFLASH
92#undef CONFIG_ENV_IS_IN_FLASH
93#undef CONFIG_ENV_IS_IN_NAND
94#define CONFIG_ENV_IS_IN_SPI_FLASH
95#define CONFIG_ENV_SIZE (8 << 10)
Stefano Babicc9ab5c02011-10-04 23:43:30 +000096#define CONFIG_ENV_OFFSET 0x80000
Stefano Babicf57fd342010-11-30 11:46:56 -050097#define CONFIG_ENV_SECT_SIZE (64 << 10)
98#define CONFIG_SYS_NO_FLASH
99#endif
100
Stefano Babic16f61842011-10-04 23:43:37 +0000101#if defined(CONFIG_VIDEO)
102#define CONFIG_VIDEO_DA8XX
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000103#define CONFIG_SPLASH_SCREEN_ALIGN
Stefano Babic16f61842011-10-04 23:43:37 +0000104#define CONFIG_VIDEO_LOGO
105#define CONFIG_VIDEO_BMP_RLE8
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000106#define CONFIG_VIDEO_BMP_LOGO
Stefano Babic16f61842011-10-04 23:43:37 +0000107#define CONFIG_CMD_BMP
108#endif
109
Stefano Babicf57fd342010-11-30 11:46:56 -0500110/*
111 * U-Boot general configuration
112 */
113#define CONFIG_BOOTFILE "uImage" /* Boot file name */
Stefano Babicf57fd342010-11-30 11:46:56 -0500114#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
115#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
116#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
117#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
118#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
Stefano Babicf57fd342010-11-30 11:46:56 -0500119#define CONFIG_AUTO_COMPLETE
Stefano Babicf57fd342010-11-30 11:46:56 -0500120#define CONFIG_CMDLINE_EDITING
121#define CONFIG_SYS_LONGHELP
122#define CONFIG_CRC32_VERIFY
123#define CONFIG_MX_CYCLIC
124
125/*
126 * Linux Information
127 */
128#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
129#define CONFIG_CMDLINE_TAG
130#define CONFIG_SETUP_MEMORY_TAGS
Stefano Babicf57fd342010-11-30 11:46:56 -0500131
132/*
133 * U-Boot commands
134 */
Stefano Babicf57fd342010-11-30 11:46:56 -0500135#define CONFIG_CMD_ENV
Stefano Babicf57fd342010-11-30 11:46:56 -0500136#define CONFIG_CMD_DIAG
Stefano Babicf57fd342010-11-30 11:46:56 -0500137#define CONFIG_CMD_SAVES
Stefano Babicf57fd342010-11-30 11:46:56 -0500138
Hadli, Manjunath0dfccbe2012-02-06 00:30:44 +0000139#ifdef CONFIG_CMD_BDI
140#define CONFIG_CLOCKS
141#endif
142
Stefano Babicf57fd342010-11-30 11:46:56 -0500143#ifndef CONFIG_DRIVER_TI_EMAC
Stefano Babicf57fd342010-11-30 11:46:56 -0500144#endif
145
Stefano Babicc9ab5c02011-10-04 23:43:30 +0000146/* NAND Setup */
147#ifdef CONFIG_SYS_USE_NAND
Stefano Babicf57fd342010-11-30 11:46:56 -0500148#define CONFIG_CMD_NAND
149
150#define CONFIG_CMD_MTDPARTS
151#define CONFIG_MTD_DEVICE
152#define CONFIG_MTD_PARTITIONS
153#define CONFIG_LZO
154#define CONFIG_RBTREE
Stefano Babicf57fd342010-11-30 11:46:56 -0500155#define CONFIG_CMD_UBIFS
Stefano Babicc9ab5c02011-10-04 23:43:30 +0000156
157#define CONFIG_NAND_DAVINCI
158#define CONFIG_SYS_NAND_PAGE_2K
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000159#define CONFIG_SYS_NAND_NO_SUBPAGE
Stefano Babicc9ab5c02011-10-04 23:43:30 +0000160#define CONFIG_SYS_NAND_CS 2
161#define CONFIG_SYS_NAND_BASE DAVINCI_ASYNC_EMIF_DATA_CE2_BASE
162#undef CONFIG_SYS_NAND_HW_ECC
163#define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
164#define CONFIG_SYS_NAND_USE_FLASH_BBT
165#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */
Stefano Babicf57fd342010-11-30 11:46:56 -0500166#endif
167
Stefano Babicc9ab5c02011-10-04 23:43:30 +0000168/* SPI Flash */
Stefano Babicf57fd342010-11-30 11:46:56 -0500169#ifdef CONFIG_USE_SPIFLASH
Stefano Babicf57fd342010-11-30 11:46:56 -0500170#endif
171
Stefano Babicc9ab5c02011-10-04 23:43:30 +0000172#if !defined(CONFIG_SYS_USE_NAND) && \
Stefano Babicf57fd342010-11-30 11:46:56 -0500173 !defined(CONFIG_USE_NOR) && \
174 !defined(CONFIG_USE_SPIFLASH)
175#define CONFIG_ENV_IS_NOWHERE
176#define CONFIG_SYS_NO_FLASH
177#define CONFIG_ENV_SIZE (16 << 10)
Stefano Babicf57fd342010-11-30 11:46:56 -0500178#undef CONFIG_CMD_ENV
179#endif
180
181/* additions for new relocation code, must added to all boards */
182#define CONFIG_SYS_SDRAM_BASE 0xc0000000
183#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
184 GENERATED_GBL_DATA_SIZE)
Stefano Babic5b043a32011-10-04 23:43:32 +0000185/*
186 * Default environment and default scripts
187 * to update uboot and load kernel
188 */
Stefano Babic5b043a32011-10-04 23:43:32 +0000189
Stefano Babic5b043a32011-10-04 23:43:32 +0000190#define CONFIG_HOSTNAME ea20
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000191#define CONFIG_EXTRA_ENV_SETTINGS \
Stefano Babic5b043a32011-10-04 23:43:32 +0000192 "as=3\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000193 "netdev=eth0\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000194 "nfsargs=setenv bootargs root=/dev/nfs rw " \
195 "nfsroot=${serverip}:${rootpath}\0" \
196 "rfsbargs=setenv bootargs root=/dev/nfs rw " \
197 "nfsroot=${serverip}:${rfsbpath}\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000198 "testrfsargs=setenv bootargs root=/dev/nfs rw " \
199 "nfsroot=${serverip}:${testrfspath}\0" \
200 "ramargs=setenv bootargs root=/dev/ram rw initrd=" \
201 "0x${ramdisk_addr_r},4M\0" \
202 "mtdids=nand0=davinci_nand.0\0" \
203 "serverip=192.168.5.249\0" \
204 "ipaddr=192.168.5.248\0" \
205 "rootpath=/opt/eldk/arm\0" \
206 "splashpos=230,180\0" \
207 "testrfspath=/opt/eldk/test_arm\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000208 "nandargs=setenv bootargs rootfstype=ubifs ro chk_data_crc " \
209 "ubi.mtd=${as} root=ubi0:rootfs\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000210 "nandrwargs=setenv bootargs rootfstype=ubifs rw chk_data_crc " \
211 "ubi.mtd=${as} root=ubi0:rootfs\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000212 "addip_sta=setenv bootargs ${bootargs} " \
213 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
214 ":${hostname}:${netdev}:off panic=1\0" \
215 "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000216 "addip=if test -n ${ipdyn};then run addip_dyn;" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000217 "else run addip_sta;fi\0" \
218 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
219 "addtty=setenv bootargs ${bootargs}" \
220 " console=${consoledev},${baudrate}n8\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000221 "addmisc=setenv bootargs ${bootargs} ${misc}\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000222 "addmem=setenv bootargs ${bootargs} mem=${memory}\0" \
223 "consoledev=ttyS0\0" \
224 "loadaddr=c0000014\0" \
225 "memory=32M\0" \
226 "kernel_addr_r=c0700000\0" \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200227 "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
228 "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
229 "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/image.ext2\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000230 "flash_self=run ramargs addip addtty addmtd addmisc addmem;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000231 "bootm ${kernel_addr_r}\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000232 "flash_nfs=run nfsargs addip addtty addmtd addmisc addmem;" \
233 "bootm ${kernel_addr}\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000234 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
Stefano Babic5b043a32011-10-04 23:43:32 +0000235 "run nfsargs addip addtty addmtd addmisc addmem;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000236 "bootm ${kernel_addr_r}\0" \
237 "net_rfsb=tftp ${kernel_addr_r} ${bootfile}; " \
238 "run rfsbargs addip addtty addmtd addmisc addmem; " \
239 "bootm ${kernel_addr_r}\0" \
240 "net_testrfs=tftp ${kernel_addr_r} ${bootfile}; " \
241 "run testrfsargs addip addtty addmtd addmisc addmem; " \
242 "bootm ${kernel_addr_r}\0" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000243 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
244 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
Joe Hershberger108458a2012-11-01 16:54:18 +0000245 "nand_nand=ubi part nand0,${as};ubifsmount ubi:rootfs;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000246 "ubifsload ${kernel_addr_r} /boot/uImage;" \
247 "ubifsumount; run nandargs addip addtty " \
248 "addmtd addmisc addmem;clrlogo;" \
249 "bootm ${kernel_addr_r}\0" \
Joe Hershberger108458a2012-11-01 16:54:18 +0000250 "nand_nandrw=ubi part nand0,${as};ubifsmount ubi:rootfs;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000251 "ubifsload ${kernel_addr_r} /boot/uImage;" \
252 "ubifsumount; run nandrwargs addip addtty " \
253 "addmtd addmisc addmem;clrlogo;" \
254 "bootm ${kernel_addr_r}\0" \
255 "net_nandrw=tftp ${kernel_addr_r} ${bootfile}; run nandrwargs" \
256 " addip addtty addmtd addmisc addmem;" \
257 "clrlogo;bootm ${kernel_addr_r}\0" \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200258 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000259 "load_magic=if sf probe 0;then sf " \
260 "read c0000000 0x10000 0x60000;fi\0" \
Joe Hershberger108458a2012-11-01 16:54:18 +0000261 "load_nand=ubi part nand0,${as};ubifsmount ubi:rootfs;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000262 "if ubifsload c0000014 /boot/u-boot.bin;" \
263 "then mw c0000008 ${filesize};else echo Error reading" \
264 " u-boot from nand!;fi\0" \
265 "load_net=if sf probe 0;then sf read c0000000 0x10000 " \
266 "0x60000;tftp c0000014 ${u-boot};" \
267 "mw c0000008 ${filesize};fi\0" \
268 "upd=if sf probe 0;then sf erase 10000 60000;" \
269 "sf write c0000000 10000 60000;fi\0" \
270 "ublupdate=if tftp C0700000 ${ublname};then sf probe 0; " \
271 "sf erase 0 10000;" \
272 "sf write 0xc0700000 0 ${filesize};fi\0" \
273 "ubootupd_net=if run load_net;then echo Updating u-boot;" \
274 "if run upd; then echo U-Boot updated;" \
Stefano Babic5b043a32011-10-04 23:43:32 +0000275 "else echo Error updating u-boot !;" \
276 "echo Board without bootloader !!;" \
277 "fi;" \
Bastian Ruppert29665cf2012-09-13 22:29:04 +0000278 "else echo U-Boot not downloaded..exiting;fi\0" \
279 "ubootupd_nand=echo run load_magic,run load_nand,run upd;\0" \
Joe Hershberger76f353e2015-05-04 14:55:14 -0500280 "bootcmd=run net_testrfs\0"
Stefano Babic5b043a32011-10-04 23:43:32 +0000281
Stefano Babicf57fd342010-11-30 11:46:56 -0500282#endif /* __CONFIG_H */