]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/baltos.h
6242895014683f4b076559ca469c07ab3adebb42
[people/ms/u-boot.git] / include / configs / baltos.h
1 /*
2 * am335x_evm.h
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
5 *
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.
9 *
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.
14 */
15
16 #ifndef __CONFIG_BALTOS_H
17 #define __CONFIG_BALTOS_H
18
19 #include <configs/ti_am335x_common.h>
20
21 #define MACH_TYPE_TIAM335EVM 3589 /* Until the next sync */
22 #define CONFIG_MACH_TYPE MACH_TYPE_TIAM335EVM
23 #define CONFIG_BOARD_LATE_INIT
24
25 /* Clock Defines */
26 #define V_OSCK 24000000 /* Clock output from T2 */
27 #define V_SCLK (V_OSCK)
28
29 /* Custom script for NOR */
30 #define CONFIG_SYS_LDSCRIPT "board/vscom/baltos/u-boot.lds"
31
32 /* Always 128 KiB env size */
33 #define CONFIG_ENV_SIZE (128 << 10)
34
35 /* Enhance our eMMC support / experience. */
36 #define CONFIG_CMD_GPT
37 #define CONFIG_EFI_PARTITION
38 #define CONFIG_PARTITION_UUIDS
39 #define CONFIG_CMD_PART
40
41 /* FIT support */
42 #define CONFIG_FIT
43 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
44 #define CONFIG_OF_BOARD_SETUP
45
46 /* UBI Support */
47 #define CONFIG_CMD_MTDPARTS
48 #define CONFIG_MTD_PARTITIONS
49 #define CONFIG_MTD_DEVICE
50 #define CONFIG_RBTREE
51 #define CONFIG_LZO
52 #define CONFIG_CMD_UBI
53 #define CONFIG_CMD_UBIFS
54
55 /* I2C configuration */
56 #undef CONFIG_SYS_OMAP24_I2C_SPEED
57 #define CONFIG_SYS_OMAP24_I2C_SPEED 10000
58
59 #ifdef CONFIG_NAND
60 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x000c0000
61 #ifdef CONFIG_SPL_OS_BOOT
62 #define CONFIG_CMD_SPL_NAND_OFS 0x00080000 /* os parameters */
63 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */
64 #define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
65 #endif
66 #define NANDARGS \
67 "mtdids=" MTDIDS_DEFAULT "\0" \
68 "mtdparts=" MTDPARTS_DEFAULT "\0" \
69 "nandargs=setenv bootargs console=${console} " \
70 "${optargs} " \
71 "${mtdparts} " \
72 "root=${nandroot} " \
73 "rootfstype=${nandrootfstype}\0" \
74 "nandroot=ubi0:rootfs rw ubi.mtd=5\0" \
75 "nandrootfstype=ubifs rootwait=1\0" \
76 "nandboot=echo Booting from nand ...; " \
77 "run nandargs; " \
78 "setenv loadaddr 0x84000000; " \
79 "ubi part UBI; " \
80 "ubifsmount ubi0:kernel; " \
81 "ubifsload $loadaddr kernel-fit.itb;" \
82 "ubifsumount; " \
83 "bootm ${loadaddr}#conf${board_name}\0"
84 #else
85 #define NANDARGS ""
86 #endif
87
88 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
89
90 #ifndef CONFIG_SPL_BUILD
91 #define CONFIG_EXTRA_ENV_SETTINGS \
92 DEFAULT_LINUX_BOOT_ENV \
93 "boot_fdt=try\0" \
94 "bootpart=0:2\0" \
95 "bootdir=/boot\0" \
96 "bootfile=zImage\0" \
97 "fdtfile=undefined\0" \
98 "console=ttyO0,115200n8\0" \
99 "partitions=" \
100 "uuid_disk=${uuid_gpt_disk};" \
101 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
102 "optargs=\0" \
103 "mmcdev=0\0" \
104 "mmcroot=/dev/mmcblk0p2 ro\0" \
105 "mmcrootfstype=ext4 rootwait\0" \
106 "rootpath=/export/rootfs\0" \
107 "nfsopts=nolock\0" \
108 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
109 "::off\0" \
110 "ramroot=/dev/ram0 rw\0" \
111 "ramrootfstype=ext2\0" \
112 "mmcargs=setenv bootargs console=${console} " \
113 "${optargs} " \
114 "${mtdparts} " \
115 "root=${mmcroot} " \
116 "rootfstype=${mmcrootfstype}\0" \
117 "spiroot=/dev/mtdblock4 rw\0" \
118 "spirootfstype=jffs2\0" \
119 "spisrcaddr=0xe0000\0" \
120 "spiimgsize=0x362000\0" \
121 "spibusno=0\0" \
122 "spiargs=setenv bootargs console=${console} " \
123 "${optargs} " \
124 "root=${spiroot} " \
125 "rootfstype=${spirootfstype}\0" \
126 "netargs=setenv bootargs console=${console} " \
127 "${optargs} " \
128 "root=/dev/nfs " \
129 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
130 "ip=dhcp\0" \
131 "bootenv=uEnv.txt\0" \
132 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
133 "importbootenv=echo Importing environment from mmc ...; " \
134 "env import -t $loadaddr $filesize\0" \
135 "ramargs=setenv bootargs console=${console} " \
136 "${optargs} " \
137 "root=${ramroot} " \
138 "rootfstype=${ramrootfstype}\0" \
139 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
140 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
141 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
142 "mmcloados=run mmcargs; " \
143 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
144 "if run loadfdt; then " \
145 "bootz ${loadaddr} - ${fdtaddr}; " \
146 "else " \
147 "if test ${boot_fdt} = try; then " \
148 "bootz; " \
149 "else " \
150 "echo WARN: Cannot load the DT; " \
151 "fi; " \
152 "fi; " \
153 "else " \
154 "bootz; " \
155 "fi;\0" \
156 "mmcboot=mmc dev ${mmcdev}; " \
157 "if mmc rescan; then " \
158 "echo SD/MMC found on device ${mmcdev};" \
159 "if run loadbootenv; then " \
160 "echo Loaded environment from ${bootenv};" \
161 "run importbootenv;" \
162 "fi;" \
163 "if test -n $uenvcmd; then " \
164 "echo Running uenvcmd ...;" \
165 "run uenvcmd;" \
166 "fi;" \
167 "if run loadimage; then " \
168 "run mmcloados;" \
169 "fi;" \
170 "fi;\0" \
171 "spiboot=echo Booting from spi ...; " \
172 "run spiargs; " \
173 "sf probe ${spibusno}:0; " \
174 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
175 "bootz ${loadaddr}\0" \
176 "netboot=echo Booting from network ...; " \
177 "setenv autoload no; " \
178 "dhcp; " \
179 "tftp ${loadaddr} ${bootfile}; " \
180 "tftp ${fdtaddr} ${fdtfile}; " \
181 "run netargs; " \
182 "bootz ${loadaddr} - ${fdtaddr}\0" \
183 "ramboot=echo Booting from ramdisk ...; " \
184 "run ramargs; " \
185 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
186 "findfdt=setenv fdtfile am335x-baltos.dtb\0" \
187 NANDARGS
188 /*DFUARGS*/
189 #endif
190
191 #define CONFIG_BOOTCOMMAND \
192 "run findfdt; " \
193 "run mmcboot;" \
194 "setenv mmcdev 1; " \
195 "setenv bootpart 1:2; " \
196 "run mmcboot;" \
197 "run nandboot;"
198
199 #define CONFIG_CMD_SAVEENV
200 #define CONFIG_CMD_NFS
201
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 */
209 #define CONFIG_BAUDRATE 115200
210
211 #define CONFIG_CMD_EEPROM
212 #define CONFIG_ENV_EEPROM_IS_ON_I2C
213 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
214 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
215 #define CONFIG_SYS_I2C_MULTI_EEPROMS
216
217 /* PMIC support */
218 #define CONFIG_POWER_TPS65910
219
220 /* SPL */
221 #ifndef CONFIG_NOR_BOOT
222 #define CONFIG_SPL_POWER_SUPPORT
223 #define CONFIG_SPL_YMODEM_SUPPORT
224
225 /* Bootcount using the RTC block */
226 #define CONFIG_BOOTCOUNT_LIMIT
227 #define CONFIG_BOOTCOUNT_AM33XX
228
229 /* USB gadget RNDIS */
230 /*#define CONFIG_SPL_MUSB_NEW_SUPPORT*/
231
232 /* General network SPL, both CPSW and USB gadget RNDIS */
233 /*#define CONFIG_SPL_NET_SUPPORT
234 #define CONFIG_SPL_ENV_SUPPORT
235 #define CONFIG_SPL_NET_VCI_STRING "AM335x U-Boot SPL"*/
236
237 #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/am33xx/u-boot-spl.lds"
238
239 #ifdef CONFIG_NAND
240 #define CONFIG_NAND_OMAP_GPMC
241 #define CONFIG_NAND_OMAP_ELM
242 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
243 #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
244 CONFIG_SYS_NAND_PAGE_SIZE)
245 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
246 #define CONFIG_SYS_NAND_OOBSIZE 64
247 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
248 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
249 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
250 10, 11, 12, 13, 14, 15, 16, 17, \
251 18, 19, 20, 21, 22, 23, 24, 25, \
252 26, 27, 28, 29, 30, 31, 32, 33, \
253 34, 35, 36, 37, 38, 39, 40, 41, \
254 42, 43, 44, 45, 46, 47, 48, 49, \
255 50, 51, 52, 53, 54, 55, 56, 57, }
256
257 #define CONFIG_SYS_NAND_ECCSIZE 512
258 #define CONFIG_SYS_NAND_ECCBYTES 14
259 #define CONFIG_SYS_NAND_ONFI_DETECTION
260 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
261 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
262 #endif
263 #endif
264
265 /*
266 * USB configuration. We enable MUSB support, both for host and for
267 * gadget. We set USB0 as peripheral and USB1 as host, based on the
268 * board schematic and physical port wired to each. Then for host we
269 * add mass storage support and for gadget we add both RNDIS ethernet
270 * and DFU.
271 */
272 #define CONFIG_USB_MUSB_DSPS
273 #define CONFIG_ARCH_MISC_INIT
274 #define CONFIG_MUSB_GADGET
275 #define CONFIG_MUSB_PIO_ONLY
276 #define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
277 #define CONFIG_USB_GADGET
278 #define CONFIG_USBDOWNLOAD_GADGET
279 #define CONFIG_USB_GADGET_DUALSPEED
280 #define CONFIG_USB_GADGET_VBUS_DRAW 2
281 #define CONFIG_MUSB_HOST
282 #define CONFIG_AM335X_USB0
283 #define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
284 #define CONFIG_AM335X_USB1
285 #define CONFIG_AM335X_USB1_MODE MUSB_HOST
286
287 #ifdef CONFIG_MUSB_HOST
288 #define CONFIG_CMD_USB
289 #define CONFIG_USB_STORAGE
290 #endif
291
292 #ifdef CONFIG_MUSB_GADGET
293 #define CONFIG_USB_ETHER
294 #define CONFIG_USB_ETH_RNDIS
295 #define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
296
297 /* USB TI's IDs */
298 #define CONFIG_G_DNL_VENDOR_NUM 0x0403
299 #define CONFIG_G_DNL_PRODUCT_NUM 0xBD00
300 #define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
301 #endif /* CONFIG_MUSB_GADGET */
302
303 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
304 /* disable host part of MUSB in SPL */
305 #undef CONFIG_MUSB_HOST
306 /* disable EFI partitions and partition UUID support */
307 #undef CONFIG_PARTITION_UUIDS
308 #undef CONFIG_EFI_PARTITION
309 /*
310 * Disable CPSW SPL support so we fit within the 101KiB limit.
311 */
312 #undef CONFIG_SPL_ETH_SUPPORT
313 #endif
314
315 /* Network. */
316 #define CONFIG_PHY_GIGE
317 #define CONFIG_PHYLIB
318 #define CONFIG_PHY_ADDR 0
319 #define CONFIG_PHY_SMSC
320 #define CONFIG_MII
321 #define CONFIG_CMD_MII
322 #define CONFIG_PHY_ATHEROS
323
324 /* NAND support */
325 #ifdef CONFIG_NAND
326 #define CONFIG_CMD_NAND
327 #define GPMC_NAND_ECC_LP_x8_LAYOUT 1
328 #if !defined(CONFIG_SPI_BOOT) && !defined(CONFIG_NOR_BOOT)
329 #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
330 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:128k(SPL)," \
331 "128k(SPL.backup1)," \
332 "128k(SPL.backup2)," \
333 "128k(SPL.backup3)," \
334 "1920k(u-boot)," \
335 "-(UBI)"
336 #define CONFIG_ENV_IS_NOWHERE
337 #endif
338 #endif
339
340 #endif /* ! __CONFIG_BALTOS_H */