blob: 1e4dfcf9f287e9be813940ffb28b7d983be06970 [file] [log] [blame]
Dirk Behme9d0fc812009-01-28 21:39:57 +01001/*
2 * Configuration settings for the Gumstix Overo board.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme9d0fc812009-01-28 21:39:57 +01005 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
Dirk Behme9d0fc812009-01-28 21:39:57 +01009
10/*
11 * High Level Configuration Options
12 */
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000013#define CONFIG_OMAP /* in a TI OMAP core */
14#define CONFIG_OMAP34XX /* which is a 34XX */
15#define CONFIG_OMAP3_OVERO /* working with overo */
Marek Vasut308252a2012-07-21 05:02:23 +000016#define CONFIG_OMAP_GPIO
Lokesh Vutla806d2792013-07-30 11:36:30 +053017#define CONFIG_OMAP_COMMON
Dirk Behme9d0fc812009-01-28 21:39:57 +010018
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000019#define CONFIG_SDRC /* The chip has SDRC controller */
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040020
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000021#include <asm/arch/cpu.h> /* get chip and board defs */
Dirk Behme9d0fc812009-01-28 21:39:57 +010022#include <asm/arch/omap3.h>
23
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053024/*
25 * Display CPU and Board information
26 */
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000027#define CONFIG_DISPLAY_CPUINFO
28#define CONFIG_DISPLAY_BOARDINFO
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053029
Dirk Behme9d0fc812009-01-28 21:39:57 +010030/* Clock Defines */
31#define V_OSCK 26000000 /* Clock output from T2 */
32#define V_SCLK (V_OSCK >> 1)
33
Dirk Behme9d0fc812009-01-28 21:39:57 +010034#define CONFIG_MISC_INIT_R
35
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000036#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
37#define CONFIG_SETUP_MEMORY_TAGS
38#define CONFIG_INITRD_TAG
39#define CONFIG_REVISION_TAG
Dirk Behme9d0fc812009-01-28 21:39:57 +010040
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000041#define CONFIG_OF_LIBFDT
Grant Likely2fa8ca92011-03-28 09:59:07 +000042
Dirk Behme9d0fc812009-01-28 21:39:57 +010043/*
44 * Size of malloc() pool
45 */
Ash Charlesdbba3da2014-05-21 14:04:48 -070046#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB sector */
47
48/* Shift 128 << 15 provides 4 MiB heap to support UBI commands.
49 * Shift 128 << 10 provides 128 KiB heap for limited-memory devices. */
50#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 15))
Dirk Behme9d0fc812009-01-28 21:39:57 +010051
52/*
53 * Hardware drivers
54 */
55
56/*
57 * NS16550 Configuration
58 */
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000059#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
Dirk Behme9d0fc812009-01-28 21:39:57 +010060
61#define CONFIG_SYS_NS16550
62#define CONFIG_SYS_NS16550_SERIAL
63#define CONFIG_SYS_NS16550_REG_SIZE (-4)
64#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
65
66/*
67 * select serial console configuration
68 */
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, \
77 115200}
Andreas Müller0f8d3eb2012-01-04 15:26:21 +000078#define CONFIG_GENERIC_MMC
79#define CONFIG_MMC
80#define CONFIG_OMAP_HSMMC
81#define CONFIG_DOS_PARTITION
Dirk Behme9d0fc812009-01-28 21:39:57 +010082
Ash Charles06ae2b02014-05-21 14:04:51 -070083#define CONFIG_OMAP3_GPIO_2 /* GPIO32..63 is in GPIO Bank 2 */
84#define CONFIG_OMAP3_GPIO_3 /* GPIO64..95 is in GPIO Bank 3 */
85#define CONFIG_OMAP3_GPIO_4 /* GPIO96..127 is in GPIO Bank 4 */
86#define CONFIG_OMAP3_GPIO_5 /* GPIO128..159 is in GPIO Bank 5 */
87#define CONFIG_OMAP3_GPIO_6 /* GPIO160..191 is in GPIO Bank 6 */
88
Dirk Behme9d0fc812009-01-28 21:39:57 +010089/* commands to include */
90#include <config_cmd_default.h>
91
Steve Sakoman68b0fbf2010-09-29 13:58:34 -070092#define CONFIG_CMD_CACHE
Dirk Behme9d0fc812009-01-28 21:39:57 +010093#define CONFIG_CMD_EXT2 /* EXT2 Support */
94#define CONFIG_CMD_FAT /* FAT support */
95#define CONFIG_CMD_JFFS2 /* JFFS2 Support */
96
97#define CONFIG_CMD_I2C /* I2C serial bus support */
98#define CONFIG_CMD_MMC /* MMC support */
99#define CONFIG_CMD_NAND /* NAND support */
100
101#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
102#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
103#undef CONFIG_CMD_IMI /* iminfo */
104#undef CONFIG_CMD_IMLS /* List all found images */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100105#undef CONFIG_CMD_NFS /* NFS support */
Olof Johanssondf382622009-09-29 10:22:45 -0400106#define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100107
Ash Charlesdbba3da2014-05-21 14:04:48 -0700108#ifdef CONFIG_CMD_NAND
109
110#define CONFIG_CMD_MTDPARTS /* MTD partition support */
111#define CONFIG_CMD_UBI /* UBI-formated MTD partition support */
112#define CONFIG_CMD_UBIFS /* Read-only UBI volume operations */
113
114#define CONFIG_RBTREE /* required by CONFIG_CMD_UBI */
115#define CONFIG_LZO /* required by CONFIG_CMD_UBIFS */
116
117#define CONFIG_MTD_DEVICE /* required by CONFIG_CMD_MTDPARTS */
118#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
119
120/* NAND block size is 128 KiB. Synchronize these values with
121 * overo_nand_partitions in mach-omap2/board-overo.c in Linux:
122 * xloader 4 * NAND_BLOCK_SIZE = 512 KiB
123 * uboot 14 * NAND_BLOCK_SIZE = 1792 KiB
124 * uboot environtment 2 * NAND_BLOCK_SIZE = 256 KiB
Peter A. Bigote5c809d2014-05-21 14:04:49 -0700125 * linux 64 * NAND_BLOCK_SIZE = 8 MiB
Ash Charlesdbba3da2014-05-21 14:04:48 -0700126 * rootfs remainder
127 */
128#define MTDIDS_DEFAULT "nand0=omap2-nand.0"
129#define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:" \
130 "512k(xloader)," \
131 "1792k(u-boot)," \
132 "256k(environ)," \
Peter A. Bigote5c809d2014-05-21 14:04:49 -0700133 "8m(linux)," \
Ash Charlesdbba3da2014-05-21 14:04:48 -0700134 "-(rootfs)"
135#else /* CONFIG_CMD_NAND */
136#define MTDPARTS_DEFAULT
137#endif /* CONFIG_CMD_NAND */
138
Dirk Behme9d0fc812009-01-28 21:39:57 +0100139#define CONFIG_SYS_NO_FLASH
Heiko Schocher6789e842013-10-22 11:03:18 +0200140#define CONFIG_SYS_I2C
141#define CONFIG_SYS_OMAP24_I2C_SPEED 100000
142#define CONFIG_SYS_OMAP24_I2C_SLAVE 1
143#define CONFIG_SYS_I2C_OMAP34XX
Dirk Behme9d0fc812009-01-28 21:39:57 +0100144
145/*
Tom Rix2c155132009-06-28 12:52:30 -0500146 * TWL4030
147 */
Andreas Müller0f8d3eb2012-01-04 15:26:21 +0000148#define CONFIG_TWL4030_POWER
149#define CONFIG_TWL4030_LED
Tom Rix2c155132009-06-28 12:52:30 -0500150
151/*
Dirk Behme9d0fc812009-01-28 21:39:57 +0100152 * Board NAND Info.
153 */
Andreas Müller0f8d3eb2012-01-04 15:26:21 +0000154#define CONFIG_SYS_NAND_QUIET_TEST
Dirk Behme9d0fc812009-01-28 21:39:57 +0100155#define CONFIG_NAND_OMAP_GPMC
156#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
157 /* to access nand */
158#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
159 /* to access nand */
160 /* at CS0 */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100161#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
162 /* devices */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100163/* Environment information */
164#define CONFIG_BOOTDELAY 5
165
166#define CONFIG_EXTRA_ENV_SETTINGS \
167 "loadaddr=0x82000000\0" \
Philip Balister75b988a2011-10-11 11:23:21 +0000168 "console=ttyO2,115200n8\0" \
Steve Sakoman5af32462010-02-03 14:39:14 -0800169 "mpurate=500\0" \
Philip Balistere6847db2011-10-11 11:23:23 +0000170 "optargs=\0" \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400171 "vram=12M\0" \
172 "dvimode=1024x768MR-16@60\0" \
173 "defaultdisplay=dvi\0" \
Steve Sakomancd7c5722010-09-19 21:21:07 -0700174 "mmcdev=0\0" \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400175 "mmcroot=/dev/mmcblk0p2 rw\0" \
176 "mmcrootfstype=ext3 rootwait\0" \
Steve Sakoman254973e2011-09-30 09:20:57 +0000177 "nandroot=ubi0:rootfs ubi.mtd=4\0" \
178 "nandrootfstype=ubifs\0" \
Ash Charlesdbba3da2014-05-21 14:04:48 -0700179 "mtdparts=" MTDPARTS_DEFAULT "\0" \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100180 "mmcargs=setenv bootargs console=${console} " \
Philip Balistere6847db2011-10-11 11:23:23 +0000181 "${optargs} " \
Steve Sakoman5af32462010-02-03 14:39:14 -0800182 "mpurate=${mpurate} " \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400183 "vram=${vram} " \
184 "omapfb.mode=dvi:${dvimode} " \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400185 "omapdss.def_disp=${defaultdisplay} " \
186 "root=${mmcroot} " \
187 "rootfstype=${mmcrootfstype}\0" \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100188 "nandargs=setenv bootargs console=${console} " \
Philip Balistere6847db2011-10-11 11:23:23 +0000189 "${optargs} " \
Steve Sakoman5af32462010-02-03 14:39:14 -0800190 "mpurate=${mpurate} " \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400191 "vram=${vram} " \
192 "omapfb.mode=dvi:${dvimode} " \
Steve Sakoman13d2cb92009-10-10 14:29:37 -0400193 "omapdss.def_disp=${defaultdisplay} " \
194 "root=${nandroot} " \
195 "rootfstype=${nandrootfstype}\0" \
Steve Sakomancd7c5722010-09-19 21:21:07 -0700196 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100197 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200198 "source ${loadaddr}\0" \
Ash Charles0b3fde12014-05-21 14:04:47 -0700199 "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \
200 "importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
201 "env import -t ${loadaddr} ${filesize}\0" \
Steve Sakomancd7c5722010-09-19 21:21:07 -0700202 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100203 "mmcboot=echo Booting from mmc ...; " \
204 "run mmcargs; " \
205 "bootm ${loadaddr}\0" \
206 "nandboot=echo Booting from nand ...; " \
207 "run nandargs; " \
Ash Charlesbcb2cf12014-05-21 14:04:50 -0700208 "nand read ${loadaddr} linux; " \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100209 "bootm ${loadaddr}\0" \
210
211#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000212 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100213 "if run loadbootscript; then " \
214 "run bootscript; " \
215 "else " \
Ash Charles0b3fde12014-05-21 14:04:47 -0700216 "if run loadbootenv; then " \
217 "run importbootenv; " \
218 "if test -n ${uenvcmd}; then " \
219 "echo Running uenvcmd ...;" \
220 "run uenvcmd;" \
221 "fi;" \
222 "fi;" \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100223 "if run loaduimage; then " \
224 "run mmcboot; " \
225 "else run nandboot; " \
226 "fi; " \
227 "fi; " \
228 "else run nandboot; fi"
229
230#define CONFIG_AUTO_COMPLETE 1
231/*
232 * Miscellaneous configurable options
233 */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100234#define CONFIG_SYS_LONGHELP /* undef to save memory */
235#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
Robert P. J. Day1270ec12009-12-12 12:10:33 -0500236#define CONFIG_SYS_PROMPT "Overo # "
Vaibhav Hiremathf62b1252011-09-03 21:24:19 -0400237#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100238/* Print Buffer Size */
239#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
240 sizeof(CONFIG_SYS_PROMPT) + 16)
241#define CONFIG_SYS_MAXARGS 16 /* max number of command */
242 /* args */
243/* Boot Argument Buffer Size */
244#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
245/* memtest works on */
246#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
247#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
248 0x01F00000) /* 31MB */
249
Dirk Behme9d0fc812009-01-28 21:39:57 +0100250#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */
251 /* address */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100252/*
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200253 * OMAP3 has 12 GP timers, they can be driven by the system clock
254 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
255 * This rate is divided by a local divisor.
Dirk Behme9d0fc812009-01-28 21:39:57 +0100256 */
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200257#define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
258#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100259
260/*-----------------------------------------------------------------------
Dirk Behme9d0fc812009-01-28 21:39:57 +0100261 * Physical Memory Map
262 */
263#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
264#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
Dirk Behme9d0fc812009-01-28 21:39:57 +0100265#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
266
Dirk Behme9d0fc812009-01-28 21:39:57 +0100267/*-----------------------------------------------------------------------
268 * FLASH and environment organization
269 */
270
271/* **** PISMO SUPPORT *** */
272
273/* Configure the PISMO */
274#define PISMO1_NAND_SIZE GPMC_SIZE_128M
275#define PISMO1_ONEN_SIZE GPMC_SIZE_128M
276
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -0400277#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100278
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400279#if defined(CONFIG_CMD_NAND)
280#define CONFIG_SYS_FLASH_BASE PISMO1_NAND_BASE
281#endif
Dirk Behme9d0fc812009-01-28 21:39:57 +0100282
283/* Monitor at start of flash */
284#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
285#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
286
Andreas Müller0f8d3eb2012-01-04 15:26:21 +0000287#define CONFIG_ENV_IS_IN_NAND
Dirk Behme9d0fc812009-01-28 21:39:57 +0100288#define ONENAND_ENV_OFFSET 0x240000 /* environment starts here */
289#define SMNAND_ENV_OFFSET 0x240000 /* environment starts here */
290
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400291#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
292#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme9d0fc812009-01-28 21:39:57 +0100293#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
294
Olof Johanssondf382622009-09-29 10:22:45 -0400295#if defined(CONFIG_CMD_NET)
296/*----------------------------------------------------------------------------
297 * SMSC9211 Ethernet from SMSC9118 family
298 *----------------------------------------------------------------------------
299 */
300
Andreas Müller0f8d3eb2012-01-04 15:26:21 +0000301#define CONFIG_SMC911X
Olof Johanssondf382622009-09-29 10:22:45 -0400302#define CONFIG_SMC911X_32_BIT
Andreas Müller0f8d3eb2012-01-04 15:26:21 +0000303#define CONFIG_SMC911X_BASE 0x2C000000
Olof Johanssondf382622009-09-29 10:22:45 -0400304
305#endif /* (CONFIG_CMD_NET) */
306
Andreas Müller137703b2012-01-04 15:26:25 +0000307/*
308 * Leave it at 0x80008000 to allow booting new u-boot.bin with X-loader
309 * and older u-boot.bin with the new U-Boot SPL.
310 */
311#define CONFIG_SYS_TEXT_BASE 0x80008000
Steve Sakoman4d7d7bc2010-09-29 13:54:19 -0700312#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
Steve Sakoman31bfcf12010-10-27 05:04:30 -0700313#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
314#define CONFIG_SYS_INIT_RAM_SIZE 0x800
315#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
316 CONFIG_SYS_INIT_RAM_SIZE - \
317 GENERATED_GBL_DATA_SIZE)
Steve Sakoman4d7d7bc2010-09-29 13:54:19 -0700318
Aneesh V8e408522011-11-21 23:38:59 +0000319#define CONFIG_SYS_CACHELINE_SIZE 64
320
Andreas Müller137703b2012-01-04 15:26:25 +0000321/* Defines for SPL */
322#define CONFIG_SPL
Tom Rini47f7bca2012-08-13 12:03:19 -0700323#define CONFIG_SPL_FRAMEWORK
Andreas Müller137703b2012-01-04 15:26:25 +0000324#define CONFIG_SPL_NAND_SIMPLE
325#define CONFIG_SPL_TEXT_BASE 0x40200800
Tom Rinie0820cc2012-05-08 07:29:31 +0000326#define CONFIG_SPL_MAX_SIZE (54 * 1024) /* 8 KB for stack */
Andreas Müller137703b2012-01-04 15:26:25 +0000327#define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
328
329/* move malloc and bss high to prevent clashing with the main image */
330#define CONFIG_SYS_SPL_MALLOC_START 0x87000000
331#define CONFIG_SYS_SPL_MALLOC_SIZE 0x80000
332#define CONFIG_SPL_BSS_START_ADDR 0x87080000 /* end of minimum RAM */
333#define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */
334
335#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
336#define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */
337#define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION 1
338#define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME "u-boot.img"
339
Tom Rini49175c42012-05-08 07:29:32 +0000340#define CONFIG_SPL_BOARD_INIT
Andreas Müller137703b2012-01-04 15:26:25 +0000341#define CONFIG_SPL_LIBCOMMON_SUPPORT
342#define CONFIG_SPL_LIBDISK_SUPPORT
343#define CONFIG_SPL_I2C_SUPPORT
344#define CONFIG_SPL_LIBGENERIC_SUPPORT
345#define CONFIG_SPL_MMC_SUPPORT
346#define CONFIG_SPL_FAT_SUPPORT
347#define CONFIG_SPL_SERIAL_SUPPORT
348#define CONFIG_SPL_NAND_SUPPORT
Scott Wood6f2f01b2012-09-20 19:09:07 -0500349#define CONFIG_SPL_NAND_BASE
350#define CONFIG_SPL_NAND_DRIVERS
351#define CONFIG_SPL_NAND_ECC
Marek Vasut16e41c82012-07-21 05:02:27 +0000352#define CONFIG_SPL_GPIO_SUPPORT
Andreas Müller137703b2012-01-04 15:26:25 +0000353#define CONFIG_SPL_POWER_SUPPORT
354#define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
355
356/* NAND boot config */
357#define CONFIG_SYS_NAND_5_ADDR_CYCLE
358#define CONFIG_SYS_NAND_PAGE_COUNT 64
359#define CONFIG_SYS_NAND_PAGE_SIZE 2048
360#define CONFIG_SYS_NAND_OOBSIZE 64
361#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
362#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
363#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
364 10, 11, 12, 13}
365#define CONFIG_SYS_NAND_ECCSIZE 512
366#define CONFIG_SYS_NAND_ECCBYTES 3
pekon gupta3f719062013-11-18 19:03:01 +0530367#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW
Andreas Müller137703b2012-01-04 15:26:25 +0000368#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
369#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
370
Dirk Behme9d0fc812009-01-28 21:39:57 +0100371#endif /* __CONFIG_H */