blob: 90f4b9036ec65e5e087d93db42b4af67c31038b1 [file] [log] [blame]
Tom Rixc5a51352009-10-17 12:41:06 -05001/*
2 * (C) Copyright 2006-2009
3 * Texas Instruments Incorporated.
4 * Richard Woodruff <r-woodruff2@ti.com>
5 * Syed Mohammed Khasim <x0khasim@ti.com>
6 * Nishanth Menon <nm@ti.com>
7 *
8 * Configuration settings for the 3430 TI SDP3430 board.
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#ifndef __CONFIG_H
30#define __CONFIG_H
31
32/* TODO: REMOVE THE FOLLOWING
33 * Retained the following till size.h is removed in u-boot
34 */
35#include <asm/sizes.h>
36/*
37 * High Level Configuration Options
38 */
Tom Rixc5a51352009-10-17 12:41:06 -050039#define CONFIG_OMAP 1 /* in a TI OMAP core */
40#define CONFIG_OMAP34XX 1 /* which is a 34XX */
Tom Rixc5a51352009-10-17 12:41:06 -050041#define CONFIG_OMAP3_3430SDP 1 /* working with SDP Rev2 */
42
Vaibhav Hiremath558d23d2010-06-07 15:20:34 -040043#define CONFIG_SDRC /* The chip has SDRC controller */
44
Tom Rixc5a51352009-10-17 12:41:06 -050045#include <asm/arch/cpu.h> /* get chip and board defs */
46#include <asm/arch/omap3.h>
47
48/*
49 * NOTE: these #defines presume standard SDP jumper settings.
50 * In particular:
51 * - 26 MHz clock (not 19.2 or 38.4 MHz)
52 * - Boot from 128MB NOR, not NAND or OneNAND
53 *
54 * At this writing, OMAP3 U-Boot support doesn't permit concurrent
55 * support for all the flash types the board supports.
56 */
57#define CONFIG_DISPLAY_CPUINFO 1
58#define CONFIG_DISPLAY_BOARDINFO 1
59
60/* Clock Defines */
61#define V_OSCK 26000000 /* Clock output from T2 */
62#define V_SCLK (V_OSCK >> 1)
63
64#undef CONFIG_USE_IRQ /* no support for IRQs */
65#define CONFIG_MISC_INIT_R
66
67#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
68#define CONFIG_SETUP_MEMORY_TAGS 1
69#define CONFIG_INITRD_TAG 1
70#define CONFIG_REVISION_TAG 1
71
Grant Likely100b8492011-03-28 09:59:07 +000072#define CONFIG_OF_LIBFDT 1
73
Tom Rixc5a51352009-10-17 12:41:06 -050074/*
75 * Size of malloc() pool
76 * Total Size Environment - 256k
77 * Malloc - add 256k
78 */
79#define CONFIG_ENV_SIZE (256 << 10)
80#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (256 << 10))
Tom Rixc5a51352009-10-17 12:41:06 -050081
82/*--------------------------------------------------------------------------*/
83
84/*
85 * Hardware drivers
86 */
87
88/*
89 * TWL4030
90 */
91#define CONFIG_TWL4030_POWER 1
92
93/*
94 * serial port - NS16550 compatible
95 */
96#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
97
98#define CONFIG_SYS_NS16550
99#define CONFIG_SYS_NS16550_SERIAL
100#define CONFIG_SYS_NS16550_REG_SIZE (-4)
101#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
102
103/* Original SDP u-boot used UART1 and thus J8 (innermost); that can be
104 * swapped with UART2 via jumpering. Downsides of using J8: it doesn't
105 * support UART boot (that's only for UART3); it prevents sharing a Linux
106 * kernel (LL_DEBUG_UART3) or filesystem (getty ttyS2) with most boards.
107 *
108 * UART boot uses UART3 on J9, and the SDP user's guide says to use
109 * that for console. Downsides of using J9: you can't use IRDA too;
110 * since UART3 isn't in the CORE power domain, it may be a bit less
111 * usable in certain PM-sensitive debug scenarios.
112 */
113#undef CONSOLE_J9 /* else J8/UART1 (innermost) */
114
115#ifdef CONSOLE_J9
116#define CONFIG_CONS_INDEX 3
117#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
118#define CONFIG_SERIAL3 3 /* UART3 */
119#else
120#define CONFIG_CONS_INDEX 1
121#define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
122#define CONFIG_SERIAL1 1 /* UART1 */
123#endif
124
125#define CONFIG_ENV_OVERWRITE
126#define CONFIG_BAUDRATE 115200
127#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
128 115200}
129
130/*
131 * I2C for power management setup
132 */
133#define CONFIG_HARD_I2C 1
134#define CONFIG_SYS_I2C_SPEED 100000
135#define CONFIG_SYS_I2C_SLAVE 1
136#define CONFIG_SYS_I2C_BUS 0
137#define CONFIG_SYS_I2C_BUS_SELECT 1
138#define CONFIG_DRIVER_OMAP34XX_I2C 1
139
Nishanth Menon076501b2009-11-07 10:51:24 -0500140/* DDR - I use Infineon DDR */
141#define CONFIG_OMAP3_INFINEON_DDR 1
142
Tom Rixc5a51352009-10-17 12:41:06 -0500143/* OMITTED: single 1 Gbit MT29F1G NAND flash */
144
145/*
146 * NOR boot support - single 1 Gbit PF48F6000M0 Strataflash
147 */
148#define CONFIG_SYS_FLASH_BASE 0x10000000
149#define CONFIG_FLASH_CFI_DRIVER 1 /* Use drivers/cfi_flash.c */
150#define CONFIG_SYS_FLASH_CFI 1 /* use CFI geometry data */
151#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* ~10x faster writes */
152#define CONFIG_SYS_FLASH_PROTECTION 1 /* hardware sector protection */
153#define CONFIG_SYS_FLASH_EMPTY_INFO 1 /* flinfo 'E' for empty */
154#define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE}
155#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of flash banks */
156
157#define CONFIG_SYS_FLASH_CFI_WIDTH 2
158#define PHYS_FLASH_SIZE (128 << 20)
159#define CONFIG_SYS_MAX_FLASH_SECT 512 /* max sectors on one chip */
160
Tom Rixc5a51352009-10-17 12:41:06 -0500161/* OMITTED: single 2 Gbit KFM2G16 OneNAND flash */
162
163#define CONFIG_ENV_IS_IN_FLASH 1
164#define CONFIG_SYS_ENV_SECT_SIZE (256 << 10)
165#define CONFIG_ENV_OFFSET CONFIG_SYS_ENV_SECT_SIZE
166#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_ENV_SECT_SIZE)
167/*--------------------------------------------------------------------------*/
168
169/* commands to include */
170#include <config_cmd_default.h>
171
172/* Enabled commands */
173#define CONFIG_CMD_DHCP /* DHCP Support */
174#define CONFIG_CMD_EXT2 /* EXT2 Support */
175#define CONFIG_CMD_FAT /* FAT support */
176#define CONFIG_CMD_I2C /* I2C serial bus support */
177#define CONFIG_CMD_JFFS2 /* JFFS2 Support */
178#define CONFIG_CMD_MMC /* MMC support */
179#define CONFIG_CMD_NET
180
181/* Disabled commands */
182#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
183#undef CONFIG_CMD_IMLS /* List all found images */
184
185/*--------------------------------------------------------------------------*/
186/*
187 * MMC boot support
188 */
189
190#if defined(CONFIG_CMD_MMC)
Tom Rini286dae32011-09-03 21:52:21 -0400191#define CONFIG_GENERIC_MMC 1
Tom Rixc5a51352009-10-17 12:41:06 -0500192#define CONFIG_MMC 1
Tom Rini286dae32011-09-03 21:52:21 -0400193#define CONFIG_OMAP_HSMMC 1
Tom Rixc5a51352009-10-17 12:41:06 -0500194#define CONFIG_DOS_PARTITION 1
195#endif
196
197/*----------------------------------------------------------------------------
198 * SMSC9115 Ethernet from SMSC9118 family
199 *----------------------------------------------------------------------------
200 */
201#if defined(CONFIG_CMD_NET)
202
Nishanth Menon03542c02009-10-16 00:06:36 -0500203#define CONFIG_LAN91C96
Tom Rixc5a51352009-10-17 12:41:06 -0500204#define CONFIG_LAN91C96_BASE DEBUG_BASE
205#define CONFIG_LAN91C96_EXT_PHY
206
207#define CONFIG_BOOTP_SEND_HOSTNAME
208/*
209 * BOOTP fields
210 */
211#define CONFIG_BOOTP_SUBNETMASK 0x00000001
212#define CONFIG_BOOTP_GATEWAY 0x00000002
213#define CONFIG_BOOTP_HOSTNAME 0x00000004
214#define CONFIG_BOOTP_BOOTPATH 0x00000010
215#endif /* (CONFIG_CMD_NET) */
216
217/*
218 * Environment setup
219 *
220 * Default boot order: mmc bootscript, MMC uImage, NOR image.
221 * Network booting environment must be configured at site.
222 */
223
224/* allow overwriting serial config and ethaddr */
225#define CONFIG_ENV_OVERWRITE
226
227#define CONFIG_EXTRA_ENV_SETTINGS \
228 "loadaddr=0x82000000\0" \
229 "console=ttyS0,115200n8\0" \
230 "mmcargs=setenv bootargs console=${console} " \
231 "root=/dev/mmcblk0p2 rw " \
232 "rootfstype=ext3 rootwait\0" \
233 "norargs=setenv bootargs console=${console} " \
234 "root=/dev/mtdblock3 rw " \
235 "rootfstype=jffs2\0" \
236 "loadbootscript=fatload mmc 0 ${loadaddr} boot.scr\0" \
237 "bootscript=echo Running bootscript from MMC/SD ...; " \
238 "autoscr ${loadaddr}\0" \
239 "loaduimage=fatload mmc 0 ${loadaddr} uImage\0" \
240 "mmcboot=echo Booting from MMC/SD ...; " \
241 "run mmcargs; " \
242 "bootm ${loadaddr}\0" \
243 "norboot=echo Booting from NOR ...; " \
244 "run norargs; " \
245 "bootm 0x80000\0" \
246
247#define CONFIG_BOOTCOMMAND \
248 "if mmcinit; then " \
249 "if run loadbootscript; then " \
250 "run bootscript; " \
251 "else " \
252 "if run loaduimage; then " \
253 "run mmcboot; " \
254 "else run norboot; " \
255 "fi; " \
256 "fi; " \
257 "else run norboot; fi"
258
259#define CONFIG_AUTO_COMPLETE 1
260
261/*--------------------------------------------------------------------------*/
262
263/*
264 * Miscellaneous configurable options
265 */
Tom Rixc5a51352009-10-17 12:41:06 -0500266
267#define CONFIG_SYS_LONGHELP /* undef to save memory */
268#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
269#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
Robert P. J. Day23f5a2d2009-12-12 12:10:33 -0500270#define CONFIG_SYS_PROMPT "OMAP34XX SDP # "
Vaibhav Hiremathe1832902011-09-03 21:24:19 -0400271#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Tom Rixc5a51352009-10-17 12:41:06 -0500272/* Print Buffer Size */
273#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
274 sizeof(CONFIG_SYS_PROMPT) + 16)
275#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
276/* Boot Argument Buffer Size */
277#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
278
279/* SDRAM Test range - start at 16 meg boundary -ends at 32Meg -
280 * a basic sanity check ONLY
281 * IF you would like to increase coverage, increase the end address
282 * or run the test with custom options
283 */
284#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0 + 0x01000000)
285#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + (32 << 20))
286
287/* Default load address */
288#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0)
289
290/*--------------------------------------------------------------------------*/
291
292/*
293 * 3430 has 12 GP timers, they can be driven by the SysClk (12/13/19.2) or by
294 * 32KHz clk, or from external sig. This rate is divided by a local divisor.
295 */
296#define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
297#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
298#define CONFIG_SYS_HZ 1000
299
300/*
301 * Stack sizes
302 *
303 * The stack sizes are set up in start.S using the settings below
304 */
305#define CONFIG_STACKSIZE (128 << 10) /* Regular stack */
Tom Rixc5a51352009-10-17 12:41:06 -0500306
Dirk Behmed834b012010-11-30 11:10:40 -0500307#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
308#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
309#define CONFIG_SYS_INIT_RAM_SIZE 0x800
310#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
311 CONFIG_SYS_INIT_RAM_SIZE - \
312 GENERATED_GBL_DATA_SIZE)
Tom Rixc5a51352009-10-17 12:41:06 -0500313/*
314 * SDRAM Memory Map
315 */
316#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
317#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
318#define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 meg */
319#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
320
Tom Rixc5a51352009-10-17 12:41:06 -0500321/*--------------------------------------------------------------------------*/
322
323/*
324 * NOR FLASH usage ... default nCS0:
325 * - one 256KB sector for U-Boot
326 * - one 256KB sector for its parameters (not all used)
327 * - eight sectors (2 MB) for kernel
328 * - rest for JFFS2
329 */
330
331/* Monitor at start of flash */
332#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
333#define CONFIG_SYS_MONITOR_LEN (256 << 10)
334
Tom Rixc5a51352009-10-17 12:41:06 -0500335/*
336 * NAND FLASH usage ... default nCS1:
337 * - four 128KB sectors for X-Loader
338 * - four 128KB sectors for U-Boot
339 * - two 128KB sector for its parameters
340 * - 32 sectors (4 MB) for kernel
341 * - rest for filesystem
342 */
343
344/*
345 * OneNAND FLASH usage ... default nCS2:
346 * - four 128KB sectors for X-Loader
347 * - two 128KB sectors for U-Boot
348 * - one 128KB sector for its parameters
349 * - sixteen sectors (2 MB) for kernel
350 * - rest for filesystem
351 */
352
Aneesh Vfa5c07a2011-11-21 23:38:59 +0000353#define CONFIG_SYS_CACHELINE_SIZE 64
354
Tom Rixc5a51352009-10-17 12:41:06 -0500355#endif /* __CONFIG_H */