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 /* Always 128 KiB env size */
29 #define CONFIG_ENV_SIZE (128 << 10)
32 #define CONFIG_SYS_BOOTM_LEN SZ_64M
37 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
38 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
39 "nandargs=setenv bootargs console=${console} " \
43 "rootfstype=${nandrootfstype}\0" \
44 "nandroot=ubi0:rootfs rw ubi.mtd=5\0" \
45 "nandrootfstype=ubifs rootwait=1\0" \
46 "nandboot=echo Booting from nand ...; " \
48 "setenv loadaddr 0x84000000; " \
50 "ubifsmount ubi0:kernel; " \
51 "ubifsload $loadaddr kernel-fit.itb;" \
53 "bootm ${loadaddr}#conf${board_name}; " \
54 "if test $? -ne 0; then echo Using default FIT config; " \
55 "bootm ${loadaddr}; fi;\0"
60 #ifndef CONFIG_SPL_BUILD
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62 DEFAULT_LINUX_BOOT_ENV \
67 "fdtfile=undefined\0" \
68 "console=ttyO0,115200n8\0" \
70 "uuid_disk=${uuid_gpt_disk};" \
71 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
74 "mmcroot=/dev/mmcblk0p2 ro\0" \
75 "usbroot=/dev/sda2 ro\0" \
76 "mmcrootfstype=ext4 rootwait\0" \
77 "usbrootfstype=ext4 rootwait\0" \
78 "rootpath=/export/rootfs\0" \
80 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
82 "ramroot=/dev/ram0 rw\0" \
83 "ramrootfstype=ext2\0" \
84 "mmcargs=setenv bootargs console=${console} " \
88 "rootfstype=${mmcrootfstype}\0" \
89 "usbargs=setenv bootargs console=${console} " \
93 "rootfstype=${usbrootfstype}\0" \
94 "spiroot=/dev/mtdblock4 rw\0" \
95 "spirootfstype=jffs2\0" \
96 "spisrcaddr=0xe0000\0" \
97 "spiimgsize=0x362000\0" \
99 "spiargs=setenv bootargs console=${console} " \
102 "rootfstype=${spirootfstype}\0" \
103 "netargs=setenv bootargs console=${console} " \
106 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
108 "bootenv=uEnv.txt\0" \
109 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
110 "usbloadbootenv=load usb 0:1 ${loadaddr} ${bootenv}\0" \
111 "importbootenv=echo Importing environment from mmc ...; " \
112 "env import -t $loadaddr $filesize\0" \
113 "usbimportbootenv=echo Importing environment from USB ...; " \
114 "env import -t $loadaddr $filesize\0" \
115 "ramargs=setenv bootargs console=${console} " \
118 "rootfstype=${ramrootfstype}\0" \
119 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
120 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
121 "usbloadimage=load usb 0:1 ${loadaddr} kernel-fit.itb\0" \
122 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
123 "usbloados=run usbargs; " \
124 "bootm ${loadaddr}#conf${board_name}; " \
125 "if test $? -ne 0; then " \
126 "echo Using default FIT configuration; " \
127 "bootm ${loadaddr}; " \
129 "mmcloados=run mmcargs; " \
130 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
131 "if run loadfdt; then " \
132 "bootz ${loadaddr} - ${fdtaddr}; " \
134 "if test ${boot_fdt} = try; then " \
137 "echo WARN: Cannot load the DT; " \
143 "usbboot=usb reset; " \
144 "if usb storage; then " \
145 "echo USB drive found;" \
146 "if run usbloadbootenv; then " \
147 "echo Loaded environment from ${bootenv};" \
148 "run usbimportbootenv;" \
150 "if test -n $uenvcmd; then " \
151 "echo Running uenvcmd ...;" \
154 "if run usbloadimage; then " \
158 "mmcboot=mmc dev ${mmcdev}; " \
159 "if mmc rescan; then " \
160 "echo SD/MMC found on device ${mmcdev};" \
161 "if run loadbootenv; then " \
162 "echo Loaded environment from ${bootenv};" \
163 "run importbootenv;" \
165 "if test -n $uenvcmd; then " \
166 "echo Running uenvcmd ...;" \
169 "if run loadimage; then " \
173 "spiboot=echo Booting from spi ...; " \
175 "sf probe ${spibusno}:0; " \
176 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
177 "bootz ${loadaddr}\0" \
178 "netboot=echo Booting from network ...; " \
179 "setenv autoload no; " \
181 "tftp ${loadaddr} ${bootfile}; " \
182 "tftp ${fdtaddr} ${fdtfile}; " \
184 "bootz ${loadaddr} - ${fdtaddr}\0" \
185 "ramboot=echo Booting from ramdisk ...; " \
187 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
188 "findfdt=setenv fdtfile am335x-baltos.dtb\0" \
193 #define CONFIG_BOOTCOMMAND \
197 "setenv mmcdev 1; " \
198 "setenv bootpart 1:2; " \
202 /* NS16550 Configuration */
203 #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
204 #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
205 #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
206 #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
207 #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
208 #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
210 #define CONFIG_ENV_EEPROM_IS_ON_I2C
211 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
212 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
215 #define CONFIG_POWER_TPS65910
218 #ifndef CONFIG_NOR_BOOT
221 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
222 #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
223 CONFIG_SYS_NAND_PAGE_SIZE)
224 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
225 #define CONFIG_SYS_NAND_OOBSIZE 64
226 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
227 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
228 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
229 10, 11, 12, 13, 14, 15, 16, 17, \
230 18, 19, 20, 21, 22, 23, 24, 25, \
231 26, 27, 28, 29, 30, 31, 32, 33, \
232 34, 35, 36, 37, 38, 39, 40, 41, \
233 42, 43, 44, 45, 46, 47, 48, 49, \
234 50, 51, 52, 53, 54, 55, 56, 57, }
236 #define CONFIG_SYS_NAND_ECCSIZE 512
237 #define CONFIG_SYS_NAND_ECCBYTES 14
238 #define CONFIG_SYS_NAND_ONFI_DETECTION
239 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
240 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
245 * USB configuration. We enable MUSB support, both for host and for
246 * gadget. We set USB0 as peripheral and USB1 as host, based on the
247 * board schematic and physical port wired to each. Then for host we
248 * add mass storage support and for gadget we add both RNDIS ethernet
251 #define CONFIG_AM335X_USB0
252 #define CONFIG_AM335X_USB0_MODE MUSB_HOST
253 #define CONFIG_AM335X_USB1
254 #define CONFIG_AM335X_USB1_MODE MUSB_OTG
258 #define GPMC_NAND_ECC_LP_x8_LAYOUT 1
261 #endif /* ! __CONFIG_BALTOS_H */