1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
9 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
12 #ifndef __CONFIG_AM335X_SHC_H
13 #define __CONFIG_AM335X_SHC_H
15 #include <configs/ti_am335x_common.h>
17 /* settings we don;t want on this board */
20 #define CONFIG_CMD_CACHE
22 #ifndef CONFIG_SPL_BUILD
23 # define CONFIG_TIMESTAMP
26 #define CONFIG_SYS_BOOTM_LEN (16 << 20)
29 #define V_OSCK 24000000 /* Clock output from T2 */
30 #define V_SCLK (V_OSCK)
33 * in case of SD Card or Network boot we want to have a possibility to
34 * debrick the shc, therefore do not read environment from eMMC
36 #if defined(CONFIG_SHC_SDBOOT) || defined(CONFIG_SHC_NETBOOT)
37 #define CONFIG_SYS_MMC_ENV_DEV 0
39 #define CONFIG_SYS_MMC_ENV_DEV 1
43 * Info when using boot partitions: As environment resides within first
44 * 128 kB, MLO must start at 128 kB == 0x20000
45 * ENV at MMC Boot0 Partition - 0/Undefined=user, 1=boot0, 2=boot1,
49 #define CONFIG_HSMMC2_8BIT
51 #ifndef CONFIG_SHC_ICT
53 * In builds other than ICT, reset to retry after timeout
54 * Define a timeout after which a stopped bootloader continues autoboot
55 * (only works with CONFIG_RESET_TO_RETRY)
57 # define CONFIG_BOOT_RETRY_TIME 30
58 # define CONFIG_RESET_TO_RETRY
61 #ifndef CONFIG_SPL_BUILD
62 #define CONFIG_EXTRA_ENV_SETTINGS \
63 "loadaddr=0x80200000\0" \
64 "kloadaddr=0x84000000\0" \
65 "fdtaddr=0x85000000\0" \
66 "fdt_high=0xffffffff\0" \
67 "rdaddr=0x81000000\0" \
69 "fdtfile=am335x-shc.dtb\0" \
71 "serverip=10.55.152.184\0" \
72 "rootpath=/srv/nfs/shc-rootfs\0" \
73 "console=ttyO0,115200n8\0" \
78 "active_root=root1\0" \
79 "inactive_root=root2\0" \
80 "mmcrootfstype=ext4 rootwait\0" \
82 "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \
85 "bootargs_defaults=setenv bootargs " \
86 "console=${console} " \
88 "mmcargs=run bootargs_defaults;" \
89 "setenv bootargs ${bootargs} " \
91 "rootfstype=${mmcrootfstype} ip=${ip_method}\0" \
92 "netargs=setenv bootargs console=${console} " \
95 "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
97 "bootenv=uEnv.txt\0" \
98 "loadbootenv=if fatload mmc ${mmcdev} ${loadaddr} ${bootenv}; then " \
99 "echo Loaded environment from ${bootenv}; " \
100 "run importbootenv; " \
102 "importbootenv=echo Importing environment variables from uEnv.txt ...; " \
103 "env import -t $loadaddr $filesize\0" \
104 "loaduimagefat=fatload mmc ${mmcdev} ${kloadaddr} ${bootfile}\0" \
105 "loaduimage=ext2load mmc ${mmcdev}:${mmcpart} ${kloadaddr} /boot/${bootfile}\0" \
106 "loadfdt=ext2load mmc ${mmcdev}:${mmcpart} ${fdtaddr} /boot/${fdtfile}\0" \
107 "netloaduimage=tftp ${loadaddr} ${bootfile}\0" \
108 "netloadfdt=tftp ${fdtaddr} ${fdtfile}\0" \
109 "mmcboot=echo Booting Linux from ${mmcdevice} ...; " \
111 "if run loadfdt; then " \
112 "echo device tree detected; " \
113 "bootm ${kloadaddr} - ${fdtaddr}; " \
115 "bootm ${kloadaddr}; " \
117 "netboot=echo Booting from network ...; " \
118 "setenv autoload no; " \
120 "run netloaduimage; " \
122 "echo NFS path: ${serverip}:${rootpath};" \
123 "if run netloadfdt; then " \
124 "echo device tree detected; " \
125 "bootm ${loadaddr} - ${fdtaddr}; " \
127 "bootm ${loadaddr}; " \
129 "emmc_erase=if test ${harakiri} = 1 ; then echo erase emmc ...; setenv mmcdev 1; mmc erase 0 200; reset; fi; \0" \
130 "mmcpart_gp=mmcpart gp 1 40; \0" \
131 "mmcpart_enhance=mmcpart enhance 0 64; \0" \
132 "mmcpart_rel_write=mmcpart rel_write 1f; \0" \
133 "mmcpart_commit=mmcpart commit 1; \0" \
134 "mmc_hw_part=run mmcpart_gp; run mmcpart_enhance; run mmcpart_rel_write; run mmcpart_commit; \0" \
135 "led_success=gpio set 22; \0" \
136 "fusecmd=mmc dev 1; if mmcpart iscommitted; then echo HW Partitioning already committed; mmcpart list; else run mmc_hw_part; fi; run led_success; \0" \
137 "uenv_exec=if test -n $uenvcmd; then " \
138 "echo Running uenvcmd ...; " \
141 "sd_setup=echo SD/MMC-Card detected on device 0; " \
142 "setenv mmcdevice SD; " \
143 "setenv mmcdev 0; " \
144 "setenv mmcpart 2; " \
145 "setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart};\0" \
146 "emmc_setup=echo eMMC detected on device 1; " \
147 "setenv mmcdevice eMMC; " \
148 "setenv mmcdev 1; " \
150 "if test ${active_root} = root2; then " \
151 "echo Active root is partition 6 (root2); " \
152 "setenv mmcpart 6; " \
154 "echo Active root is partition 5 (root1); " \
155 "setenv mmcpart 5; " \
157 "setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart};\0"
158 #endif /* #ifndef CONFIG_SPL_BUILD */
160 #if defined CONFIG_SHC_NETBOOT
162 # define CONFIG_BOOTCOMMAND \
164 "if run netboot; then " \
165 "echo Booting from network; " \
167 "echo ERROR: Cannot boot from network!; " \
171 #elif defined CONFIG_SHC_SDBOOT /* !defined CONFIG_SHC_NETBOOT */
173 # define CONFIG_BOOTCOMMAND \
174 "if mmc dev 0; mmc rescan; then " \
177 "echo ERROR: SD/MMC-Card not detected!; " \
180 "if run loaduimage; then " \
181 "echo Bootable SD/MMC-Card inserted, booting from it!; " \
184 "echo ERROR: Unable to load uImage from SD/MMC-Card!; " \
188 #elif defined CONFIG_SHC_ICT
189 /* ICT adapter boots only u-boot and does HW partitioning */
190 # define CONFIG_BOOTCOMMAND \
191 "if mmc dev 0; mmc rescan; then " \
194 "echo ERROR: SD/MMC-Card not detected!; " \
199 #else /* !defined CONFIG_SHC_NETBOOT, !defined CONFIG_SHC_SDBOOT */
200 /* Regular Boot from internal eMMC */
201 # define CONFIG_BOOTCOMMAND \
202 "if mmc dev 1; mmc rescan; then " \
205 "echo ERROR: eMMC device not detected!; " \
208 "if run loaduimage; then " \
211 "echo ERROR Unable to load uImage from eMMC!; " \
212 "echo Performing Rollback!; " \
213 "setenv _active_ ${active_root}; " \
214 "setenv _inactive_ ${inactive_root}; " \
215 "setenv active_root ${_inactive_}; " \
216 "setenv inactive_root ${_active_}; " \
221 #endif /* Regular Boot */
223 /* NS16550 Configuration */
224 #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* UART0 */
225 #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
226 #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
227 #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
228 #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
229 #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
232 #define CONFIG_POWER_TPS65217
237 * Disable MMC DM for SPL build and can be re-enabled after adding
240 #ifdef CONFIG_SPL_BUILD
245 #define CONFIG_BOOTP_DEFAULT
246 #define CONFIG_BOOTP_DNS2
247 #define CONFIG_BOOTP_SEND_HOSTNAME
248 #define CONFIG_NET_RETRY_COUNT 10
249 #define CONFIG_PHY_SMSC
251 /* I2C configuration */
252 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
253 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
254 #define CONFIG_SYS_I2C_SPEED 400000
255 #define CONFIG_SYS_I2C_SLAVE 1
256 #endif /* ! __CONFIG_AM335X_SHC_H */