blob: 75dd0c5e2671480c3efaae1f486d9ba0f7c6a8f4 [file] [log] [blame]
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001/*
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
Yegor Yefremov51c4ccb2015-07-06 17:28:36 +020019#include <linux/sizes.h>
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020020#include <configs/ti_am335x_common.h>
21
Tom Rinid997f7c2017-01-25 20:42:36 -050022#define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020023
24/* Clock Defines */
25#define V_OSCK 24000000 /* Clock output from T2 */
26#define V_SCLK (V_OSCK)
27
28/* Custom script for NOR */
29#define CONFIG_SYS_LDSCRIPT "board/vscom/baltos/u-boot.lds"
30
31/* Always 128 KiB env size */
32#define CONFIG_ENV_SIZE (128 << 10)
33
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020034/* FIT support */
Yegor Yefremov51c4ccb2015-07-06 17:28:36 +020035#define CONFIG_SYS_BOOTM_LEN SZ_64M
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020036
37/* UBI Support */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020038#define CONFIG_MTD_PARTITIONS
39#define CONFIG_MTD_DEVICE
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020040
41/* I2C configuration */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020042
43#ifdef CONFIG_NAND
Yegor Yefremov51c4ccb2015-07-06 17:28:36 +020044#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x00080000
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020045#ifdef CONFIG_SPL_OS_BOOT
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020046#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020047#endif
48#define NANDARGS \
Tom Rini5ad8e112017-10-22 17:55:07 -040049 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
50 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020051 "nandargs=setenv bootargs console=${console} " \
52 "${optargs} " \
53 "${mtdparts} " \
54 "root=${nandroot} " \
55 "rootfstype=${nandrootfstype}\0" \
56 "nandroot=ubi0:rootfs rw ubi.mtd=5\0" \
57 "nandrootfstype=ubifs rootwait=1\0" \
58 "nandboot=echo Booting from nand ...; " \
59 "run nandargs; " \
60 "setenv loadaddr 0x84000000; " \
61 "ubi part UBI; " \
62 "ubifsmount ubi0:kernel; " \
63 "ubifsload $loadaddr kernel-fit.itb;" \
64 "ubifsumount; " \
Yegor Yefremov51c4ccb2015-07-06 17:28:36 +020065 "bootm ${loadaddr}#conf${board_name}; " \
66 "if test $? -ne 0; then echo Using default FIT config; " \
67 "bootm ${loadaddr}; fi;\0"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020068#else
69#define NANDARGS ""
70#endif
71
72#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
73
74#ifndef CONFIG_SPL_BUILD
75#define CONFIG_EXTRA_ENV_SETTINGS \
76 DEFAULT_LINUX_BOOT_ENV \
77 "boot_fdt=try\0" \
78 "bootpart=0:2\0" \
79 "bootdir=/boot\0" \
80 "bootfile=zImage\0" \
81 "fdtfile=undefined\0" \
82 "console=ttyO0,115200n8\0" \
83 "partitions=" \
84 "uuid_disk=${uuid_gpt_disk};" \
85 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
86 "optargs=\0" \
87 "mmcdev=0\0" \
88 "mmcroot=/dev/mmcblk0p2 ro\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +010089 "usbroot=/dev/sda2 ro\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020090 "mmcrootfstype=ext4 rootwait\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +010091 "usbrootfstype=ext4 rootwait\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +020092 "rootpath=/export/rootfs\0" \
93 "nfsopts=nolock\0" \
94 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
95 "::off\0" \
96 "ramroot=/dev/ram0 rw\0" \
97 "ramrootfstype=ext2\0" \
98 "mmcargs=setenv bootargs console=${console} " \
99 "${optargs} " \
100 "${mtdparts} " \
101 "root=${mmcroot} " \
102 "rootfstype=${mmcrootfstype}\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100103 "usbargs=setenv bootargs console=${console} " \
104 "${optargs} " \
105 "${mtdparts} " \
106 "root=${usbroot} " \
107 "rootfstype=${usbrootfstype}\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200108 "spiroot=/dev/mtdblock4 rw\0" \
109 "spirootfstype=jffs2\0" \
110 "spisrcaddr=0xe0000\0" \
111 "spiimgsize=0x362000\0" \
112 "spibusno=0\0" \
113 "spiargs=setenv bootargs console=${console} " \
114 "${optargs} " \
115 "root=${spiroot} " \
116 "rootfstype=${spirootfstype}\0" \
117 "netargs=setenv bootargs console=${console} " \
118 "${optargs} " \
119 "root=/dev/nfs " \
120 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
121 "ip=dhcp\0" \
122 "bootenv=uEnv.txt\0" \
123 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100124 "usbloadbootenv=load usb 0:1 ${loadaddr} ${bootenv}\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200125 "importbootenv=echo Importing environment from mmc ...; " \
126 "env import -t $loadaddr $filesize\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100127 "usbimportbootenv=echo Importing environment from USB ...; " \
128 "env import -t $loadaddr $filesize\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200129 "ramargs=setenv bootargs console=${console} " \
130 "${optargs} " \
131 "root=${ramroot} " \
132 "rootfstype=${ramrootfstype}\0" \
133 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
134 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100135 "usbloadimage=load usb 0:1 ${loadaddr} kernel-fit.itb\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200136 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100137 "usbloados=run usbargs; " \
138 "bootm ${loadaddr}#conf${board_name}; " \
139 "if test $? -ne 0; then " \
140 "echo Using default FIT configuration; " \
141 "bootm ${loadaddr}; " \
142 "fi;\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200143 "mmcloados=run mmcargs; " \
144 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
145 "if run loadfdt; then " \
146 "bootz ${loadaddr} - ${fdtaddr}; " \
147 "else " \
148 "if test ${boot_fdt} = try; then " \
149 "bootz; " \
150 "else " \
151 "echo WARN: Cannot load the DT; " \
152 "fi; " \
153 "fi; " \
154 "else " \
155 "bootz; " \
156 "fi;\0" \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100157 "usbboot=usb reset; " \
158 "if usb storage; then " \
159 "echo USB drive found;" \
160 "if run usbloadbootenv; then " \
161 "echo Loaded environment from ${bootenv};" \
162 "run usbimportbootenv;" \
163 "fi;" \
164 "if test -n $uenvcmd; then " \
165 "echo Running uenvcmd ...;" \
166 "run uenvcmd;" \
167 "fi;" \
168 "if run usbloadimage; then " \
169 "run usbloados;" \
170 "fi;" \
171 "fi;\0" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200172 "mmcboot=mmc dev ${mmcdev}; " \
173 "if mmc rescan; then " \
174 "echo SD/MMC found on device ${mmcdev};" \
175 "if run loadbootenv; then " \
176 "echo Loaded environment from ${bootenv};" \
177 "run importbootenv;" \
178 "fi;" \
179 "if test -n $uenvcmd; then " \
180 "echo Running uenvcmd ...;" \
181 "run uenvcmd;" \
182 "fi;" \
183 "if run loadimage; then " \
184 "run mmcloados;" \
185 "fi;" \
186 "fi;\0" \
187 "spiboot=echo Booting from spi ...; " \
188 "run spiargs; " \
189 "sf probe ${spibusno}:0; " \
190 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
191 "bootz ${loadaddr}\0" \
192 "netboot=echo Booting from network ...; " \
193 "setenv autoload no; " \
194 "dhcp; " \
195 "tftp ${loadaddr} ${bootfile}; " \
196 "tftp ${fdtaddr} ${fdtfile}; " \
197 "run netargs; " \
198 "bootz ${loadaddr} - ${fdtaddr}\0" \
199 "ramboot=echo Booting from ramdisk ...; " \
200 "run ramargs; " \
201 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
202 "findfdt=setenv fdtfile am335x-baltos.dtb\0" \
203 NANDARGS
204 /*DFUARGS*/
205#endif
206
207#define CONFIG_BOOTCOMMAND \
208 "run findfdt; " \
Yegor Yefremov2f5697e2016-12-01 12:52:18 +0100209 "run usbboot;" \
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200210 "run mmcboot;" \
211 "setenv mmcdev 1; " \
212 "setenv bootpart 1:2; " \
213 "run mmcboot;" \
214 "run nandboot;"
215
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200216/* NS16550 Configuration */
217#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
218#define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
219#define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
220#define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
221#define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
222#define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200223
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200224#define CONFIG_ENV_EEPROM_IS_ON_I2C
225#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
226#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200227
228/* PMIC support */
229#define CONFIG_POWER_TPS65910
230
231/* SPL */
232#ifndef CONFIG_NOR_BOOT
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200233/* Bootcount using the RTC block */
234#define CONFIG_BOOTCOUNT_LIMIT
235#define CONFIG_BOOTCOUNT_AM33XX
236
237/* USB gadget RNDIS */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200238
239/* General network SPL, both CPSW and USB gadget RNDIS */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200240#define CONFIG_SPL_NET_VCI_STRING "AM335x U-Boot SPL"*/
241
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200242#ifdef CONFIG_NAND
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200243#define CONFIG_SYS_NAND_5_ADDR_CYCLE
244#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
245 CONFIG_SYS_NAND_PAGE_SIZE)
246#define CONFIG_SYS_NAND_PAGE_SIZE 2048
247#define CONFIG_SYS_NAND_OOBSIZE 64
248#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
249#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
250#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
251 10, 11, 12, 13, 14, 15, 16, 17, \
252 18, 19, 20, 21, 22, 23, 24, 25, \
253 26, 27, 28, 29, 30, 31, 32, 33, \
254 34, 35, 36, 37, 38, 39, 40, 41, \
255 42, 43, 44, 45, 46, 47, 48, 49, \
256 50, 51, 52, 53, 54, 55, 56, 57, }
257
258#define CONFIG_SYS_NAND_ECCSIZE 512
259#define CONFIG_SYS_NAND_ECCBYTES 14
260#define CONFIG_SYS_NAND_ONFI_DETECTION
261#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
262#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
263#endif
264#endif
265
266/*
267 * USB configuration. We enable MUSB support, both for host and for
268 * gadget. We set USB0 as peripheral and USB1 as host, based on the
269 * board schematic and physical port wired to each. Then for host we
270 * add mass storage support and for gadget we add both RNDIS ethernet
271 * and DFU.
272 */
Paul Kocialkowskif34dfcb2015-08-04 17:04:06 +0200273#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200274#define CONFIG_AM335X_USB0
Yegor Yefremovd7bd6cb2015-07-09 13:34:24 +0200275#define CONFIG_AM335X_USB0_MODE MUSB_HOST
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200276#define CONFIG_AM335X_USB1
Yegor Yefremovd7bd6cb2015-07-09 13:34:24 +0200277#define CONFIG_AM335X_USB1_MODE MUSB_OTG
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200278
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200279#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
280/* disable host part of MUSB in SPL */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200281/* disable EFI partitions and partition UUID support */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200282/*
283 * Disable CPSW SPL support so we fit within the 101KiB limit.
284 */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200285#endif
286
287/* Network. */
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200288#define CONFIG_PHY_ADDR 0
289#define CONFIG_PHY_SMSC
290#define CONFIG_MII
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200291#define CONFIG_PHY_ATHEROS
292
293/* NAND support */
294#ifdef CONFIG_NAND
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200295#define GPMC_NAND_ECC_LP_x8_LAYOUT 1
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200296#endif
297
298#endif /* ! __CONFIG_BALTOS_H */