3 * ISEE 2007 SL, <www.iseebcn.com>
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.
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.
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,
23 #include <asm/sizes.h>
26 * High Level Configuration Options
28 #define CONFIG_OMAP 1 /* in a TI OMAP core */
29 #define CONFIG_OMAP34XX 1 /* which is a 34XX */
30 #define CONFIG_OMAP3_IGEP0030 1 /* working with IGEP0030 */
32 #define CONFIG_SDRC /* The chip has SDRC controller */
34 #include <asm/arch/cpu.h>
35 #include <asm/arch/omap3.h>
38 * Display CPU and Board information
40 #define CONFIG_DISPLAY_CPUINFO 1
41 #define CONFIG_DISPLAY_BOARDINFO 1
44 #define V_OSCK 26000000 /* Clock output from T2 */
45 #define V_SCLK (V_OSCK >> 1)
47 #define CONFIG_MISC_INIT_R
49 #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
50 #define CONFIG_SETUP_MEMORY_TAGS 1
51 #define CONFIG_INITRD_TAG 1
52 #define CONFIG_REVISION_TAG 1
54 #define CONFIG_OF_LIBFDT 1
57 * NS16550 Configuration
60 #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
62 #define CONFIG_SYS_NS16550
63 #define CONFIG_SYS_NS16550_SERIAL
64 #define CONFIG_SYS_NS16550_REG_SIZE (-4)
65 #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
67 /* select serial console configuration */
68 #define CONFIG_CONS_INDEX 3
69 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
70 #define CONFIG_SERIAL3 3
72 /* allow to overwrite serial and ethaddr */
73 #define CONFIG_ENV_OVERWRITE
74 #define CONFIG_BAUDRATE 115200
75 #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, 115200}
76 #define CONFIG_GENERIC_MMC 1
78 #define CONFIG_OMAP_HSMMC 1
79 #define CONFIG_DOS_PARTITION 1
82 #define CONFIG_OMAP3_NUMONYX_DDR 1
85 #define CONFIG_MUSB_UDC 1
86 #define CONFIG_USB_OMAP3 1
87 #define CONFIG_TWL4030_USB 1
89 /* USB device configuration */
90 #define CONFIG_USB_DEVICE 1
91 #define CONFIG_USB_TTY 1
92 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
94 /* Change these to suit your needs */
95 #define CONFIG_USBD_VENDORID 0x0451
96 #define CONFIG_USBD_PRODUCTID 0x5678
97 #define CONFIG_USBD_MANUFACTURER "Texas Instruments"
98 #define CONFIG_USBD_PRODUCT_NAME "IGEP"
100 /* commands to include */
101 #include <config_cmd_default.h>
103 #define CONFIG_CMD_CACHE
104 #define CONFIG_CMD_EXT2 /* EXT2 Support */
105 #define CONFIG_CMD_FAT /* FAT support */
106 #define CONFIG_CMD_I2C /* I2C serial bus support */
107 #define CONFIG_CMD_MMC /* MMC support */
108 #define CONFIG_CMD_ONENAND /* ONENAND support */
109 #define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
110 #define CONFIG_MTD_DEVICE
112 #undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
113 #undef CONFIG_CMD_NFS /* nfs */
114 #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
115 #undef CONFIG_CMD_IMLS /* List all found images */
117 #define CONFIG_SYS_NO_FLASH
118 #define CONFIG_HARD_I2C 1
119 #define CONFIG_SYS_I2C_SPEED 100000
120 #define CONFIG_SYS_I2C_SLAVE 1
121 #define CONFIG_SYS_I2C_BUS 0
122 #define CONFIG_SYS_I2C_BUS_SELECT 1
123 #define CONFIG_DRIVER_OMAP34XX_I2C 1
128 #define CONFIG_TWL4030_POWER 1
130 #define CONFIG_BOOTDELAY 3
132 #define CONFIG_EXTRA_ENV_SETTINGS \
134 "loadaddr=0x82000000\0" \
136 "console=ttyS2,115200n8\0" \
139 "dvimode=1024x768MR-16@60\0" \
140 "defaultdisplay=dvi\0" \
142 "mmcroot=/dev/mmcblk0p2 rw\0" \
143 "mmcrootfstype=ext3 rootwait\0" \
144 "nandroot=/dev/mtdblock4 rw\0" \
145 "nandrootfstype=jffs2\0" \
146 "mmcargs=setenv bootargs console=${console} " \
147 "mpurate=${mpurate} " \
149 "omapfb.mode=dvi:${dvimode} " \
151 "omapdss.def_disp=${defaultdisplay} " \
153 "rootfstype=${mmcrootfstype}\0" \
154 "nandargs=setenv bootargs console=${console} " \
155 "mpurate=${mpurate} " \
157 "omapfb.mode=dvi:${dvimode} " \
159 "omapdss.def_disp=${defaultdisplay} " \
160 "root=${nandroot} " \
161 "rootfstype=${nandrootfstype}\0" \
162 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
163 "bootscript=echo Running bootscript from mmc ...; " \
164 "source ${loadaddr}\0" \
165 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
166 "mmcboot=echo Booting from mmc ...; " \
168 "bootm ${loadaddr}\0" \
169 "nandboot=echo Booting from onenand ...; " \
171 "onenand read ${loadaddr} 280000 400000; " \
172 "bootm ${loadaddr}\0" \
174 #define CONFIG_BOOTCOMMAND \
175 "if mmc rescan ${mmcdev}; then " \
176 "if run loadbootscript; then " \
179 "if run loaduimage; then " \
181 "else run nandboot; " \
184 "else run nandboot; fi"
186 #define CONFIG_AUTO_COMPLETE 1
189 * Miscellaneous configurable options
191 #define CONFIG_SYS_LONGHELP /* undef to save memory */
192 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
193 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
194 #define CONFIG_SYS_PROMPT "U-Boot # "
195 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
196 /* Print Buffer Size */
197 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
198 sizeof(CONFIG_SYS_PROMPT) + 16)
199 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
200 /* Boot Argument Buffer Size */
201 #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
203 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) /* memtest */
205 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
206 0x01F00000) /* 31MB */
208 #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */
211 #define CONFIG_SYS_MONITOR_LEN (256 << 10)
214 * OMAP3 has 12 GP timers, they can be driven by the system clock
215 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
216 * This rate is divided by a local divisor.
218 #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
219 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
220 #define CONFIG_SYS_HZ 1000
225 * The stack sizes are set up in start.S using the settings below
227 #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */
230 * Physical Memory Map
233 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
234 #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
235 #define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 meg */
236 #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
239 * FLASH and environment organization
242 #define PISMO1_ONEN_SIZE GPMC_SIZE_128M /* Configure the PISMO */
244 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
246 #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
248 #define CONFIG_ENV_IS_IN_ONENAND 1
249 #define CONFIG_ENV_SIZE (512 << 10) /* Total Size Environment */
250 #define CONFIG_ENV_ADDR ONENAND_ENV_OFFSET
253 * Size of malloc() pool
255 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10))
257 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
258 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
259 #define CONFIG_SYS_INIT_RAM_SIZE 0x800
260 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
261 CONFIG_SYS_INIT_RAM_SIZE - \
262 GENERATED_GBL_DATA_SIZE)
264 #endif /* __CONFIG_H */