blob: d85e5ae59fe8c84b21d947eb4e848eb9f36ce59c [file] [log] [blame]
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -04001/*
2 * (C) Copyright 2010
3 * ISEE 2007 SL, <www.iseebcn.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20
21#ifndef __CONFIG_H
22#define __CONFIG_H
23#include <asm/sizes.h>
24
25/*
26 * High Level Configuration Options
27 */
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040028#define CONFIG_OMAP 1 /* in a TI OMAP core */
29#define CONFIG_OMAP34XX 1 /* which is a 34XX */
30#define CONFIG_OMAP3430 1 /* which is in a 3430 */
31#define CONFIG_OMAP3_IGEP0030 1 /* working with IGEP0030 */
32
33#define CONFIG_SDRC /* The chip has SDRC controller */
34
35#include <asm/arch/cpu.h>
36#include <asm/arch/omap3.h>
37
38/*
39 * Display CPU and Board information
40 */
41#define CONFIG_DISPLAY_CPUINFO 1
42#define CONFIG_DISPLAY_BOARDINFO 1
43
44/* Clock Defines */
45#define V_OSCK 26000000 /* Clock output from T2 */
46#define V_SCLK (V_OSCK >> 1)
47
48#define CONFIG_MISC_INIT_R
49
50#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
51#define CONFIG_SETUP_MEMORY_TAGS 1
52#define CONFIG_INITRD_TAG 1
53#define CONFIG_REVISION_TAG 1
54
Grant Likely2fa8ca92011-03-28 09:59:07 +000055#define CONFIG_OF_LIBFDT 1
56
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040057/*
58 * NS16550 Configuration
59 */
60
61#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
62
63#define CONFIG_SYS_NS16550
64#define CONFIG_SYS_NS16550_SERIAL
65#define CONFIG_SYS_NS16550_REG_SIZE (-4)
66#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
67
68/* select serial console configuration */
69#define CONFIG_CONS_INDEX 3
70#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
71#define CONFIG_SERIAL3 3
72
73/* allow to overwrite serial and ethaddr */
74#define CONFIG_ENV_OVERWRITE
75#define CONFIG_BAUDRATE 115200
76#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, 115200}
Enric Balletbo i Serraac657c42010-11-04 15:34:37 -040077#define CONFIG_GENERIC_MMC 1
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040078#define CONFIG_MMC 1
Enric Balletbo i Serraac657c42010-11-04 15:34:37 -040079#define CONFIG_OMAP_HSMMC 1
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040080#define CONFIG_DOS_PARTITION 1
81
82/* DDR */
83#define CONFIG_OMAP3_NUMONYX_DDR 1
84
85/* USB */
86#define CONFIG_MUSB_UDC 1
87#define CONFIG_USB_OMAP3 1
88#define CONFIG_TWL4030_USB 1
89
90/* USB device configuration */
91#define CONFIG_USB_DEVICE 1
92#define CONFIG_USB_TTY 1
93#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
94
95/* Change these to suit your needs */
96#define CONFIG_USBD_VENDORID 0x0451
97#define CONFIG_USBD_PRODUCTID 0x5678
98#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
99#define CONFIG_USBD_PRODUCT_NAME "IGEP"
100
101/* commands to include */
102#include <config_cmd_default.h>
103
104#define CONFIG_CMD_CACHE
105#define CONFIG_CMD_EXT2 /* EXT2 Support */
106#define CONFIG_CMD_FAT /* FAT support */
107#define CONFIG_CMD_I2C /* I2C serial bus support */
108#define CONFIG_CMD_MMC /* MMC support */
109#define CONFIG_CMD_ONENAND /* ONENAND support */
110#define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
111#define CONFIG_MTD_DEVICE
112
113#undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
Enric Balletbo i Serra84c611d2010-11-29 16:30:47 -0500114#undef CONFIG_CMD_NFS /* nfs */
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400115#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
116#undef CONFIG_CMD_IMLS /* List all found images */
117
118#define CONFIG_SYS_NO_FLASH
119#define CONFIG_HARD_I2C 1
120#define CONFIG_SYS_I2C_SPEED 100000
121#define CONFIG_SYS_I2C_SLAVE 1
122#define CONFIG_SYS_I2C_BUS 0
123#define CONFIG_SYS_I2C_BUS_SELECT 1
124#define CONFIG_DRIVER_OMAP34XX_I2C 1
125
126/*
127 * TWL4030
128 */
129#define CONFIG_TWL4030_POWER 1
130
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400131#define CONFIG_BOOTDELAY 3
132
133#define CONFIG_EXTRA_ENV_SETTINGS \
Enric Balletbo i Serra30f34132011-04-19 09:17:11 -0400134 "usbtty=cdc_acm\0" \
135 "loadaddr=0x82000000\0" \
136 "usbtty=cdc_acm\0" \
137 "console=ttyS2,115200n8\0" \
138 "mpurate=500\0" \
139 "vram=12M\0" \
140 "dvimode=1024x768MR-16@60\0" \
141 "defaultdisplay=dvi\0" \
142 "mmcdev=0\0" \
143 "mmcroot=/dev/mmcblk0p2 rw\0" \
144 "mmcrootfstype=ext3 rootwait\0" \
145 "nandroot=/dev/mtdblock4 rw\0" \
146 "nandrootfstype=jffs2\0" \
147 "mmcargs=setenv bootargs console=${console} " \
148 "mpurate=${mpurate} " \
149 "vram=${vram} " \
150 "omapfb.mode=dvi:${dvimode} " \
151 "omapfb.debug=y " \
152 "omapdss.def_disp=${defaultdisplay} " \
153 "root=${mmcroot} " \
154 "rootfstype=${mmcrootfstype}\0" \
155 "nandargs=setenv bootargs console=${console} " \
156 "mpurate=${mpurate} " \
157 "vram=${vram} " \
158 "omapfb.mode=dvi:${dvimode} " \
159 "omapfb.debug=y " \
160 "omapdss.def_disp=${defaultdisplay} " \
161 "root=${nandroot} " \
162 "rootfstype=${nandrootfstype}\0" \
163 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
164 "bootscript=echo Running bootscript from mmc ...; " \
165 "source ${loadaddr}\0" \
166 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
167 "mmcboot=echo Booting from mmc ...; " \
168 "run mmcargs; " \
169 "bootm ${loadaddr}\0" \
170 "nandboot=echo Booting from onenand ...; " \
171 "run nandargs; " \
172 "onenand read ${loadaddr} 280000 400000; " \
173 "bootm ${loadaddr}\0" \
174
175#define CONFIG_BOOTCOMMAND \
176 "if mmc rescan ${mmcdev}; then " \
177 "if run loadbootscript; then " \
178 "run bootscript; " \
179 "else " \
180 "if run loaduimage; then " \
181 "run mmcboot; " \
182 "else run nandboot; " \
183 "fi; " \
184 "fi; " \
185 "else run nandboot; fi"
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400186
187#define CONFIG_AUTO_COMPLETE 1
188
189/*
190 * Miscellaneous configurable options
191 */
192#define CONFIG_SYS_LONGHELP /* undef to save memory */
193#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
194#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
195#define CONFIG_SYS_PROMPT "U-Boot # "
196#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
197/* Print Buffer Size */
198#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
199 sizeof(CONFIG_SYS_PROMPT) + 16)
200#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
201/* Boot Argument Buffer Size */
202#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
203
204#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) /* memtest */
205 /* works on */
206#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
207 0x01F00000) /* 31MB */
208
209#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */
210 /* load address */
211
212#define CONFIG_SYS_MONITOR_LEN (256 << 10)
213
214/*
215 * OMAP3 has 12 GP timers, they can be driven by the system clock
216 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
217 * This rate is divided by a local divisor.
218 */
219#define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
220#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
221#define CONFIG_SYS_HZ 1000
222
223/*
224 * Stack sizes
225 *
226 * The stack sizes are set up in start.S using the settings below
227 */
228#define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */
229
230/*
231 * Physical Memory Map
232 *
233 */
234#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
235#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
236#define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 meg */
237#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
238
239/* SDRAM Bank Allocation method */
240#define SDRC_R_B_C 1
241
242/*
243 * FLASH and environment organization
244 */
245
246#define PISMO1_ONEN_SIZE GPMC_SIZE_128M /* Configure the PISMO */
247
248#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
249
250#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
251
252#define CONFIG_ENV_IS_IN_ONENAND 1
253#define CONFIG_ENV_SIZE (512 << 10) /* Total Size Environment */
254#define CONFIG_ENV_ADDR ONENAND_ENV_OFFSET
255
256/*
257 * Size of malloc() pool
258 */
259#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10))
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400260
261#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
Steve Sakoman31bfcf12010-10-27 05:04:30 -0700262#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
263#define CONFIG_SYS_INIT_RAM_SIZE 0x800
264#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
265 CONFIG_SYS_INIT_RAM_SIZE - \
266 GENERATED_GBL_DATA_SIZE)
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400267
268#endif /* __CONFIG_H */