4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #ifndef __CONFIG_BALTOS_H
17 #define __CONFIG_BALTOS_H
19 #include <linux/sizes.h>
20 #include <configs/ti_am335x_common.h>
22 #define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM
25 #define V_OSCK 24000000 /* Clock output from T2 */
26 #define V_SCLK (V_OSCK)
28 /* Custom script for NOR */
29 #define CONFIG_SYS_LDSCRIPT "board/vscom/baltos/u-boot.lds"
31 /* Always 128 KiB env size */
32 #define CONFIG_ENV_SIZE (128 << 10)
35 #define CONFIG_SYS_BOOTM_LEN SZ_64M
40 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
41 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
42 "nandargs=setenv bootargs console=${console} " \
46 "rootfstype=${nandrootfstype}\0" \
47 "nandroot=ubi0:rootfs rw ubi.mtd=5\0" \
48 "nandrootfstype=ubifs rootwait=1\0" \
49 "nandboot=echo Booting from nand ...; " \
51 "setenv loadaddr 0x84000000; " \
53 "ubifsmount ubi0:kernel; " \
54 "ubifsload $loadaddr kernel-fit.itb;" \
56 "bootm ${loadaddr}#conf${board_name}; " \
57 "if test $? -ne 0; then echo Using default FIT config; " \
58 "bootm ${loadaddr}; fi;\0"
63 #ifndef CONFIG_SPL_BUILD
64 #define CONFIG_EXTRA_ENV_SETTINGS \
65 DEFAULT_LINUX_BOOT_ENV \
70 "fdtfile=undefined\0" \
71 "console=ttyO0,115200n8\0" \
73 "uuid_disk=${uuid_gpt_disk};" \
74 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
77 "mmcroot=/dev/mmcblk0p2 ro\0" \
78 "usbroot=/dev/sda2 ro\0" \
79 "mmcrootfstype=ext4 rootwait\0" \
80 "usbrootfstype=ext4 rootwait\0" \
81 "rootpath=/export/rootfs\0" \
83 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
85 "ramroot=/dev/ram0 rw\0" \
86 "ramrootfstype=ext2\0" \
87 "mmcargs=setenv bootargs console=${console} " \
91 "rootfstype=${mmcrootfstype}\0" \
92 "usbargs=setenv bootargs console=${console} " \
96 "rootfstype=${usbrootfstype}\0" \
97 "spiroot=/dev/mtdblock4 rw\0" \
98 "spirootfstype=jffs2\0" \
99 "spisrcaddr=0xe0000\0" \
100 "spiimgsize=0x362000\0" \
102 "spiargs=setenv bootargs console=${console} " \
105 "rootfstype=${spirootfstype}\0" \
106 "netargs=setenv bootargs console=${console} " \
109 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
111 "bootenv=uEnv.txt\0" \
112 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
113 "usbloadbootenv=load usb 0:1 ${loadaddr} ${bootenv}\0" \
114 "importbootenv=echo Importing environment from mmc ...; " \
115 "env import -t $loadaddr $filesize\0" \
116 "usbimportbootenv=echo Importing environment from USB ...; " \
117 "env import -t $loadaddr $filesize\0" \
118 "ramargs=setenv bootargs console=${console} " \
121 "rootfstype=${ramrootfstype}\0" \
122 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
123 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
124 "usbloadimage=load usb 0:1 ${loadaddr} kernel-fit.itb\0" \
125 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
126 "usbloados=run usbargs; " \
127 "bootm ${loadaddr}#conf${board_name}; " \
128 "if test $? -ne 0; then " \
129 "echo Using default FIT configuration; " \
130 "bootm ${loadaddr}; " \
132 "mmcloados=run mmcargs; " \
133 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
134 "if run loadfdt; then " \
135 "bootz ${loadaddr} - ${fdtaddr}; " \
137 "if test ${boot_fdt} = try; then " \
140 "echo WARN: Cannot load the DT; " \
146 "usbboot=usb reset; " \
147 "if usb storage; then " \
148 "echo USB drive found;" \
149 "if run usbloadbootenv; then " \
150 "echo Loaded environment from ${bootenv};" \
151 "run usbimportbootenv;" \
153 "if test -n $uenvcmd; then " \
154 "echo Running uenvcmd ...;" \
157 "if run usbloadimage; then " \
161 "mmcboot=mmc dev ${mmcdev}; " \
162 "if mmc rescan; then " \
163 "echo SD/MMC found on device ${mmcdev};" \
164 "if run loadbootenv; then " \
165 "echo Loaded environment from ${bootenv};" \
166 "run importbootenv;" \
168 "if test -n $uenvcmd; then " \
169 "echo Running uenvcmd ...;" \
172 "if run loadimage; then " \
176 "spiboot=echo Booting from spi ...; " \
178 "sf probe ${spibusno}:0; " \
179 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
180 "bootz ${loadaddr}\0" \
181 "netboot=echo Booting from network ...; " \
182 "setenv autoload no; " \
184 "tftp ${loadaddr} ${bootfile}; " \
185 "tftp ${fdtaddr} ${fdtfile}; " \
187 "bootz ${loadaddr} - ${fdtaddr}\0" \
188 "ramboot=echo Booting from ramdisk ...; " \
190 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
191 "findfdt=setenv fdtfile am335x-baltos.dtb\0" \
196 #define CONFIG_BOOTCOMMAND \
200 "setenv mmcdev 1; " \
201 "setenv bootpart 1:2; " \
205 /* NS16550 Configuration */
206 #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
207 #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
208 #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
209 #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
210 #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
211 #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
213 #define CONFIG_ENV_EEPROM_IS_ON_I2C
214 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
215 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
218 #define CONFIG_POWER_TPS65910
221 #ifndef CONFIG_NOR_BOOT
224 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
225 #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
226 CONFIG_SYS_NAND_PAGE_SIZE)
227 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
228 #define CONFIG_SYS_NAND_OOBSIZE 64
229 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
230 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
231 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
232 10, 11, 12, 13, 14, 15, 16, 17, \
233 18, 19, 20, 21, 22, 23, 24, 25, \
234 26, 27, 28, 29, 30, 31, 32, 33, \
235 34, 35, 36, 37, 38, 39, 40, 41, \
236 42, 43, 44, 45, 46, 47, 48, 49, \
237 50, 51, 52, 53, 54, 55, 56, 57, }
239 #define CONFIG_SYS_NAND_ECCSIZE 512
240 #define CONFIG_SYS_NAND_ECCBYTES 14
241 #define CONFIG_SYS_NAND_ONFI_DETECTION
242 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
243 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
248 * USB configuration. We enable MUSB support, both for host and for
249 * gadget. We set USB0 as peripheral and USB1 as host, based on the
250 * board schematic and physical port wired to each. Then for host we
251 * add mass storage support and for gadget we add both RNDIS ethernet
254 #define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
255 #define CONFIG_AM335X_USB0
256 #define CONFIG_AM335X_USB0_MODE MUSB_HOST
257 #define CONFIG_AM335X_USB1
258 #define CONFIG_AM335X_USB1_MODE MUSB_OTG
262 #define GPMC_NAND_ECC_LP_x8_LAYOUT 1
265 #endif /* ! __CONFIG_BALTOS_H */