2 * Configuration settings for the Gumstix Overo board.
4 * SPDX-License-Identifier: GPL-2.0+
10 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
13 #include <configs/ti_omap3_common.h>
15 /* Display CPU and Board information */
16 #define CONFIG_DISPLAY_CPUINFO
17 #define CONFIG_DISPLAY_BOARDINFO
19 /* call misc_init_r */
20 #define CONFIG_MISC_INIT_R
22 /* pass the revision tag */
23 #define CONFIG_REVISION_TAG
25 /* override size of malloc() pool */
26 #undef CONFIG_SYS_MALLOC_LEN
27 #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB sector */
28 /* Shift 128 << 15 provides 4 MiB heap to support UBI commands.
29 * Shift 128 << 10 provides 128 KiB heap for limited-memory devices. */
30 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 15))
33 #define CONFIG_SYS_I2C_OMAP34XX
36 #define CONFIG_TWL4030_LED
38 /* Initialize GPIOs by default */
39 #define CONFIG_OMAP3_GPIO_2 /* GPIO32..63 is in GPIO Bank 2 */
40 #define CONFIG_OMAP3_GPIO_3 /* GPIO64..95 is in GPIO Bank 3 */
41 #define CONFIG_OMAP3_GPIO_4 /* GPIO96..127 is in GPIO Bank 4 */
42 #define CONFIG_OMAP3_GPIO_5 /* GPIO128..159 is in GPIO Bank 5 */
43 #define CONFIG_OMAP3_GPIO_6 /* GPIO160..191 is in GPIO Bank 6 */
45 /* commands to include */
46 #define CONFIG_CMD_CACHE
47 #undef CONFIG_CMD_FPGA /* FPGA configuration Support */
48 #undef CONFIG_CMD_IMI /* iminfo */
49 #undef CONFIG_CMD_NFS /* NFS support */
52 #define CONFIG_CMD_UBI /* UBI-formated MTD partition support */
53 #define CONFIG_CMD_UBIFS /* Read-only UBI volume operations */
55 #define CONFIG_RBTREE /* required by CONFIG_CMD_UBI */
56 #define CONFIG_LZO /* required by CONFIG_CMD_UBIFS */
58 #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
60 /* NAND block size is 128 KiB. Synchronize these values with
61 * overo_nand_partitions in mach-omap2/board-overo.c in Linux:
62 * xloader 4 * NAND_BLOCK_SIZE = 512 KiB
63 * uboot 14 * NAND_BLOCK_SIZE = 1792 KiB
64 * uboot environtment 2 * NAND_BLOCK_SIZE = 256 KiB
65 * linux 64 * NAND_BLOCK_SIZE = 8 MiB
68 #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
69 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:" \
75 #else /* CONFIG_NAND */
76 #define MTDPARTS_DEFAULT
77 #endif /* CONFIG_NAND */
79 /* Board NAND Info. */
80 #define CONFIG_SYS_NAND_QUIET_TEST
81 #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
83 /* Environment information */
84 #define CONFIG_EXTRA_ENV_SETTINGS \
85 DEFAULT_LINUX_BOOT_ENV \
86 "fdtfile=overo.dtb\0" \
90 "console=ttyO2,115200n8\0" \
94 "dvimode=1024x768MR-16@60\0" \
95 "defaultdisplay=dvi\0" \
97 "mmcroot=/dev/mmcblk0p2 rw\0" \
98 "mmcrootfstype=ext3 rootwait\0" \
99 "nandroot=ubi0:rootfs ubi.mtd=4\0" \
100 "nandrootfstype=ubifs\0" \
101 "mtdparts=" MTDPARTS_DEFAULT "\0" \
102 "mmcargs=setenv bootargs console=${console} " \
104 "mpurate=${mpurate} " \
106 "omapfb.mode=dvi:${dvimode} " \
107 "omapdss.def_disp=${defaultdisplay} " \
109 "rootfstype=${mmcrootfstype}\0" \
110 "nandargs=setenv bootargs console=${console} " \
112 "mpurate=${mpurate} " \
114 "omapfb.mode=dvi:${dvimode} " \
115 "omapdss.def_disp=${defaultdisplay} " \
116 "root=${nandroot} " \
117 "rootfstype=${nandrootfstype}\0" \
118 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
119 "bootscript=echo Running boot script from mmc ...; " \
120 "source ${loadaddr}\0" \
121 "loadbootenv=load mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \
122 "importbootenv=echo Importing environment from mmc ...; " \
123 "env import -t ${loadaddr} ${filesize}\0" \
124 "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
125 "mmcboot=echo Booting from mmc...; " \
127 "bootm ${loadaddr}\0" \
128 "loadzimage=load mmc ${mmcdev}:2 ${loadaddr} ${bootdir}/${bootfile}\0" \
129 "loadfdt=load mmc ${mmcdev}:2 ${fdtaddr} ${bootdir}/${fdtfile}\0" \
130 "mmcbootfdt=echo Booting with DT from mmc ...; " \
132 "bootz ${loadaddr} - ${fdtaddr}\0" \
133 "nandboot=echo Booting from nand ...; " \
135 "nand read ${loadaddr} linux; " \
136 "bootm ${loadaddr}\0" \
138 #define CONFIG_BOOTCOMMAND \
139 "mmc dev ${mmcdev}; if mmc rescan; then " \
140 "if run loadbootscript; then " \
143 "if run loadbootenv; then " \
144 "echo Loaded environment from ${bootenv};" \
145 "run importbootenv;" \
147 "if test -n $uenvcmd; then " \
148 "echo Running uenvcmd ...;" \
151 "if run loaduimage; then " \
154 "if run loadzimage; then " \
155 "if test -n $fdtfile; then " \
156 "if run loadfdt; then " \
165 * Miscellaneous configurable options
167 #undef CONFIG_SYS_PROMPT
168 #define CONFIG_SYS_PROMPT "Overo # "
170 /* memtest works on */
171 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
172 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
173 0x01F00000) /* 31MB */
175 /* FLASH and environment organization */
176 /* Configure the PISMO */
177 #define PISMO1_NAND_SIZE GPMC_SIZE_128M
178 #define PISMO1_ONEN_SIZE GPMC_SIZE_128M
180 #if defined(CONFIG_NAND)
181 #define CONFIG_SYS_FLASH_BASE PISMO1_NAND_BASE
184 /* Monitor at start of flash */
185 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
186 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
188 #define CONFIG_ENV_IS_IN_NAND
189 #define ONENAND_ENV_OFFSET 0x240000 /* environment starts here */
190 #define SMNAND_ENV_OFFSET 0x240000 /* environment starts here */
192 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
193 #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
194 #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
196 /* Configure SMSC9211 ethernet */
197 #if defined(CONFIG_CMD_NET)
198 #define CONFIG_SMC911X
199 #define CONFIG_SMC911X_32_BIT
200 #define CONFIG_SMC911X_BASE 0x2C000000
201 #endif /* (CONFIG_CMD_NET) */
203 /* Initial RAM setup */
204 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
205 #define CONFIG_SYS_INIT_RAM_SIZE 0x800
206 #define CONFIG_SYS_CACHELINE_SIZE 64
208 /* NAND boot config */
209 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
210 #define CONFIG_SYS_NAND_PAGE_COUNT 64
211 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
212 #define CONFIG_SYS_NAND_OOBSIZE 64
213 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
214 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
215 #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
217 #define CONFIG_SYS_NAND_ECCSIZE 512
218 #define CONFIG_SYS_NAND_ECCBYTES 3
219 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW
220 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
221 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
223 #endif /* __CONFIG_H */