blob: 13d11084cd4e9941b1a5f73273ff513151085419 [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>
Sam Protsenkobeffc172018-02-07 20:41:32 +020020#include <linux/sizes.h>
Chandan Nath5289e832011-10-14 02:58:26 +000021
Sam Protsenkobeffc172018-02-07 20:41:32 +020022#define CONFIG_SYS_BOOTM_LEN SZ_16M
Simon Glassdd42a4a2014-06-02 22:04:56 -060023
Tom Rini87694552013-08-09 11:22:17 -040024/* Clock Defines */
25#define V_OSCK 24000000 /* Clock output from T2 */
26#define V_SCLK (V_OSCK)
Tom Rini7bf038e2012-06-12 14:54:32 -070027
Miquel Raynal88718be2019-10-03 19:50:03 +020028#ifdef CONFIG_MTD_RAW_NAND
Justin Waters317fab22013-07-11 09:54:58 -040029#define NANDARGS \
Tom Rini43ede0b2017-10-22 17:55:07 -040030 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
31 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Justin Waters317fab22013-07-11 09:54:58 -040032 "nandargs=setenv bootargs console=${console} " \
33 "${optargs} " \
34 "root=${nandroot} " \
35 "rootfstype=${nandrootfstype}\0" \
Roger Quadroscda60172015-06-05 12:42:21 +030036 "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048\0" \
Michael Trimarchi98303ce2022-05-22 15:22:08 +020037 "nandrootfstype=ubifs rootwait\0" \
Tom Riniaefb7252013-11-18 10:36:23 -050038 "nandboot=echo Booting from nand ...; " \
Justin Waters317fab22013-07-11 09:54:58 -040039 "run nandargs; " \
Roger Quadroscda60172015-06-05 12:42:21 +030040 "nand read ${fdtaddr} NAND.u-boot-spl-os; " \
41 "nand read ${loadaddr} NAND.kernel; " \
Tom Riniaefb7252013-11-18 10:36:23 -050042 "bootz ${loadaddr} - ${fdtaddr}\0"
Justin Waters317fab22013-07-11 09:54:58 -040043#else
44#define NANDARGS ""
45#endif
46
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020047#define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
48 "bootcmd_" #devtypel "=" \
49 "run nandboot\0"
50
51#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
52 #devtypel #instance " "
53
Matwey V. Kornilov8c444c12020-08-24 21:00:33 +030054#if CONFIG_IS_ENABLED(CMD_USB)
55# define BOOT_TARGET_USB(func) func(USB, usb, 0)
56#else
57# define BOOT_TARGET_USB(func)
58#endif
59
Alex Kiernan4f385922018-04-01 09:22:35 +000060#if CONFIG_IS_ENABLED(CMD_PXE)
61# define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
62#else
63# define BOOT_TARGET_PXE(func)
64#endif
65
66#if CONFIG_IS_ENABLED(CMD_DHCP)
67# define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
68#else
69# define BOOT_TARGET_DHCP(func)
70#endif
71
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020072#define BOOT_TARGET_DEVICES(func) \
73 func(MMC, mmc, 0) \
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020074 func(MMC, mmc, 1) \
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020075 func(NAND, nand, 0) \
Matwey V. Kornilov8c444c12020-08-24 21:00:33 +030076 BOOT_TARGET_USB(func) \
Alex Kiernan4f385922018-04-01 09:22:35 +000077 BOOT_TARGET_PXE(func) \
78 BOOT_TARGET_DHCP(func)
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020079
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +020080#include <config_distro_bootcmd.h>
81
Tom Rinia32f42f2013-02-26 13:08:53 -050082#ifndef CONFIG_SPL_BUILD
Sekhar Nori88fdfcd2017-04-06 14:52:56 +053083#include <environment/ti/dfu.h>
Sekhar Nori88fdfcd2017-04-06 14:52:56 +053084
Chandan Nath5289e832011-10-14 02:58:26 +000085#define CONFIG_EXTRA_ENV_SETTINGS \
Tom Rinifb3ad9b2014-03-28 15:03:29 -040086 DEFAULT_LINUX_BOOT_ENV \
Dan Murphya7143212013-06-06 13:27:06 -050087 "fdtfile=undefined\0" \
Tom Riniff8f2772021-06-10 19:01:47 -040088 "finduuid=part uuid mmc 0:2 uuid\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070089 "console=ttyO0,115200n8\0" \
Tom Rini01d92b02014-01-21 17:15:06 -050090 "partitions=" \
91 "uuid_disk=${uuid_gpt_disk};" \
Sam Protsenkobeffc172018-02-07 20:41:32 +020092 "name=bootloader,start=384K,size=1792K," \
93 "uuid=${uuid_gpt_bootloader};" \
94 "name=rootfs,start=2688K,size=-,uuid=${uuid_gpt_rootfs}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070095 "optargs=\0" \
Tom Rini18e44ce2014-03-28 15:03:30 -040096 "ramroot=/dev/ram0 rw\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -070097 "ramrootfstype=ext2\0" \
Chase Maupin63ba7c62013-02-08 11:20:12 +000098 "spiroot=/dev/mtdblock4 rw\0" \
99 "spirootfstype=jffs2\0" \
100 "spisrcaddr=0xe0000\0" \
101 "spiimgsize=0x362000\0" \
102 "spibusno=0\0" \
103 "spiargs=setenv bootargs console=${console} " \
104 "${optargs} " \
105 "root=${spiroot} " \
106 "rootfstype=${spirootfstype}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700107 "ramargs=setenv bootargs console=${console} " \
108 "${optargs} " \
109 "root=${ramroot} " \
110 "rootfstype=${ramrootfstype}\0" \
Koen Kooi73a27a82013-03-14 05:55:20 +0000111 "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
Chase Maupin63ba7c62013-02-08 11:20:12 +0000112 "spiboot=echo Booting from spi ...; " \
113 "run spiargs; " \
114 "sf probe ${spibusno}:0; " \
115 "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400116 "bootz ${loadaddr}\0" \
Tom Rini7bf038e2012-06-12 14:54:32 -0700117 "ramboot=echo Booting from ramdisk ...; " \
118 "run ramargs; " \
Tom Rinie3cf9692013-09-24 09:40:52 -0400119 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Tom Rini044fc142012-10-24 07:28:17 +0000120 "findfdt="\
121 "if test $board_name = A335BONE; then " \
122 "setenv fdtfile am335x-bone.dtb; fi; " \
Koen Kooi20775902013-03-14 05:55:19 +0000123 "if test $board_name = A335BNLT; then " \
matwey.kornilov@gmail.comf9f9d2d2016-05-01 19:58:31 +0300124 "setenv fdtfile am335x-boneblack.dtb; fi; " \
Jason Kridnereff0c972018-03-07 05:40:41 -0500125 "if test $board_name = A335PBGL; then " \
126 "setenv fdtfile am335x-pocketbeagle.dtb; fi; " \
robertcnelson@gmail.com40159492017-03-30 14:29:52 -0500127 "if test $board_name = BBBW; then " \
128 "setenv fdtfile am335x-boneblack-wireless.dtb; fi; " \
matwey.kornilov@gmail.comf9f9d2d2016-05-01 19:58:31 +0300129 "if test $board_name = BBG1; then " \
130 "setenv fdtfile am335x-bonegreen.dtb; fi; " \
robertcnelson@gmail.com2b79fba2017-03-30 14:29:53 -0500131 "if test $board_name = BBGW; then " \
132 "setenv fdtfile am335x-bonegreen-wireless.dtb; fi; " \
robertcnelson@gmail.com52609d72017-03-30 14:29:54 -0500133 "if test $board_name = BBBL; then " \
134 "setenv fdtfile am335x-boneblue.dtb; fi; " \
Koen Kooiad6054f2018-07-18 10:13:59 +0200135 "if test $board_name = BBEN; then " \
136 "setenv fdtfile am335x-sancloud-bbe.dtb; fi; " \
Paul Barkercde72642022-04-11 15:42:00 +0000137 "if test $board_name = BBELITE; then " \
138 "setenv fdtfile am335x-sancloud-bbe-lite.dtb; fi; " \
Paul Barkera95cd682022-04-11 15:42:01 +0000139 "if test $board_name = BBE_EX_WIFI; then " \
140 "setenv fdtfile am335x-sancloud-bbe-extended-wifi.dtb; fi; " \
Tom Rini044fc142012-10-24 07:28:17 +0000141 "if test $board_name = A33515BB; then " \
142 "setenv fdtfile am335x-evm.dtb; fi; " \
143 "if test $board_name = A335X_SK; then " \
Tom Rini20cb5fb2013-06-27 09:55:39 -0400144 "setenv fdtfile am335x-evmsk.dtb; fi; " \
Lokesh Vutla426af382016-05-16 11:47:27 +0530145 "if test $board_name = A335_ICE; then " \
Amjad Ouled-Ameur609983e2021-10-29 16:08:17 +0200146 "setenv fdtfile am335x-icev2.dtb; " \
147 "if test $ice_mii = mii; then " \
148 "setenv pxe_label_override Pruss; fi;" \
149 "fi; " \
Dan Murphya7143212013-06-06 13:27:06 -0500150 "if test $fdtfile = undefined; then " \
Justin Waters317fab22013-07-11 09:54:58 -0400151 "echo WARNING: Could not determine device tree to use; fi; \0" \
Lokesh Vutla426af382016-05-16 11:47:27 +0530152 "init_console=" \
153 "if test $board_name = A335_ICE; then "\
154 "setenv console ttyO3,115200n8;" \
155 "else " \
156 "setenv console ttyO0,115200n8;" \
157 "fi;\0" \
Tom Riniba481c52013-12-04 09:14:20 -0500158 NANDARGS \
Cooper Jr., Franklin23208662015-04-21 07:51:04 -0500159 NETARGS \
Sjoerd Simonsbc3199f2015-08-28 15:01:56 +0200160 DFUARGS \
161 BOOTENV
Tom Rinia32f42f2013-02-26 13:08:53 -0500162#endif
163
Chandan Nath5289e832011-10-14 02:58:26 +0000164/* NS16550 Configuration */
Chandan Nath5289e832011-10-14 02:58:26 +0000165#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
Andrew Bradfordc3f83182012-10-25 08:21:32 -0400166#define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
167#define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
168#define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
169#define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
170#define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
Chandan Nath5289e832011-10-14 02:58:26 +0000171
Tom Rini97210272013-08-30 16:28:46 -0400172/* PMIC support */
Tom Rini97210272013-08-30 16:28:46 -0400173#define CONFIG_POWER_TPS65910
174
Tom Rini87694552013-08-09 11:22:17 -0400175/* SPL */
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400176#ifndef CONFIG_NOR_BOOT
Tom Riniabcaa6e2013-11-08 13:53:14 -0500177/* Bootcount using the RTC block */
Tom Rini78701182014-10-03 15:57:00 -0400178#define CONFIG_SYS_BOOTCOUNT_BE
Tom Riniabcaa6e2013-11-08 13:53:14 -0500179
Tom Rinia7a06402013-08-20 08:53:46 -0400180/* USB gadget RNDIS */
pekon guptafea95432014-07-22 16:03:19 +0530181#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +0000182
Miquel Raynal88718be2019-10-03 19:50:03 +0200183#ifdef CONFIG_MTD_RAW_NAND
pekon guptafea95432014-07-22 16:03:19 +0530184/* NAND: device related configs */
pekon guptafea95432014-07-22 16:03:19 +0530185/* NAND: driver related configs */
Ilya Yanokb4606c62012-11-06 13:06:35 +0000186#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
187 10, 11, 12, 13, 14, 15, 16, 17, \
188 18, 19, 20, 21, 22, 23, 24, 25, \
189 26, 27, 28, 29, 30, 31, 32, 33, \
190 34, 35, 36, 37, 38, 39, 40, 41, \
191 42, 43, 44, 45, 46, 47, 48, 49, \
192 50, 51, 52, 53, 54, 55, 56, 57, }
193
194#define CONFIG_SYS_NAND_ECCSIZE 512
195#define CONFIG_SYS_NAND_ECCBYTES 14
Miquel Raynal88718be2019-10-03 19:50:03 +0200196#endif /* !CONFIG_MTD_RAW_NAND */
Ilya Yanokb4606c62012-11-06 13:06:35 +0000197
Tom Rini85a02aa2013-08-20 08:53:48 -0400198/* USB Device Firmware Update support */
Mateusz Zalegafad8edf2014-04-28 21:13:27 +0200199#ifndef CONFIG_SPL_BUILD
Tom Riniba481c52013-12-04 09:14:20 -0500200#define DFUARGS \
Sam Protsenkodd0829f2017-12-12 20:07:41 +0200201 DFU_ALT_INFO_EMMC \
Tom Riniba481c52013-12-04 09:14:20 -0500202 DFU_ALT_INFO_MMC \
203 DFU_ALT_INFO_RAM \
204 DFU_ALT_INFO_NAND
Mateusz Zalegafad8edf2014-04-28 21:13:27 +0200205#endif
Tom Rini85a02aa2013-08-20 08:53:48 -0400206
Tom Rini4adfcd62013-02-08 11:20:15 +0000207/*
Tom Rini64540282013-07-18 15:12:59 -0400208 * Default to using SPI for environment, etc.
209 * 0x000000 - 0x020000 : SPL (128KiB)
210 * 0x020000 - 0x0A0000 : U-Boot (512KiB)
211 * 0x0A0000 - 0x0BFFFF : First copy of U-Boot Environment (128KiB)
212 * 0x0C0000 - 0x0DFFFF : Second copy of U-Boot Environment (128KiB)
213 * 0x0E0000 - 0x442000 : Linux Kernel
Tom Rini4adfcd62013-02-08 11:20:15 +0000214 * 0x442000 - 0x800000 : Userland
215 */
216#if defined(CONFIG_SPI_BOOT)
Tom Rini585d8bc2014-04-17 17:23:25 -0400217/* SPL related */
Justin Waters8c6ede12013-07-11 09:55:02 -0400218#elif defined(CONFIG_EMMC_BOOT)
Emmanuel Vadotb1c6a542017-01-05 04:16:36 +0100219#define CONFIG_SYS_MMC_MAX_DEVICE 2
Justin Waters8c6ede12013-07-11 09:55:02 -0400220#endif
Tom Rini4adfcd62013-02-08 11:20:15 +0000221
Tom Rini87694552013-08-09 11:22:17 -0400222/* Network. */
Mugunthan V N4b00d022016-10-13 19:33:37 +0530223/* Enable Atheros phy driver */
Chandan Nath93042962012-07-24 12:22:20 +0000224
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400225/*
226 * NOR Size = 16 MiB
227 * Number of Sectors/Blocks = 128
228 * Sector Size = 128 KiB
229 * Word length = 16 bits
230 * Default layout:
231 * 0x000000 - 0x07FFFF : U-Boot (512 KiB)
232 * 0x080000 - 0x09FFFF : First copy of U-Boot Environment (128 KiB)
233 * 0x0A0000 - 0x0BFFFF : Second copy of U-Boot Environment (128 KiB)
234 * 0x0C0000 - 0x4BFFFF : Linux Kernel (4 MiB)
235 * 0x4C0000 - 0xFFFFFF : Userland (11 MiB + 256 KiB)
236 */
237#if defined(CONFIG_NOR)
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400238#define CONFIG_SYS_MAX_FLASH_SECT 128
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400239#define CONFIG_SYS_FLASH_BASE (0x08000000)
pekon gupta77cd89e2014-07-18 17:59:40 +0530240#define CONFIG_SYS_FLASH_SIZE 0x01000000
Steve Kipiszcd8845d2013-07-18 15:13:03 -0400241#endif /* NOR support */
242
Chandan Nath5289e832011-10-14 02:58:26 +0000243#endif /* ! __CONFIG_AM335X_EVM_H */