blob: e89c49e1e3a0a0f7c4c2b6c0f7080c2330af562d [file] [log] [blame]
Chandan Nath5289e832011-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
Tom Rini87694552013-08-09 11:22:17 -040019#include <configs/ti_am335x_common.h>
Chandan Nath5289e832011-10-14 02:58:26 +000020
Simon Glass5cc16cb2014-06-02 22:04:55 -060021#ifndef CONFIG_SPL_BUILD
Ruchika Guptac937ff62015-01-23 16:01:54 +053022#ifndef CONFIG_FIT
Simon Glassdd42a4a2014-06-02 22:04:56 -060023# define CONFIG_FIT
Ruchika Guptac937ff62015-01-23 16:01:54 +053024#endif
Simon Glassdd42a4a2014-06-02 22:04:56 -060025# define CONFIG_TIMESTAMP
26# define CONFIG_LZO
Simon Glass5cc16cb2014-06-02 22:04:55 -060027#endif
28
Simon Glassdd42a4a2014-06-02 22:04:56 -060029#define CONFIG_SYS_BOOTM_LEN (16 << 20)
30
Tom Rinia88f70b2011-10-21 12:23:06 +000031#define MACH_TYPE_TIAM335EVM 3589 /* Until the next sync */
Chandan Nath5289e832011-10-14 02:58:26 +000032#define CONFIG_MACH_TYPE MACH_TYPE_TIAM335EVM
Lothar Feltenda4105d2014-01-31 17:34:14 +010033#define CONFIG_BOARD_LATE_INIT
Chandan Nath5289e832011-10-14 02:58:26 +000034
Tom Rini87694552013-08-09 11:22:17 -040035/* Clock Defines */
36#define V_OSCK 24000000 /* Clock output from T2 */
37#define V_SCLK (V_OSCK)
Tom Rini7bf038e2012-06-12 14:54:32 -070038
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -040039/* Custom script for NOR */
40#define CONFIG_SYS_LDSCRIPT "board/ti/am335x/u-boot.lds"
41
Tom Rini87694552013-08-09 11:22:17 -040042/* Always 128 KiB env size */
43#define CONFIG_ENV_SIZE (128 << 10)
Chandan Nath5289e832011-10-14 02:58:26 +000044
Tom Rini01d92b02014-01-21 17:15:06 -050045/* Enhance our eMMC support / experience. */
46#define CONFIG_CMD_GPT
47#define CONFIG_EFI_PARTITION
Tom Rini01d92b02014-01-21 17:15:06 -050048
Justin Waters317fab22013-07-11 09:54:58 -040049#ifdef CONFIG_NAND
50#define NANDARGS \
51 "mtdids=" MTDIDS_DEFAULT "\0" \
52 "mtdparts=" MTDPARTS_DEFAULT "\0" \
53 "nandargs=setenv bootargs console=${console} " \
54 "${optargs} " \
55 "root=${nandroot} " \
56 "rootfstype=${nandrootfstype}\0" \
Roger Quadroscda60172015-06-05 12:42:21 +030057 "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048\0" \
Justin Waters317fab22013-07-11 09:54:58 -040058 "nandrootfstype=ubifs rootwait=1\0" \
Tom Riniaefb7252013-11-18 10:36:23 -050059 "nandboot=echo Booting from nand ...; " \
Justin Waters317fab22013-07-11 09:54:58 -040060 "run nandargs; " \
Roger Quadroscda60172015-06-05 12:42:21 +030061 "nand read ${fdtaddr} NAND.u-boot-spl-os; " \
62 "nand read ${loadaddr} NAND.kernel; " \
Tom Riniaefb7252013-11-18 10:36:23 -050063 "bootz ${loadaddr} - ${fdtaddr}\0"
Justin Waters317fab22013-07-11 09:54:58 -040064#else
65#define NANDARGS ""
66#endif
67
Tom Rini044fc142012-10-24 07:28:17 +000068#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
Tom Rini87694552013-08-09 11:22:17 -040069
Tom Rinia32f42f2013-02-26 13:08:53 -050070#ifndef CONFIG_SPL_BUILD
Chandan Nath5289e832011-10-14 02:58:26 +000071#define CONFIG_EXTRA_ENV_SETTINGS \
Tom Rinifb3ad9b2014-03-28 15:03:29 -040072 DEFAULT_LINUX_BOOT_ENV \
Tom Rinibc6fff92013-08-09 11:22:16 -040073 "boot_fdt=try\0" \
Tom Rinie3cf9692013-09-24 09:40:52 -040074 "bootpart=0:2\0" \
Koen Kooi951d5822013-03-14 05:55:21 +000075 "bootdir=/boot\0" \
Tom Rinie3cf9692013-09-24 09:40:52 -040076 "bootfile=zImage\0" \
Dan Murphya7143212013-06-06 13:27:06 -050077 "fdtfile=undefined\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070078 "console=ttyO0,115200n8\0" \
Tom Rini01d92b02014-01-21 17:15:06 -050079 "partitions=" \
80 "uuid_disk=${uuid_gpt_disk};" \
81 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070082 "optargs=\0" \
83 "mmcdev=0\0" \
Koen Kooi35807772012-09-26 07:19:43 +000084 "mmcroot=/dev/mmcblk0p2 ro\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070085 "mmcrootfstype=ext4 rootwait\0" \
Tom Rini18e44ce2014-03-28 15:03:30 -040086 "ramroot=/dev/ram0 rw\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070087 "ramrootfstype=ext2\0" \
88 "mmcargs=setenv bootargs console=${console} " \
89 "${optargs} " \
90 "root=${mmcroot} " \
91 "rootfstype=${mmcrootfstype}\0" \
Chase Maupin63ba7c62013-02-08 11:20:12 +000092 "spiroot=/dev/mtdblock4 rw\0" \
93 "spirootfstype=jffs2\0" \
94 "spisrcaddr=0xe0000\0" \
95 "spiimgsize=0x362000\0" \
96 "spibusno=0\0" \
97 "spiargs=setenv bootargs console=${console} " \
98 "${optargs} " \
99 "root=${spiroot} " \
100 "rootfstype=${spirootfstype}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700101 "bootenv=uEnv.txt\0" \
Guillaume GARDET3aae66e2014-09-11 09:23:08 +0200102 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
103 "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
104 "source ${loadaddr}\0" \
Koen Kooi73a27a82013-03-14 05:55:20 +0000105 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700106 "importbootenv=echo Importing environment from mmc ...; " \
Alexander Holler4cfe8c32014-07-14 17:49:57 +0200107 "env import -t -r $loadaddr $filesize\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700108 "ramargs=setenv bootargs console=${console} " \
109 "${optargs} " \
110 "root=${ramroot} " \
111 "rootfstype=${ramrootfstype}\0" \
Koen Kooi73a27a82013-03-14 05:55:20 +0000112 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
Tom Rinie3cf9692013-09-24 09:40:52 -0400113 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Koen Kooi951d5822013-03-14 05:55:21 +0000114 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
Tom Rinibc6fff92013-08-09 11:22:16 -0400115 "mmcloados=run mmcargs; " \
116 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
117 "if run loadfdt; then " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400118 "bootz ${loadaddr} - ${fdtaddr}; " \
Tom Rinibc6fff92013-08-09 11:22:16 -0400119 "else " \
120 "if test ${boot_fdt} = try; then " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400121 "bootz; " \
Tom Rinibc6fff92013-08-09 11:22:16 -0400122 "else " \
123 "echo WARN: Cannot load the DT; " \
124 "fi; " \
125 "fi; " \
126 "else " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400127 "bootz; " \
Tom Rinibc6fff92013-08-09 11:22:16 -0400128 "fi;\0" \
Justin Watersa3aa70a2013-07-11 09:55:00 -0400129 "mmcboot=mmc dev ${mmcdev}; " \
130 "if mmc rescan; then " \
131 "echo SD/MMC found on device ${mmcdev};" \
Guillaume GARDET3aae66e2014-09-11 09:23:08 +0200132 "if run loadbootscript; then " \
133 "run bootscript;" \
134 "else " \
135 "if run loadbootenv; then " \
136 "echo Loaded environment from ${bootenv};" \
137 "run importbootenv;" \
138 "fi;" \
139 "if test -n $uenvcmd; then " \
140 "echo Running uenvcmd ...;" \
141 "run uenvcmd;" \
142 "fi;" \
143 "if run loadimage; then " \
144 "run mmcloados;" \
145 "fi;" \
146 "fi ;" \
Justin Watersa3aa70a2013-07-11 09:55:00 -0400147 "fi;\0" \
Chase Maupin63ba7c62013-02-08 11:20:12 +0000148 "spiboot=echo Booting from spi ...; " \
149 "run spiargs; " \
150 "sf probe ${spibusno}:0; " \
151 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400152 "bootz ${loadaddr}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700153 "ramboot=echo Booting from ramdisk ...; " \
154 "run ramargs; " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400155 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Tom Rini044fc142012-10-24 07:28:17 +0000156 "findfdt="\
157 "if test $board_name = A335BONE; then " \
158 "setenv fdtfile am335x-bone.dtb; fi; " \
Koen Kooi20775902013-03-14 05:55:19 +0000159 "if test $board_name = A335BNLT; then " \
160 "setenv fdtfile am335x-boneblack.dtb; fi; " \
Tom Rini044fc142012-10-24 07:28:17 +0000161 "if test $board_name = A33515BB; then " \
162 "setenv fdtfile am335x-evm.dtb; fi; " \
163 "if test $board_name = A335X_SK; then " \
Tom Rini20cb5fb2013-06-27 09:55:39 -0400164 "setenv fdtfile am335x-evmsk.dtb; fi; " \
Dan Murphya7143212013-06-06 13:27:06 -0500165 "if test $fdtfile = undefined; then " \
Justin Waters317fab22013-07-11 09:54:58 -0400166 "echo WARNING: Could not determine device tree to use; fi; \0" \
Tom Riniba481c52013-12-04 09:14:20 -0500167 NANDARGS \
Cooper Jr., Franklin23208662015-04-21 07:51:04 -0500168 NETARGS \
Tom Riniba481c52013-12-04 09:14:20 -0500169 DFUARGS
Tom Rinia32f42f2013-02-26 13:08:53 -0500170#endif
171
Tom Rini7bf038e2012-06-12 14:54:32 -0700172#define CONFIG_BOOTCOMMAND \
Koen Kooi951d5822013-03-14 05:55:21 +0000173 "run findfdt; " \
Justin Watersa3aa70a2013-07-11 09:55:00 -0400174 "run mmcboot;" \
175 "setenv mmcdev 1; " \
176 "setenv bootpart 1:2; " \
177 "run mmcboot;" \
178 "run nandboot;"
Chandan Nath5289e832011-10-14 02:58:26 +0000179
Chandan Nath5289e832011-10-14 02:58:26 +0000180/* NS16550 Configuration */
Chandan Nath5289e832011-10-14 02:58:26 +0000181#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
Andrew Bradfordc3f83182012-10-25 08:21:32 -0400182#define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
183#define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
184#define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
185#define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
186#define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
Tom Rini87694552013-08-09 11:22:17 -0400187#define CONFIG_BAUDRATE 115200
Chandan Nath5289e832011-10-14 02:58:26 +0000188
Tom Rini726c05d2012-07-31 09:37:08 -0700189#define CONFIG_CMD_EEPROM
Tom Rinia4a99ff2012-08-08 14:35:55 -0700190#define CONFIG_ENV_EEPROM_IS_ON_I2C
Tom Rini726c05d2012-07-31 09:37:08 -0700191#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
192#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
193#define CONFIG_SYS_I2C_MULTI_EEPROMS
Patil, Rachnab4116ed2012-01-22 23:47:01 +0000194
Tom Rini97210272013-08-30 16:28:46 -0400195/* PMIC support */
196#define CONFIG_POWER_TPS65217
197#define CONFIG_POWER_TPS65910
198
Tom Rini87694552013-08-09 11:22:17 -0400199/* SPL */
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400200#ifndef CONFIG_NOR_BOOT
Tom Rini97210272013-08-30 16:28:46 -0400201#define CONFIG_SPL_POWER_SUPPORT
Matt Porter763cf0a2012-01-31 12:03:58 +0000202#define CONFIG_SPL_YMODEM_SUPPORT
Tom Rinia7a06402013-08-20 08:53:46 -0400203
Tom Riniabcaa6e2013-11-08 13:53:14 -0500204/* Bootcount using the RTC block */
205#define CONFIG_BOOTCOUNT_LIMIT
206#define CONFIG_BOOTCOUNT_AM33XX
Tom Rini78701182014-10-03 15:57:00 -0400207#define CONFIG_SYS_BOOTCOUNT_BE
Tom Riniabcaa6e2013-11-08 13:53:14 -0500208
Tom Rinia7a06402013-08-20 08:53:46 -0400209/* USB gadget RNDIS */
210#define CONFIG_SPL_MUSB_NEW_SUPPORT
211
Albert ARIBAUD65cdd642013-02-25 00:58:58 +0000212#define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/am33xx/u-boot-spl.lds"
pekon guptafea95432014-07-22 16:03:19 +0530213#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +0000214
Justin Waters317fab22013-07-11 09:54:58 -0400215#ifdef CONFIG_NAND
pekon guptafea95432014-07-22 16:03:19 +0530216/* NAND: device related configs */
Ilya Yanokb4606c62012-11-06 13:06:35 +0000217#define CONFIG_SYS_NAND_5_ADDR_CYCLE
218#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
219 CONFIG_SYS_NAND_PAGE_SIZE)
220#define CONFIG_SYS_NAND_PAGE_SIZE 2048
221#define CONFIG_SYS_NAND_OOBSIZE 64
222#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
pekon guptafea95432014-07-22 16:03:19 +0530223/* NAND: driver related configs */
224#define CONFIG_NAND_OMAP_GPMC
Tom Rini6e721bd2015-01-13 16:42:53 -0500225#define CONFIG_NAND_OMAP_GPMC_PREFETCH
pekon guptafea95432014-07-22 16:03:19 +0530226#define CONFIG_NAND_OMAP_ELM
Ilya Yanokb4606c62012-11-06 13:06:35 +0000227#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, }
235
236#define CONFIG_SYS_NAND_ECCSIZE 512
237#define CONFIG_SYS_NAND_ECCBYTES 14
pekon gupta3f719062013-11-18 19:03:01 +0530238#define CONFIG_SYS_NAND_ONFI_DETECTION
239#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
pekon guptafea95432014-07-22 16:03:19 +0530240#define MTDIDS_DEFAULT "nand0=nand.0"
241#define MTDPARTS_DEFAULT "mtdparts=nand.0:" \
242 "128k(NAND.SPL)," \
243 "128k(NAND.SPL.backup1)," \
244 "128k(NAND.SPL.backup2)," \
245 "128k(NAND.SPL.backup3)," \
246 "256k(NAND.u-boot-spl-os)," \
247 "1m(NAND.u-boot)," \
248 "128k(NAND.u-boot-env)," \
249 "128k(NAND.u-boot-env.backup1)," \
250 "8m(NAND.kernel)," \
Roger Quadros9ddef482015-06-05 12:42:20 +0300251 "-(NAND.file-system)"
pekon guptafea95432014-07-22 16:03:19 +0530252#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x000c0000
253#undef CONFIG_ENV_IS_NOWHERE
254#define CONFIG_ENV_IS_IN_NAND
255#define CONFIG_ENV_OFFSET 0x001c0000
256#define CONFIG_ENV_OFFSET_REDUND 0x001e0000
257#define CONFIG_SYS_ENV_SECT_SIZE CONFIG_SYS_NAND_BLOCK_SIZE
258/* NAND: SPL related configs */
259#ifdef CONFIG_SPL_NAND_SUPPORT
260#define CONFIG_SPL_NAND_AM33XX_BCH
261#endif
pekon gupta434f2cf2014-07-18 17:59:42 +0530262#ifdef CONFIG_SPL_OS_BOOT
263#define CONFIG_CMD_SPL_NAND_OFS 0x00080000 /* os parameters */
264#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */
265#define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
266#endif
pekon guptafea95432014-07-22 16:03:19 +0530267#endif /* !CONFIG_NAND */
Ilya Yanokb4606c62012-11-06 13:06:35 +0000268
Chandan Nath8a8f0842012-01-09 20:38:59 +0000269/*
Tom Rini87694552013-08-09 11:22:17 -0400270 * For NOR boot, we must set this to the start of where NOR is mapped
271 * in memory.
Chandan Nath8a8f0842012-01-09 20:38:59 +0000272 */
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400273#ifdef CONFIG_NOR_BOOT
274#define CONFIG_SYS_TEXT_BASE 0x08000000
Chandan Nath8a8f0842012-01-09 20:38:59 +0000275#endif
Chandan Nath5289e832011-10-14 02:58:26 +0000276
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000277/*
Tom Rini85a02aa2013-08-20 08:53:48 -0400278 * USB configuration. We enable MUSB support, both for host and for
279 * gadget. We set USB0 as peripheral and USB1 as host, based on the
280 * board schematic and physical port wired to each. Then for host we
281 * add mass storage support and for gadget we add both RNDIS ethernet
282 * and DFU.
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000283 */
284#define CONFIG_USB_MUSB_DSPS
285#define CONFIG_ARCH_MISC_INIT
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200286#define CONFIG_USB_MUSB_GADGET
287#define CONFIG_USB_MUSB_PIO_ONLY
288#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
Tom Rini85a02aa2013-08-20 08:53:48 -0400289#define CONFIG_USB_GADGET
Paul Kocialkowski01acd6a2015-06-12 19:56:58 +0200290#define CONFIG_USB_GADGET_DOWNLOAD
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000291#define CONFIG_USB_GADGET_DUALSPEED
Pantelis Antoniouef4e9fc2013-03-14 05:32:55 +0000292#define CONFIG_USB_GADGET_VBUS_DRAW 2
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200293#define CONFIG_USB_MUSB_HOST
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000294#define CONFIG_AM335X_USB0
295#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
296#define CONFIG_AM335X_USB1
297#define CONFIG_AM335X_USB1_MODE MUSB_HOST
298
Dileep Kattafa8b11f2014-10-29 05:07:11 +0530299#ifndef CONFIG_SPL_USBETH_SUPPORT
300/* Fastboot */
Paul Kocialkowski17da3c02015-06-12 19:56:59 +0200301#define CONFIG_USB_FUNCTION_FASTBOOT
Dileep Kattafa8b11f2014-10-29 05:07:11 +0530302#define CONFIG_CMD_FASTBOOT
303#define CONFIG_ANDROID_BOOT_IMAGE
Paul Kocialkowskia588d992015-07-20 12:38:22 +0200304#define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
305#define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
Dileep Kattafa8b11f2014-10-29 05:07:11 +0530306
307/* To support eMMC booting */
308#define CONFIG_STORAGE_EMMC
309#define CONFIG_FASTBOOT_FLASH_MMC_DEV 1
310#endif
311
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200312#ifdef CONFIG_USB_MUSB_HOST
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000313#define CONFIG_CMD_USB
314#define CONFIG_USB_STORAGE
315#endif
316
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200317#ifdef CONFIG_USB_MUSB_GADGET
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000318#define CONFIG_USB_ETHER
319#define CONFIG_USB_ETH_RNDIS
Ilya Yanokc0e66792013-02-05 11:36:26 +0000320#define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
Tom Rini85a02aa2013-08-20 08:53:48 -0400321
322/* USB TI's IDs */
Dileep Kattafa8b11f2014-10-29 05:07:11 +0530323#define CONFIG_G_DNL_VENDOR_NUM 0x0451
324#define CONFIG_G_DNL_PRODUCT_NUM 0xD022
Tom Rini85a02aa2013-08-20 08:53:48 -0400325#define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200326#endif /* CONFIG_USB_MUSB_GADGET */
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000327
Ilya Yanokc0e66792013-02-05 11:36:26 +0000328#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
Tom Rinifb1bf402015-03-09 12:40:36 -0400329/* Remove other SPL modes. */
330#undef CONFIG_SPL_YMODEM_SUPPORT
331#undef CONFIG_SPL_NAND_SUPPORT
332#undef CONFIG_SPL_MMC_SUPPORT
333#define CONFIG_ENV_IS_NOWHERE
334#undef CONFIG_ENV_IS_IN_NAND
Ilya Yanokc0e66792013-02-05 11:36:26 +0000335/* disable host part of MUSB in SPL */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200336#undef CONFIG_USB_MUSB_HOST
Tom Rini01d92b02014-01-21 17:15:06 -0500337/* disable EFI partitions and partition UUID support */
338#undef CONFIG_PARTITION_UUIDS
339#undef CONFIG_EFI_PARTITION
Tom Rini6d9e6102014-07-18 11:51:31 -0400340/* General network SPL */
341#define CONFIG_SPL_NET_SUPPORT
342#define CONFIG_SPL_ENV_SUPPORT
343#define CONFIG_SPL_NET_VCI_STRING "AM335x U-Boot SPL"
Ilya Yanokc0e66792013-02-05 11:36:26 +0000344#endif
345
Tom Rini85a02aa2013-08-20 08:53:48 -0400346/* USB Device Firmware Update support */
Mateusz Zalegafad8edf2014-04-28 21:13:27 +0200347#ifndef CONFIG_SPL_BUILD
Paul Kocialkowski01acd6a2015-06-12 19:56:58 +0200348#define CONFIG_USB_FUNCTION_DFU
Tom Rini85a02aa2013-08-20 08:53:48 -0400349#define CONFIG_DFU_MMC
350#define CONFIG_CMD_DFU
351#define DFU_ALT_INFO_MMC \
Tom Riniba481c52013-12-04 09:14:20 -0500352 "dfu_alt_info_mmc=" \
Tom Rini85a02aa2013-08-20 08:53:48 -0400353 "boot part 0 1;" \
354 "rootfs part 0 2;" \
355 "MLO fat 0 1;" \
Tom Rini05180fc2014-10-09 11:01:16 -0400356 "MLO.raw raw 0x100 0x100;" \
357 "u-boot.img.raw raw 0x300 0x400;" \
358 "spl-os-args.raw raw 0x80 0x80;" \
359 "spl-os-image.raw raw 0x900 0x2000;" \
Tom Rini85a02aa2013-08-20 08:53:48 -0400360 "spl-os-args fat 0 1;" \
361 "spl-os-image fat 0 1;" \
362 "u-boot.img fat 0 1;" \
Tom Riniba481c52013-12-04 09:14:20 -0500363 "uEnv.txt fat 0 1\0"
Tom Rini85a02aa2013-08-20 08:53:48 -0400364#ifdef CONFIG_NAND
365#define CONFIG_DFU_NAND
366#define DFU_ALT_INFO_NAND \
Tom Riniba481c52013-12-04 09:14:20 -0500367 "dfu_alt_info_nand=" \
Tom Rini85a02aa2013-08-20 08:53:48 -0400368 "SPL part 0 1;" \
369 "SPL.backup1 part 0 2;" \
370 "SPL.backup2 part 0 3;" \
371 "SPL.backup3 part 0 4;" \
372 "u-boot part 0 5;" \
373 "u-boot-spl-os part 0 6;" \
374 "kernel part 0 8;" \
Tom Riniba481c52013-12-04 09:14:20 -0500375 "rootfs part 0 9\0"
376#else
377#define DFU_ALT_INFO_NAND ""
Tom Rini85a02aa2013-08-20 08:53:48 -0400378#endif
Afzal Mohammede473b8b2013-09-18 01:15:48 +0530379#define CONFIG_DFU_RAM
380#define DFU_ALT_INFO_RAM \
Tom Riniba481c52013-12-04 09:14:20 -0500381 "dfu_alt_info_ram=" \
Afzal Mohammede473b8b2013-09-18 01:15:48 +0530382 "kernel ram 0x80200000 0xD80000;" \
383 "fdt ram 0x80F80000 0x80000;" \
Tom Riniba481c52013-12-04 09:14:20 -0500384 "ramdisk ram 0x81000000 0x4000000\0"
385#define DFUARGS \
Tom Rini05180fc2014-10-09 11:01:16 -0400386 "dfu_alt_info_emmc=rawemmc raw 0 3751936\0" \
Tom Riniba481c52013-12-04 09:14:20 -0500387 DFU_ALT_INFO_MMC \
388 DFU_ALT_INFO_RAM \
389 DFU_ALT_INFO_NAND
Mateusz Zalegafad8edf2014-04-28 21:13:27 +0200390#endif
Tom Rini85a02aa2013-08-20 08:53:48 -0400391
Tom Rini4adfcd62013-02-08 11:20:15 +0000392/*
Tom Rini64540282013-07-18 15:12:59 -0400393 * Default to using SPI for environment, etc.
394 * 0x000000 - 0x020000 : SPL (128KiB)
395 * 0x020000 - 0x0A0000 : U-Boot (512KiB)
396 * 0x0A0000 - 0x0BFFFF : First copy of U-Boot Environment (128KiB)
397 * 0x0C0000 - 0x0DFFFF : Second copy of U-Boot Environment (128KiB)
398 * 0x0E0000 - 0x442000 : Linux Kernel
Tom Rini4adfcd62013-02-08 11:20:15 +0000399 * 0x442000 - 0x800000 : Userland
400 */
401#if defined(CONFIG_SPI_BOOT)
Tom Rini585d8bc2014-04-17 17:23:25 -0400402/* SPL related */
403#undef CONFIG_SPL_OS_BOOT /* Not supported by existing map */
404#define CONFIG_SPL_SPI_SUPPORT
405#define CONFIG_SPL_SPI_FLASH_SUPPORT
406#define CONFIG_SPL_SPI_LOAD
Tom Rini585d8bc2014-04-17 17:23:25 -0400407#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
408
Tom Rini64540282013-07-18 15:12:59 -0400409#define CONFIG_ENV_IS_IN_SPI_FLASH
410#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
411#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
412#define CONFIG_ENV_SECT_SIZE (4 << 10) /* 4 KB sectors */
413#define CONFIG_ENV_OFFSET (768 << 10) /* 768 KiB in */
414#define CONFIG_ENV_OFFSET_REDUND (896 << 10) /* 896 KiB in */
Tom Rini64540282013-07-18 15:12:59 -0400415#define MTDIDS_DEFAULT "nor0=m25p80-flash.0"
416#define MTDPARTS_DEFAULT "mtdparts=m25p80-flash.0:128k(SPL)," \
417 "512k(u-boot),128k(u-boot-env1)," \
418 "128k(u-boot-env2),3464k(kernel)," \
419 "-(rootfs)"
Justin Waters8c6ede12013-07-11 09:55:02 -0400420#elif defined(CONFIG_EMMC_BOOT)
421#undef CONFIG_ENV_IS_NOWHERE
422#define CONFIG_ENV_IS_IN_MMC
Tom Rini83e359a2014-07-18 11:51:35 -0400423#define CONFIG_SPL_ENV_SUPPORT
Justin Waters8c6ede12013-07-11 09:55:02 -0400424#define CONFIG_SYS_MMC_ENV_DEV 1
425#define CONFIG_SYS_MMC_ENV_PART 2
Tom Rini40ace022013-10-10 10:25:18 -0400426#define CONFIG_ENV_OFFSET 0x0
427#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
428#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
Justin Waters8c6ede12013-07-11 09:55:02 -0400429#endif
Tom Rini4adfcd62013-02-08 11:20:15 +0000430
Tom Rini87694552013-08-09 11:22:17 -0400431/* SPI flash. */
432#define CONFIG_CMD_SF
Tom Rini87694552013-08-09 11:22:17 -0400433#define CONFIG_SPI_FLASH_WINBOND
434#define CONFIG_SF_DEFAULT_SPEED 24000000
Ilya Yanokd2aa1152012-11-06 13:48:24 +0000435
Tom Rini87694552013-08-09 11:22:17 -0400436/* Network. */
Chandan Nath93042962012-07-24 12:22:20 +0000437#define CONFIG_PHY_GIGE
438#define CONFIG_PHYLIB
Ilya Yanokc44080b2012-08-07 00:50:08 +0000439#define CONFIG_PHY_SMSC
Chandan Nath93042962012-07-24 12:22:20 +0000440
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400441/*
442 * NOR Size = 16 MiB
443 * Number of Sectors/Blocks = 128
444 * Sector Size = 128 KiB
445 * Word length = 16 bits
446 * Default layout:
447 * 0x000000 - 0x07FFFF : U-Boot (512 KiB)
448 * 0x080000 - 0x09FFFF : First copy of U-Boot Environment (128 KiB)
449 * 0x0A0000 - 0x0BFFFF : Second copy of U-Boot Environment (128 KiB)
450 * 0x0C0000 - 0x4BFFFF : Linux Kernel (4 MiB)
451 * 0x4C0000 - 0xFFFFFF : Userland (11 MiB + 256 KiB)
452 */
453#if defined(CONFIG_NOR)
454#undef CONFIG_SYS_NO_FLASH
455#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
456#define CONFIG_SYS_FLASH_PROTECTION
457#define CONFIG_SYS_FLASH_CFI
458#define CONFIG_FLASH_CFI_DRIVER
459#define CONFIG_FLASH_CFI_MTD
460#define CONFIG_SYS_MAX_FLASH_SECT 128
461#define CONFIG_SYS_MAX_FLASH_BANKS 1
462#define CONFIG_SYS_FLASH_BASE (0x08000000)
463#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
pekon gupta77cd89e2014-07-18 17:59:40 +0530464#define CONFIG_SYS_FLASH_SIZE 0x01000000
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400465#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Tom Rinie3176752014-03-10 15:31:24 -0400466/* Reduce SPL size by removing unlikey targets */
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400467#ifdef CONFIG_NOR_BOOT
468#define CONFIG_ENV_IS_IN_FLASH
469#define CONFIG_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
470#define CONFIG_ENV_OFFSET (512 << 10) /* 512 KiB */
471#define CONFIG_ENV_OFFSET_REDUND (768 << 10) /* 768 KiB */
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400472#define MTDIDS_DEFAULT "nor0=physmap-flash.0"
473#define MTDPARTS_DEFAULT "mtdparts=physmap-flash.0:" \
474 "512k(u-boot)," \
475 "128k(u-boot-env1)," \
476 "128k(u-boot-env2)," \
477 "4m(kernel),-(rootfs)"
478#endif
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400479#endif /* NOR support */
480
Chandan Nath5289e832011-10-14 02:58:26 +0000481#endif /* ! __CONFIG_AM335X_EVM_H */