blob: 049a8e4265e6f152022d7c74c1956549a021e882 [file] [log] [blame]
Chandan Nath7d744102011-10-14 02:58:26 +00001/*
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_AM335X_EVM_H
17#define __CONFIG_AM335X_EVM_H
18
Chandan Nath68e382b2012-01-09 20:38:55 +000019#define CONFIG_AM33XX
SRICHARAN R3f30b0a2013-04-24 00:41:24 +000020#define CONFIG_OMAP
Chandan Nath7d744102011-10-14 02:58:26 +000021
Tom Rini8eb48ff2013-03-14 11:15:25 +000022#include <asm/arch/omap.h>
Chandan Nath7d744102011-10-14 02:58:26 +000023
Chandan Nath5b9896d2012-07-24 12:22:20 +000024#define CONFIG_DMA_COHERENT
25#define CONFIG_DMA_COHERENT_SIZE (1 << 20)
26
Tom Rini142184e2012-06-12 14:54:32 -070027#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
28#define CONFIG_SYS_MALLOC_LEN (1024 << 10)
29#define CONFIG_SYS_LONGHELP /* undef to save memory */
30#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
Chandan Nath5c668742012-01-09 20:38:57 +000031#define CONFIG_SYS_PROMPT "U-Boot# "
Tom Rini40271852012-10-24 07:28:17 +000032#define CONFIG_BOARD_LATE_INIT
Chandan Nath7d744102011-10-14 02:58:26 +000033#define CONFIG_SYS_NO_FLASH
Tom Rini077a6a62011-10-21 12:23:06 +000034#define MACH_TYPE_TIAM335EVM 3589 /* Until the next sync */
Chandan Nath7d744102011-10-14 02:58:26 +000035#define CONFIG_MACH_TYPE MACH_TYPE_TIAM335EVM
36
Tom Rini142184e2012-06-12 14:54:32 -070037#define CONFIG_OF_LIBFDT
Tom Rinic64ea612013-02-19 11:18:15 +000038#define CONFIG_CMD_BOOTZ
Tom Rini142184e2012-06-12 14:54:32 -070039#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
Justin Watersab3884a2013-07-11 09:54:59 -040040#define CONFIG_CMDLINE_EDITING
41#define CONFIG_STACKSIZE (128 * 1024)
42#define CONFIG_AUTO_COMPLETE
Tom Rini142184e2012-06-12 14:54:32 -070043#define CONFIG_SETUP_MEMORY_TAGS
44#define CONFIG_INITRD_TAG
45
Steve Kipiszc1399b42013-07-18 15:13:04 -040046/* Custom script for NOR */
47#define CONFIG_SYS_LDSCRIPT "board/ti/am335x/u-boot.lds"
48
Pantelis Antoniou005ed122013-03-14 05:32:53 +000049#define CONFIG_SYS_CACHELINE_SIZE 64
50
Tom Rini142184e2012-06-12 14:54:32 -070051/* commands to include */
52#include <config_cmd_default.h>
53
Chandan Nath7d744102011-10-14 02:58:26 +000054#define CONFIG_CMD_ASKENV
55#define CONFIG_VERSION_VARIABLE
56
Justin Waters735a6272013-07-11 09:54:58 -040057#ifdef CONFIG_NAND
58#define NANDARGS \
59 "mtdids=" MTDIDS_DEFAULT "\0" \
60 "mtdparts=" MTDPARTS_DEFAULT "\0" \
61 "nandargs=setenv bootargs console=${console} " \
62 "${optargs} " \
63 "root=${nandroot} " \
64 "rootfstype=${nandrootfstype}\0" \
65 "dfu_alt_info_nand=" DFU_ALT_INFO_NAND "\0" \
66 "nandroot=ubi0:rootfs rw ubi.mtd=7,2048\0" \
67 "nandrootfstype=ubifs rootwait=1\0" \
68 "nandsrcaddr=0x280000\0" \
69 "nandboot=echo Booting from nand ...; " \
70 "run nandargs; " \
71 "nand read ${loadaddr} ${nandsrcaddr} ${nandimgsize}; " \
72 "bootm ${loadaddr}\0" \
73 "nandimgsize=0x500000\0"
74#else
75#define NANDARGS ""
76#endif
77
Chandan Nath7d744102011-10-14 02:58:26 +000078/* set to negative value for no autoboot */
Koen Kooi18534e22012-09-26 07:19:43 +000079#define CONFIG_BOOTDELAY 1
Tom Rini40271852012-10-24 07:28:17 +000080#define CONFIG_ENV_VARS_UBOOT_CONFIG
81#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
Tom Rini73e0dac2013-02-26 13:08:53 -050082#ifndef CONFIG_SPL_BUILD
Chandan Nath7d744102011-10-14 02:58:26 +000083#define CONFIG_EXTRA_ENV_SETTINGS \
Tom Rini142184e2012-06-12 14:54:32 -070084 "loadaddr=0x80200000\0" \
85 "fdtaddr=0x80F80000\0" \
hvaibhav@ti.com8f12c7c2012-09-18 09:26:05 +000086 "fdt_high=0xffffffff\0" \
Tom Rini142184e2012-06-12 14:54:32 -070087 "rdaddr=0x81000000\0" \
Koen Kooi02bb11f2013-03-14 05:55:21 +000088 "bootdir=/boot\0" \
89 "bootfile=uImage\0" \
Dan Murphyff302722013-06-06 13:27:06 -050090 "fdtfile=undefined\0" \
Tom Rini142184e2012-06-12 14:54:32 -070091 "console=ttyO0,115200n8\0" \
92 "optargs=\0" \
Pantelis Antoniou66449482013-03-14 05:32:55 +000093 "dfu_alt_info_mmc=" DFU_ALT_INFO_MMC "\0" \
94 "dfu_alt_info_emmc=rawemmc mmc 0 3751936\0" \
Tom Rini142184e2012-06-12 14:54:32 -070095 "mmcdev=0\0" \
Koen Kooi18534e22012-09-26 07:19:43 +000096 "mmcroot=/dev/mmcblk0p2 ro\0" \
Tom Rini142184e2012-06-12 14:54:32 -070097 "mmcrootfstype=ext4 rootwait\0" \
Koen Kooid5d12bf2013-03-14 05:55:20 +000098 "bootpart=0:2\0" \
Chase Maupindfdaff72013-02-08 11:20:13 +000099 "rootpath=/export/rootfs\0" \
100 "nfsopts=nolock\0" \
101 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
102 "::off\0" \
Tom Rini142184e2012-06-12 14:54:32 -0700103 "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=${rdaddr},64M\0" \
104 "ramrootfstype=ext2\0" \
105 "mmcargs=setenv bootargs console=${console} " \
106 "${optargs} " \
107 "root=${mmcroot} " \
108 "rootfstype=${mmcrootfstype}\0" \
Chase Maupin5292c562013-02-08 11:20:12 +0000109 "spiroot=/dev/mtdblock4 rw\0" \
110 "spirootfstype=jffs2\0" \
111 "spisrcaddr=0xe0000\0" \
112 "spiimgsize=0x362000\0" \
113 "spibusno=0\0" \
114 "spiargs=setenv bootargs console=${console} " \
115 "${optargs} " \
116 "root=${spiroot} " \
117 "rootfstype=${spirootfstype}\0" \
Chase Maupindfdaff72013-02-08 11:20:13 +0000118 "netargs=setenv bootargs console=${console} " \
119 "${optargs} " \
120 "root=/dev/nfs " \
121 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
122 "ip=dhcp\0" \
Tom Rini142184e2012-06-12 14:54:32 -0700123 "bootenv=uEnv.txt\0" \
Koen Kooid5d12bf2013-03-14 05:55:20 +0000124 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
Tom Rini142184e2012-06-12 14:54:32 -0700125 "importbootenv=echo Importing environment from mmc ...; " \
126 "env import -t $loadaddr $filesize\0" \
127 "ramargs=setenv bootargs console=${console} " \
128 "${optargs} " \
129 "root=${ramroot} " \
130 "rootfstype=${ramrootfstype}\0" \
Koen Kooid5d12bf2013-03-14 05:55:20 +0000131 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
Koen Kooi02bb11f2013-03-14 05:55:21 +0000132 "loaduimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
133 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
Justin Waters8c52edb2013-07-11 09:55:00 -0400134 "mmcboot=mmc dev ${mmcdev}; " \
135 "if mmc rescan; then " \
136 "echo SD/MMC found on device ${mmcdev};" \
137 "if run loadbootenv; then " \
138 "echo Loaded environment from ${bootenv};" \
139 "run importbootenv;" \
140 "fi;" \
141 "if test -n $uenvcmd; then " \
142 "echo Running uenvcmd ...;" \
143 "run uenvcmd;" \
144 "fi;" \
145 "if run loaduimage; then " \
146 "run loadfdt;" \
147 "run mmcargs; " \
148 "bootm ${loadaddr} - ${fdtaddr};" \
149 "fi;" \
150 "fi;\0" \
Chase Maupin5292c562013-02-08 11:20:12 +0000151 "spiboot=echo Booting from spi ...; " \
152 "run spiargs; " \
153 "sf probe ${spibusno}:0; " \
154 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
155 "bootm ${loadaddr}\0" \
Chase Maupindfdaff72013-02-08 11:20:13 +0000156 "netboot=echo Booting from network ...; " \
157 "setenv autoload no; " \
158 "dhcp; " \
159 "tftp ${loadaddr} ${bootfile}; " \
Koen Kooi02bb11f2013-03-14 05:55:21 +0000160 "tftp ${fdtaddr} ${fdtfile}; " \
Chase Maupindfdaff72013-02-08 11:20:13 +0000161 "run netargs; " \
Koen Kooi02bb11f2013-03-14 05:55:21 +0000162 "bootm ${loadaddr} - ${fdtaddr}\0" \
Tom Rini142184e2012-06-12 14:54:32 -0700163 "ramboot=echo Booting from ramdisk ...; " \
164 "run ramargs; " \
Koen Kooi02bb11f2013-03-14 05:55:21 +0000165 "bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Tom Rini40271852012-10-24 07:28:17 +0000166 "findfdt="\
167 "if test $board_name = A335BONE; then " \
168 "setenv fdtfile am335x-bone.dtb; fi; " \
Koen Kooib4aa5272013-03-14 05:55:19 +0000169 "if test $board_name = A335BNLT; then " \
170 "setenv fdtfile am335x-boneblack.dtb; fi; " \
Tom Rini40271852012-10-24 07:28:17 +0000171 "if test $board_name = A33515BB; then " \
172 "setenv fdtfile am335x-evm.dtb; fi; " \
173 "if test $board_name = A335X_SK; then " \
Tom Rini7b199752013-06-27 09:55:39 -0400174 "setenv fdtfile am335x-evmsk.dtb; fi; " \
Dan Murphyff302722013-06-06 13:27:06 -0500175 "if test $fdtfile = undefined; then " \
Justin Waters735a6272013-07-11 09:54:58 -0400176 "echo WARNING: Could not determine device tree to use; fi; \0" \
177 NANDARGS
Tom Rini73e0dac2013-02-26 13:08:53 -0500178#endif
179
Tom Rini142184e2012-06-12 14:54:32 -0700180#define CONFIG_BOOTCOMMAND \
Koen Kooi02bb11f2013-03-14 05:55:21 +0000181 "run findfdt; " \
Justin Waters8c52edb2013-07-11 09:55:00 -0400182 "run mmcboot;" \
183 "setenv mmcdev 1; " \
184 "setenv bootpart 1:2; " \
185 "run mmcboot;" \
186 "run nandboot;"
Chandan Nath7d744102011-10-14 02:58:26 +0000187
188/* Clock Defines */
189#define V_OSCK 24000000 /* Clock output from T2 */
Chandan Nath5c668742012-01-09 20:38:57 +0000190#define V_SCLK (V_OSCK)
Chandan Nath7d744102011-10-14 02:58:26 +0000191
Chandan Nath7d744102011-10-14 02:58:26 +0000192#define CONFIG_CMD_ECHO
193
Pantelis Antoniou66449482013-03-14 05:32:55 +0000194/* We set the max number of command args high to avoid HUSH bugs. */
195#define CONFIG_SYS_MAXARGS 64
Chandan Nath7d744102011-10-14 02:58:26 +0000196
197/* Console I/O Buffer Size */
198#define CONFIG_SYS_CBSIZE 512
199
200/* Print Buffer Size */
201#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
202 + sizeof(CONFIG_SYS_PROMPT) + 16)
203
204/* Boot Argument Buffer Size */
205#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
206
207/*
208 * memtest works on 8 MB in DRAM after skipping 32MB from
209 * start addr of ram disk
210 */
211#define CONFIG_SYS_MEMTEST_START (PHYS_DRAM_1 + (64 * 1024 * 1024))
212#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START \
213 + (8 * 1024 * 1024))
214
Chandan Nath7d744102011-10-14 02:58:26 +0000215#define CONFIG_SYS_LOAD_ADDR 0x81000000 /* Default load address */
Chandan Nath7d744102011-10-14 02:58:26 +0000216
Chandan Nathd6e97f82012-01-09 20:38:58 +0000217#define CONFIG_MMC
218#define CONFIG_GENERIC_MMC
219#define CONFIG_OMAP_HSMMC
220#define CONFIG_CMD_MMC
221#define CONFIG_DOS_PARTITION
222#define CONFIG_CMD_FAT
Pantelis Antoniou66449482013-03-14 05:32:55 +0000223#define CONFIG_FAT_WRITE
Chandan Nathd6e97f82012-01-09 20:38:58 +0000224#define CONFIG_CMD_EXT2
Koen Kooid5d12bf2013-03-14 05:55:20 +0000225#define CONFIG_CMD_EXT4
226#define CONFIG_CMD_FS_GENERIC
Chandan Nathd6e97f82012-01-09 20:38:58 +0000227
Tom Rini883401e2012-08-08 14:35:55 -0700228#define CONFIG_SPI
229#define CONFIG_OMAP3_SPI
230#define CONFIG_MTD_DEVICE
231#define CONFIG_SPI_FLASH
232#define CONFIG_SPI_FLASH_WINBOND
233#define CONFIG_CMD_SF
234#define CONFIG_SF_DEFAULT_SPEED (24000000)
235
Pantelis Antoniou66449482013-03-14 05:32:55 +0000236/* USB Composite download gadget - g_dnl */
237#define CONFIG_USB_GADGET
238#define CONFIG_USBDOWNLOAD_GADGET
239
240/* USB TI's IDs */
241#define CONFIG_USBD_HS
242#define CONFIG_G_DNL_VENDOR_NUM 0x0403
243#define CONFIG_G_DNL_PRODUCT_NUM 0xBD00
244#define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
245
246/* USB Device Firmware Update support */
247#define CONFIG_DFU_FUNCTION
248#define CONFIG_DFU_MMC
Pantelis Antoniou66449482013-03-14 05:32:55 +0000249#define CONFIG_CMD_DFU
250#define DFU_ALT_INFO_MMC \
251 "boot part 0 1;" \
252 "rootfs part 0 2;" \
253 "MLO fat 0 1;" \
254 "MLO.raw mmc 100 100;" \
Tom Rini9dae10c2013-07-08 12:15:15 -0400255 "u-boot.img.raw mmc 300 400;" \
256 "spl-os-args.raw mmc 80 80;" \
257 "spl-os-image.raw mmc 900 2000;" \
258 "spl-os-args fat 0 1;" \
259 "spl-os-image fat 0 1;" \
Pantelis Antoniou66449482013-03-14 05:32:55 +0000260 "u-boot.img fat 0 1;" \
261 "uEnv.txt fat 0 1"
Justin Waters735a6272013-07-11 09:54:58 -0400262#ifdef CONFIG_NAND
263#define CONFIG_DFU_NAND
Pantelis Antoniou66449482013-03-14 05:32:55 +0000264#define DFU_ALT_INFO_NAND \
265 "SPL part 0 1;" \
266 "SPL.backup1 part 0 2;" \
267 "SPL.backup2 part 0 3;" \
268 "SPL.backup3 part 0 4;" \
269 "u-boot part 0 5;" \
Tom Rini9dae10c2013-07-08 12:15:15 -0400270 "u-boot-spl-os part 0 6;" \
271 "kernel part 0 8;" \
272 "rootfs part 0 9"
Justin Waters735a6272013-07-11 09:54:58 -0400273#endif
Pantelis Antoniou66449482013-03-14 05:32:55 +0000274
Chandan Nath7d744102011-10-14 02:58:26 +0000275 /* Physical Memory Map */
276#define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
277#define PHYS_DRAM_1 0x80000000 /* DRAM Bank #1 */
Chandan Nath7d744102011-10-14 02:58:26 +0000278#define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
279
280#define CONFIG_SYS_SDRAM_BASE PHYS_DRAM_1
Tom Riniee5bce42012-08-08 17:03:10 -0700281#define CONFIG_SYS_INIT_SP_ADDR (NON_SECURE_SRAM_END - \
Chandan Nath7d744102011-10-14 02:58:26 +0000282 GENERATED_GBL_DATA_SIZE)
283 /* Platform/Board specific defs */
Chandan Nath7d744102011-10-14 02:58:26 +0000284#define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
285#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
Mark Jackson99fd5f62013-04-17 08:22:47 +0000286#define CONFIG_SYS_HZ 1000 /* 1ms clock */
Chandan Nath7d744102011-10-14 02:58:26 +0000287
288/* NS16550 Configuration */
289#define CONFIG_SYS_NS16550
290#define CONFIG_SYS_NS16550_SERIAL
291#define CONFIG_SYS_NS16550_REG_SIZE (-4)
292#define CONFIG_SYS_NS16550_CLK (48000000)
293#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
Andrew Bradford99162792012-10-25 08:21:32 -0400294#define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
295#define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
296#define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
297#define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
298#define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
Chandan Nath7d744102011-10-14 02:58:26 +0000299
Patil, Rachna5f70c512012-01-22 23:47:01 +0000300/* I2C Configuration */
301#define CONFIG_I2C
302#define CONFIG_CMD_I2C
303#define CONFIG_HARD_I2C
304#define CONFIG_SYS_I2C_SPEED 100000
305#define CONFIG_SYS_I2C_SLAVE 1
Steve Sakoman695b1fe2012-06-22 07:45:57 +0000306#define CONFIG_I2C_MULTI_BUS
Patil, Rachna5f70c512012-01-22 23:47:01 +0000307#define CONFIG_DRIVER_OMAP24XX_I2C
Tom Rini132b6db2012-07-31 09:37:08 -0700308#define CONFIG_CMD_EEPROM
Tom Rini883401e2012-08-08 14:35:55 -0700309#define CONFIG_ENV_EEPROM_IS_ON_I2C
Tom Rini132b6db2012-07-31 09:37:08 -0700310#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
311#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
312#define CONFIG_SYS_I2C_MULTI_EEPROMS
Patil, Rachna5f70c512012-01-22 23:47:01 +0000313
Marek Vasutaede1882012-07-21 05:02:23 +0000314#define CONFIG_OMAP_GPIO
315
Chandan Nath7d744102011-10-14 02:58:26 +0000316#define CONFIG_BAUDRATE 115200
317#define CONFIG_SYS_BAUDRATE_TABLE { 110, 300, 600, 1200, 2400, \
3184800, 9600, 14400, 19200, 28800, 38400, 56000, 57600, 115200 }
319
SRICHARAN R669b3372013-04-24 00:41:25 +0000320/* CPU */
321#define CONFIG_ARCH_CPU_INIT
322
Andrew Bradford99162792012-10-25 08:21:32 -0400323#define CONFIG_ENV_OVERWRITE 1
Chandan Nath7d744102011-10-14 02:58:26 +0000324#define CONFIG_SYS_CONSOLE_INFO_QUIET
325
Steve Kipiszc1399b42013-07-18 15:13:04 -0400326#ifndef CONFIG_NOR_BOOT
Chandan Nath77a73fe2012-01-09 20:38:59 +0000327/* Defines for SPL */
328#define CONFIG_SPL
Tom Rini28591df2012-08-13 12:03:19 -0700329#define CONFIG_SPL_FRAMEWORK
Tom Rini3a300832013-05-31 10:48:03 -0400330/*
Tom Rinic513b612013-06-06 08:57:45 -0400331 * Place the image at the start of the ROM defined image space.
Tom Rini3a300832013-05-31 10:48:03 -0400332 * We limit our size to the ROM-defined downloaded image area, and use the
333 * rest of the space for stack.
334 */
Tom Rinic513b612013-06-06 08:57:45 -0400335#define CONFIG_SPL_TEXT_BASE 0x402F0400
Tom Rini3a300832013-05-31 10:48:03 -0400336#define CONFIG_SPL_MAX_SIZE (0x4030C000 - CONFIG_SPL_TEXT_BASE)
Tom Riniee5bce42012-08-08 17:03:10 -0700337#define CONFIG_SPL_STACK CONFIG_SYS_INIT_SP_ADDR
Chandan Nath77a73fe2012-01-09 20:38:59 +0000338
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000339#define CONFIG_SPL_OS_BOOT
340
341#define CONFIG_SPL_BSS_START_ADDR 0x80a00000
Chandan Nath77a73fe2012-01-09 20:38:59 +0000342#define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */
343
344#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
345#define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */
346#define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION 1
347#define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME "u-boot.img"
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000348
349#ifdef CONFIG_SPL_OS_BOOT
350/* fat */
351#define CONFIG_SPL_FAT_LOAD_KERNEL_NAME "uImage"
352#define CONFIG_SPL_FAT_LOAD_ARGS_NAME "args"
353#define CONFIG_SYS_SPL_ARGS_ADDR (PHYS_DRAM_1 + 0x100)
354
355/* raw mmc */
Tom Rinie10075d2013-07-08 12:15:16 -0400356#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x900 /* address 0x120000 */
357#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x80 /* address 0x10000 */
358#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0x80 /* 64KiB */
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000359
360/* nand */
Justin Waters735a6272013-07-11 09:54:58 -0400361#ifdef CONFIG_NAND
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000362#define CONFIG_CMD_SPL_NAND_OFS 0x240000 /* end of u-boot */
363#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
Tom Rinie4e72d52013-07-08 12:15:17 -0400364#define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
Justin Waters735a6272013-07-11 09:54:58 -0400365#endif
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000366
367/* spl export command */
368#define CONFIG_CMD_SPL
369#endif
370
Chandan Nath77a73fe2012-01-09 20:38:59 +0000371#define CONFIG_SPL_MMC_SUPPORT
372#define CONFIG_SPL_FAT_SUPPORT
Patil, Rachna5f70c512012-01-22 23:47:01 +0000373#define CONFIG_SPL_I2C_SUPPORT
Chandan Nath77a73fe2012-01-09 20:38:59 +0000374
375#define CONFIG_SPL_LIBCOMMON_SUPPORT
376#define CONFIG_SPL_LIBDISK_SUPPORT
377#define CONFIG_SPL_LIBGENERIC_SUPPORT
378#define CONFIG_SPL_SERIAL_SUPPORT
Marek Vasutff0ebb82012-07-21 05:02:27 +0000379#define CONFIG_SPL_GPIO_SUPPORT
Matt Portere3283762012-01-31 12:03:58 +0000380#define CONFIG_SPL_YMODEM_SUPPORT
Ilya Yanoka1560ec2012-09-17 10:26:28 +0000381#define CONFIG_SPL_NET_SUPPORT
Ying Zhang602f7d32013-05-20 14:07:25 +0800382#define CONFIG_SPL_ENV_SUPPORT
Ilya Yanoka1560ec2012-09-17 10:26:28 +0000383#define CONFIG_SPL_NET_VCI_STRING "AM335x U-Boot SPL"
384#define CONFIG_SPL_ETH_SUPPORT
Tom Rini0c1c9232012-10-16 13:06:07 +0000385#define CONFIG_SPL_SPI_SUPPORT
386#define CONFIG_SPL_SPI_FLASH_SUPPORT
387#define CONFIG_SPL_SPI_LOAD
388#define CONFIG_SPL_SPI_BUS 0
389#define CONFIG_SPL_SPI_CS 0
Tom Rinib7691242013-07-18 15:12:59 -0400390#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
Ilya Yanok0760a0d2013-02-05 11:36:26 +0000391#define CONFIG_SPL_MUSB_NEW_SUPPORT
Albert ARIBAUD6277b192013-02-25 00:58:58 +0000392#define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/am33xx/u-boot-spl.lds"
Chandan Nath77a73fe2012-01-09 20:38:59 +0000393
Ilya Yanok2688dac2012-11-06 13:06:35 +0000394#define CONFIG_SPL_BOARD_INIT
Justin Waters735a6272013-07-11 09:54:58 -0400395
396#ifdef CONFIG_NAND
Ilya Yanok2688dac2012-11-06 13:06:35 +0000397#define CONFIG_SPL_NAND_AM33XX_BCH
398#define CONFIG_SPL_NAND_SUPPORT
Albert ARIBAUDb56eeed2013-01-08 13:15:45 +0100399#define CONFIG_SPL_NAND_BASE
400#define CONFIG_SPL_NAND_DRIVERS
401#define CONFIG_SPL_NAND_ECC
Ilya Yanok2688dac2012-11-06 13:06:35 +0000402#define CONFIG_SYS_NAND_5_ADDR_CYCLE
403#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
404 CONFIG_SYS_NAND_PAGE_SIZE)
405#define CONFIG_SYS_NAND_PAGE_SIZE 2048
406#define CONFIG_SYS_NAND_OOBSIZE 64
407#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
408#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
409#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
410 10, 11, 12, 13, 14, 15, 16, 17, \
411 18, 19, 20, 21, 22, 23, 24, 25, \
412 26, 27, 28, 29, 30, 31, 32, 33, \
413 34, 35, 36, 37, 38, 39, 40, 41, \
414 42, 43, 44, 45, 46, 47, 48, 49, \
415 50, 51, 52, 53, 54, 55, 56, 57, }
416
417#define CONFIG_SYS_NAND_ECCSIZE 512
418#define CONFIG_SYS_NAND_ECCBYTES 14
419
Mark Jackson99fd5f62013-04-17 08:22:47 +0000420#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
Ilya Yanok2688dac2012-11-06 13:06:35 +0000421
422#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
Justin Waters735a6272013-07-11 09:54:58 -0400423#endif
424#endif
Ilya Yanok2688dac2012-11-06 13:06:35 +0000425
Chandan Nath77a73fe2012-01-09 20:38:59 +0000426/*
427 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
428 * 64 bytes before this address should be set aside for u-boot.img's
429 * header. That is 0x800FFFC0--0x80100000 should not be used for any
430 * other needs.
431 */
Steve Kipiszc1399b42013-07-18 15:13:04 -0400432#ifdef CONFIG_NOR_BOOT
433#define CONFIG_SYS_TEXT_BASE 0x08000000
434#else
Chandan Nath77a73fe2012-01-09 20:38:59 +0000435#define CONFIG_SYS_TEXT_BASE 0x80800000
Steve Kipiszc1399b42013-07-18 15:13:04 -0400436#endif
Peter Korsgaardeb204db2013-05-13 08:36:30 +0000437#define CONFIG_SYS_SPL_MALLOC_START 0x80a08000
Chandan Nath77a73fe2012-01-09 20:38:59 +0000438#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000
439
440/* Since SPL did pll and ddr initialization for us,
441 * we don't need to do it twice.
442 */
Steve Kipiszc1399b42013-07-18 15:13:04 -0400443#if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_NOR_BOOT)
Chandan Nath77a73fe2012-01-09 20:38:59 +0000444#define CONFIG_SKIP_LOWLEVEL_INIT
445#endif
Chandan Nath7d744102011-10-14 02:58:26 +0000446
Ilya Yanok44a2c072012-11-06 13:48:24 +0000447/*
448 * USB configuration
449 */
450#define CONFIG_USB_MUSB_DSPS
451#define CONFIG_ARCH_MISC_INIT
452#define CONFIG_MUSB_GADGET
453#define CONFIG_MUSB_PIO_ONLY
Bin Liu7a363d42013-03-21 05:27:48 +0000454#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
Ilya Yanok44a2c072012-11-06 13:48:24 +0000455#define CONFIG_USB_GADGET_DUALSPEED
Pantelis Antoniou66449482013-03-14 05:32:55 +0000456#define CONFIG_USB_GADGET_VBUS_DRAW 2
Ilya Yanok44a2c072012-11-06 13:48:24 +0000457#define CONFIG_MUSB_HOST
458#define CONFIG_AM335X_USB0
459#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
460#define CONFIG_AM335X_USB1
461#define CONFIG_AM335X_USB1_MODE MUSB_HOST
462
463#ifdef CONFIG_MUSB_HOST
464#define CONFIG_CMD_USB
465#define CONFIG_USB_STORAGE
466#endif
467
468#ifdef CONFIG_MUSB_GADGET
469#define CONFIG_USB_ETHER
470#define CONFIG_USB_ETH_RNDIS
Ilya Yanok0760a0d2013-02-05 11:36:26 +0000471#define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
Ilya Yanok44a2c072012-11-06 13:48:24 +0000472#endif /* CONFIG_MUSB_GADGET */
473
Ilya Yanok0760a0d2013-02-05 11:36:26 +0000474#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
475/* disable host part of MUSB in SPL */
476#undef CONFIG_MUSB_HOST
477/*
Tom Rini35eafab2013-02-26 15:43:22 -0500478 * Disable CPSW SPL support so we fit within the 101KiB limit.
Ilya Yanok0760a0d2013-02-05 11:36:26 +0000479 */
480#undef CONFIG_SPL_ETH_SUPPORT
Ilya Yanok0760a0d2013-02-05 11:36:26 +0000481#endif
482
Tom Rinia33c7972013-02-08 11:20:15 +0000483/*
Tom Rinib7691242013-07-18 15:12:59 -0400484 * Default to using SPI for environment, etc.
485 * 0x000000 - 0x020000 : SPL (128KiB)
486 * 0x020000 - 0x0A0000 : U-Boot (512KiB)
487 * 0x0A0000 - 0x0BFFFF : First copy of U-Boot Environment (128KiB)
488 * 0x0C0000 - 0x0DFFFF : Second copy of U-Boot Environment (128KiB)
489 * 0x0E0000 - 0x442000 : Linux Kernel
Tom Rinia33c7972013-02-08 11:20:15 +0000490 * 0x442000 - 0x800000 : Userland
491 */
492#if defined(CONFIG_SPI_BOOT)
Tom Rinib7691242013-07-18 15:12:59 -0400493#define CONFIG_ENV_IS_IN_SPI_FLASH
494#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
495#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
496#define CONFIG_ENV_SECT_SIZE (4 << 10) /* 4 KB sectors */
497#define CONFIG_ENV_OFFSET (768 << 10) /* 768 KiB in */
498#define CONFIG_ENV_OFFSET_REDUND (896 << 10) /* 896 KiB in */
499#define CONFIG_CMD_MTDPARTS
500#define MTDIDS_DEFAULT "nor0=m25p80-flash.0"
501#define MTDPARTS_DEFAULT "mtdparts=m25p80-flash.0:128k(SPL)," \
502 "512k(u-boot),128k(u-boot-env1)," \
503 "128k(u-boot-env2),3464k(kernel)," \
504 "-(rootfs)"
Tom Rinia33c7972013-02-08 11:20:15 +0000505#endif /* SPI support */
506
Ilya Yanok44a2c072012-11-06 13:48:24 +0000507/* Unsupported features */
508#undef CONFIG_USE_IRQ
509
Chandan Nath5b9896d2012-07-24 12:22:20 +0000510#define CONFIG_CMD_NET
511#define CONFIG_CMD_DHCP
512#define CONFIG_CMD_PING
513#define CONFIG_DRIVER_TI_CPSW
514#define CONFIG_MII
515#define CONFIG_BOOTP_DEFAULT
516#define CONFIG_BOOTP_DNS
517#define CONFIG_BOOTP_DNS2
518#define CONFIG_BOOTP_SEND_HOSTNAME
519#define CONFIG_BOOTP_GATEWAY
520#define CONFIG_BOOTP_SUBNETMASK
521#define CONFIG_NET_RETRY_COUNT 10
522#define CONFIG_NET_MULTI
523#define CONFIG_PHY_GIGE
524#define CONFIG_PHYLIB
Yegor Yefremov062bbac2012-11-26 04:03:16 +0000525#define CONFIG_PHY_ADDR 0
Ilya Yanok115fb802012-08-07 00:50:08 +0000526#define CONFIG_PHY_SMSC
Chandan Nath5b9896d2012-07-24 12:22:20 +0000527
Ilya Yanok3d9725e2012-11-06 13:06:31 +0000528/* NAND support */
529#ifdef CONFIG_NAND
530#define CONFIG_CMD_NAND
Tom Rini24716292013-03-14 05:32:54 +0000531#define CONFIG_CMD_MTDPARTS
Ilya Yanok3d9725e2012-11-06 13:06:31 +0000532#define CONFIG_NAND_OMAP_GPMC
533#define GPMC_NAND_ECC_LP_x16_LAYOUT 1
534#define CONFIG_SYS_NAND_BASE (0x08000000) /* physical address */
535 /* to access nand at */
536 /* CS0 */
Ilya Yanok2688dac2012-11-06 13:06:35 +0000537#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND
538 devices */
Steve Kipiszc1399b42013-07-18 15:13:04 -0400539#if !defined(CONFIG_SPI_BOOT) && !defined(CONFIG_NOR_BOOT)
Tom Rinib7691242013-07-18 15:12:59 -0400540#define MTDIDS_DEFAULT "nand0=omap2-nand.0"
541#define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:128k(SPL)," \
542 "128k(SPL.backup1)," \
543 "128k(SPL.backup2)," \
544 "128k(SPL.backup3),1792k(u-boot)," \
545 "128k(u-boot-spl-os)," \
546 "128k(u-boot-env),5m(kernel),-(rootfs)"
Ilya Yanok2688dac2012-11-06 13:06:35 +0000547#define CONFIG_ENV_IS_IN_NAND
548#define CONFIG_ENV_OFFSET 0x260000 /* environment starts here */
549#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
550#endif
Tom Rinia33c7972013-02-08 11:20:15 +0000551#endif
Ilya Yanok3d9725e2012-11-06 13:06:31 +0000552
Steve Kipiszbe9b6f82013-07-18 15:13:03 -0400553/*
554 * NOR Size = 16 MiB
555 * Number of Sectors/Blocks = 128
556 * Sector Size = 128 KiB
557 * Word length = 16 bits
558 * Default layout:
559 * 0x000000 - 0x07FFFF : U-Boot (512 KiB)
560 * 0x080000 - 0x09FFFF : First copy of U-Boot Environment (128 KiB)
561 * 0x0A0000 - 0x0BFFFF : Second copy of U-Boot Environment (128 KiB)
562 * 0x0C0000 - 0x4BFFFF : Linux Kernel (4 MiB)
563 * 0x4C0000 - 0xFFFFFF : Userland (11 MiB + 256 KiB)
564 */
565#if defined(CONFIG_NOR)
566#undef CONFIG_SYS_NO_FLASH
567#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
568#define CONFIG_SYS_FLASH_PROTECTION
569#define CONFIG_SYS_FLASH_CFI
570#define CONFIG_FLASH_CFI_DRIVER
571#define CONFIG_FLASH_CFI_MTD
572#define CONFIG_SYS_MAX_FLASH_SECT 128
573#define CONFIG_SYS_MAX_FLASH_BANKS 1
574#define CONFIG_SYS_FLASH_BASE (0x08000000)
575#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
576#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Steve Kipiszc1399b42013-07-18 15:13:04 -0400577#ifdef CONFIG_NOR_BOOT
578#define CONFIG_ENV_IS_IN_FLASH
579#define CONFIG_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
580#define CONFIG_ENV_OFFSET (512 << 10) /* 512 KiB */
581#define CONFIG_ENV_OFFSET_REDUND (768 << 10) /* 768 KiB */
582#define CONFIG_CMD_MTDPARTS
583#define MTDIDS_DEFAULT "nor0=physmap-flash.0"
584#define MTDPARTS_DEFAULT "mtdparts=physmap-flash.0:" \
585 "512k(u-boot)," \
586 "128k(u-boot-env1)," \
587 "128k(u-boot-env2)," \
588 "4m(kernel),-(rootfs)"
589#endif
Steve Kipiszbe9b6f82013-07-18 15:13:03 -0400590#define CONFIG_MTD_DEVICE
591#define CONFIG_CMD_FLASH
592#endif /* NOR support */
593
Chandan Nath7d744102011-10-14 02:58:26 +0000594#endif /* ! __CONFIG_AM335X_EVM_H */