]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/da850evm.h
DA850 EVM: add information regarding DA850 in README.davinci
[people/ms/u-boot.git] / include / configs / da850evm.h
CommitLineData
89b765c7
SR
1/*
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 */
3d248d37 29#define CONFIG_DRIVER_TI_EMAC
89b765c7
SR
30
31/*
32 * SoC Configuration
33 */
34#define CONFIG_MACH_DAVINCI_DA850_EVM
35#define CONFIG_ARM926EJS /* arm926ejs CPU core */
36#define CONFIG_SOC_DA8XX /* TI DA8xx SoC */
37#define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
38#define CONFIG_SYS_OSCIN_FREQ 24000000
39#define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
40#define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
41#define CONFIG_SYS_HZ 1000
42#define CONFIG_SKIP_LOWLEVEL_INIT
f760d14a 43#define CONFIG_SYS_TEXT_BASE 0xc1080000
89b765c7
SR
44
45/*
46 * Memory Info
47 */
48#define CONFIG_SYS_MALLOC_LEN (0x10000 + 1*1024*1024) /* malloc() len */
89b765c7
SR
49#define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
50#define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
97003756 51#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
89b765c7
SR
52
53/* memtest start addr */
54#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + 0x2000000)
55
56/* memtest will be run on 16MB */
57#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
58
59#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
60#define CONFIG_STACKSIZE (256*1024) /* regular stack */
61
62/*
63 * Serial Driver info
64 */
65#define CONFIG_SYS_NS16550
66#define CONFIG_SYS_NS16550_SERIAL
67#define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size */
68#define CONFIG_SYS_NS16550_COM1 DAVINCI_UART2_BASE /* Base address of UART2 */
69#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
70#define CONFIG_CONS_INDEX 1 /* use UART0 for console */
71#define CONFIG_BAUDRATE 115200 /* Default baud rate */
72#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
73
74/*
75 * I2C Configuration
76 */
77#define CONFIG_HARD_I2C
78#define CONFIG_DRIVER_DAVINCI_I2C
79#define CONFIG_SYS_I2C_SPEED 25000
80#define CONFIG_SYS_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
81
6b2c6468
BG
82/*
83 * Flash & Environment
84 */
85#ifdef CONFIG_USE_NAND
86#undef CONFIG_ENV_IS_IN_FLASH
87#define CONFIG_NAND_DAVINCI
88#define CONFIG_SYS_NO_FLASH
89#define CONFIG_ENV_IS_IN_NAND /* U-Boot env in NAND Flash */
90#define CONFIG_ENV_OFFSET 0x0 /* Block 0--not used by bootcode */
91#define CONFIG_ENV_SIZE (128 << 10)
92#define CONFIG_SYS_NAND_USE_FLASH_BBT
93#define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
94#define CONFIG_SYS_NAND_PAGE_2K
95#define CONFIG_SYS_NAND_CS 3
96#define CONFIG_SYS_NAND_BASE DAVINCI_ASYNC_EMIF_DATA_CE3_BASE
97#define CONFIG_SYS_CLE_MASK 0x10
98#define CONFIG_SYS_ALE_MASK 0x8
99#undef CONFIG_SYS_NAND_HW_ECC
100#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */
101#define NAND_MAX_CHIPS 1
102#define DEF_BOOTM ""
103#endif
104
3d248d37
BG
105/*
106 * Network & Ethernet Configuration
107 */
108#ifdef CONFIG_DRIVER_TI_EMAC
109#define CONFIG_EMAC_MDIO_PHY_NUM 0
110#define CONFIG_MII
111#define CONFIG_BOOTP_DEFAULT
112#define CONFIG_BOOTP_DNS
113#define CONFIG_BOOTP_DNS2
114#define CONFIG_BOOTP_SEND_HOSTNAME
115#define CONFIG_NET_RETRY_COUNT 10
116#define CONFIG_NET_MULTI
117#endif
118
89b765c7
SR
119/*
120 * U-Boot general configuration
121 */
122#define CONFIG_BOOTFILE "uImage" /* Boot file name */
123#define CONFIG_SYS_PROMPT "DA850-evm > " /* Command Prompt */
124#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
125#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
126#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
127#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
128#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
129#define CONFIG_VERSION_VARIABLE
130#define CONFIG_AUTO_COMPLETE
131#define CONFIG_SYS_HUSH_PARSER
132#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
133#define CONFIG_CMDLINE_EDITING
134#define CONFIG_SYS_LONGHELP
135#define CONFIG_CRC32_VERIFY
136#define CONFIG_MX_CYCLIC
137
138/*
139 * Linux Information
140 */
59e0d611 141#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
89b765c7
SR
142#define CONFIG_CMDLINE_TAG
143#define CONFIG_SETUP_MEMORY_TAGS
144#define CONFIG_BOOTARGS \
145 "mem=32M console=ttyS2,115200n8 root=/dev/mtdblock2 rw noinitrd ip=dhcp"
146#define CONFIG_BOOTDELAY 3
147
148/*
149 * U-Boot commands
150 */
151#include <config_cmd_default.h>
152#define CONFIG_CMD_ENV
153#define CONFIG_CMD_ASKENV
154#define CONFIG_CMD_DHCP
155#define CONFIG_CMD_DIAG
156#define CONFIG_CMD_MII
157#define CONFIG_CMD_PING
158#define CONFIG_CMD_SAVES
159#define CONFIG_CMD_MEMORY
160
161#ifndef CONFIG_DRIVER_TI_EMAC
162#undef CONFIG_CMD_NET
163#undef CONFIG_CMD_DHCP
164#undef CONFIG_CMD_MII
165#undef CONFIG_CMD_PING
166#endif
167
6b2c6468
BG
168#ifdef CONFIG_USE_NAND
169#undef CONFIG_CMD_FLASH
170#undef CONFIG_CMD_IMLS
171#define CONFIG_CMD_NAND
771d028a
BG
172
173#define CONFIG_CMD_MTDPARTS
174#define CONFIG_MTD_DEVICE
175#define CONFIG_MTD_PARTITIONS
176#define CONFIG_LZO
177#define CONFIG_RBTREE
178#define CONFIG_CMD_UBI
179#define CONFIG_CMD_UBIFS
6b2c6468
BG
180#endif
181
89b765c7
SR
182#if !defined(CONFIG_USE_NAND) && \
183 !defined(CONFIG_USE_NOR) && \
184 !defined(CONFIG_USE_SPIFLASH)
185#define CONFIG_ENV_IS_NOWHERE
186#define CONFIG_SYS_NO_FLASH
187#define CONFIG_ENV_SIZE (16 << 10)
188#undef CONFIG_CMD_IMLS
189#undef CONFIG_CMD_ENV
190#endif
191
ab86f72c 192/* additions for new relocation code, must added to all boards */
ab86f72c
HS
193#define CONFIG_SYS_SDRAM_BASE 0xc0000000
194#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
25ddd1fb 195 GENERATED_GBL_DATA_SIZE)
89b765c7 196#endif /* __CONFIG_H */