xref: /openbmc/u-boot/include/configs/uniphier.h (revision 24b56e2b)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2012-2015 Panasonic Corporation
4  * Copyright (C) 2015-2016 Socionext Inc.
5  *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
6  */
7 
8 /* U-Boot - Common settings for UniPhier Family */
9 
10 #ifndef __CONFIG_UNIPHIER_COMMON_H__
11 #define __CONFIG_UNIPHIER_COMMON_H__
12 
13 #ifndef CONFIG_SPL_BUILD
14 #include <config_distro_bootcmd.h>
15 
16 #ifdef CONFIG_CMD_MMC
17 #define BOOT_TARGET_DEVICE_MMC(func)	func(MMC, mmc, 0) func(MMC, mmc, 1)
18 #else
19 #define BOOT_TARGET_DEVICE_MMC(func)
20 #endif
21 
22 #ifdef CONFIG_CMD_UBIFS
23 #define BOOT_TARGET_DEVICE_UBIFS(func)	func(UBIFS, ubifs, 0)
24 #else
25 #define BOOT_TARGET_DEVICE_UBIFS(func)
26 #endif
27 
28 #ifdef CONFIG_CMD_USB
29 #define BOOT_TARGET_DEVICE_USB(func)	func(USB, usb, 0)
30 #else
31 #define BOOT_TARGET_DEVICE_USB(func)
32 #endif
33 
34 #define BOOT_TARGET_DEVICES(func)	\
35 	BOOT_TARGET_DEVICE_MMC(func)	\
36 	BOOT_TARGET_DEVICE_UBIFS(func)	\
37 	BOOT_TARGET_DEVICE_USB(func)
38 #else
39 #define BOOTENV
40 #endif
41 
42 #define CONFIG_ARMV7_PSCI_1_0
43 
44 /*-----------------------------------------------------------------------
45  * MMU and Cache Setting
46  *----------------------------------------------------------------------*/
47 
48 /* Comment out the following to enable L1 cache */
49 /* #define CONFIG_SYS_ICACHE_OFF */
50 /* #define CONFIG_SYS_DCACHE_OFF */
51 
52 #define CONFIG_SYS_MALLOC_LEN		(4 * 1024 * 1024)
53 
54 #define CONFIG_TIMESTAMP
55 
56 /* FLASH related */
57 
58 #define CONFIG_SYS_MAX_FLASH_SECT	256
59 #define CONFIG_SYS_MONITOR_BASE		0
60 #define CONFIG_SYS_MONITOR_LEN		0x000d0000	/* 832KB */
61 #define CONFIG_SYS_FLASH_BASE		0
62 
63 /*
64  * flash_toggle does not work for our support card.
65  * We need to use flash_status_poll.
66  */
67 #define CONFIG_SYS_CFI_FLASH_STATUS_POLL
68 
69 #define CONFIG_FLASH_SHOW_PROGRESS	45 /* count down from 45/5: 9..1 */
70 
71 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
72 
73 /* serial console configuration */
74 
75 #define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */
76 /* Boot Argument Buffer Size */
77 #define CONFIG_SYS_BARGSIZE		(CONFIG_SYS_CBSIZE)
78 
79 #define CONFIG_ENV_OFFSET			0x100000
80 #define CONFIG_ENV_SIZE				0x2000
81 /* #define CONFIG_ENV_OFFSET_REDUND	(CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) */
82 
83 #define CONFIG_SYS_MMC_ENV_DEV		0
84 #define CONFIG_SYS_MMC_ENV_PART		1
85 
86 #if !defined(CONFIG_ARM64)
87 /* Time clock 1MHz */
88 #define CONFIG_SYS_TIMER_RATE			1000000
89 #endif
90 
91 #define CONFIG_SYS_MAX_NAND_DEVICE			1
92 #define CONFIG_SYS_NAND_ONFI_DETECTION
93 #define CONFIG_SYS_NAND_REGS_BASE			0x68100000
94 #define CONFIG_SYS_NAND_DATA_BASE			0x68000000
95 #define CONFIG_SYS_NAND_BAD_BLOCK_POS			0
96 
97 /* SD/MMC */
98 #define CONFIG_SUPPORT_EMMC_BOOT
99 
100 /* memtest works on */
101 #define CONFIG_SYS_MEMTEST_START	CONFIG_SYS_SDRAM_BASE
102 #define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_SDRAM_BASE + 0x01000000)
103 
104 /*
105  * Network Configuration
106  */
107 #define CONFIG_SERVERIP			192.168.11.1
108 #define CONFIG_IPADDR			192.168.11.10
109 #define CONFIG_GATEWAYIP		192.168.11.1
110 #define CONFIG_NETMASK			255.255.255.0
111 
112 #define CONFIG_LOADADDR			0x85000000
113 #define CONFIG_SYS_LOAD_ADDR		CONFIG_LOADADDR
114 #define CONFIG_SYS_BOOTM_LEN		(32 << 20)
115 
116 #if defined(CONFIG_ARM64)
117 /* ARM Trusted Firmware */
118 #define BOOT_IMAGES \
119 	"second_image=unph_bl.bin\0" \
120 	"third_image=fip.bin\0"
121 #else
122 #define BOOT_IMAGES \
123 	"second_image=u-boot-spl.bin\0" \
124 	"third_image=u-boot.bin\0"
125 #endif
126 
127 #define CONFIG_PREBOOT			"env exist ${bootdev}preboot && run ${bootdev}preboot"
128 
129 #define CONFIG_ROOTPATH			"/nfs/root/path"
130 #define CONFIG_NFSBOOTCOMMAND						\
131 	"setenv bootargs $bootargs root=/dev/nfs rw "			\
132 	"nfsroot=$serverip:$rootpath "					\
133 	"ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off;" \
134 		"run __nfsboot"
135 
136 #ifdef CONFIG_FIT
137 #define CONFIG_BOOTFILE			"fitImage"
138 #define LINUXBOOT_ENV_SETTINGS \
139 	"kernel_addr_r=0x85100000\0" \
140 	"tftpboot=tftpboot $kernel_addr_r $bootfile &&" \
141 		"bootm $kernel_addr_r\0" \
142 	"__nfsboot=run tftpboot\0"
143 #else
144 #ifdef CONFIG_ARM64
145 #define CONFIG_BOOTFILE			"Image"
146 #define LINUXBOOT_CMD			"booti"
147 #define KERNEL_ADDR_R			"kernel_addr_r=0x82080000\0"
148 #else
149 #define CONFIG_BOOTFILE			"zImage"
150 #define LINUXBOOT_CMD			"bootz"
151 #define KERNEL_ADDR_R			"kernel_addr_r=0x80208000\0"
152 #endif
153 #define LINUXBOOT_ENV_SETTINGS \
154 	"fdt_addr_r=0x85100000\0" \
155 	KERNEL_ADDR_R \
156 	"ramdisk_addr_r=0x86000000\0" \
157 	"ramdisk_file=rootfs.cpio.gz\0" \
158 	"boot_common=setexpr bootm_low $kernel_addr_r '&' fe000000 && " \
159 		LINUXBOOT_CMD " $kernel_addr_r $ramdisk_addr_r $fdt_addr_r\0" \
160 	"tftpboot=tftpboot $kernel_addr_r $bootfile && " \
161 		"tftpboot $fdt_addr_r $fdtfile &&" \
162 		"tftpboot $ramdisk_addr_r $ramdisk_file &&" \
163 		"setenv ramdisk_addr_r $ramdisk_addr_r:$filesize &&" \
164 		"run boot_common\0" \
165 	"__nfsboot=tftpboot $kernel_addr_load $bootfile && " \
166 		"tftpboot $fdt_addr_r $fdtfile &&" \
167 		"setenv ramdisk_addr_r - &&" \
168 		"run boot_common\0"
169 #endif
170 
171 #define	CONFIG_EXTRA_ENV_SETTINGS				\
172 	"netdev=eth0\0"						\
173 	"initrd_high=0xffffffffffffffff\0"			\
174 	"script=boot.scr\0" \
175 	"scriptaddr=0x85000000\0"				\
176 	"nor_base=0x42000000\0"					\
177 	"emmcboot=mmcsetn && run bootcmd_mmc${mmc_first_dev}\0" \
178 	"nandboot=run bootcmd_ubifs0\0" \
179 	"norboot=run tftpboot\0" \
180 	"usbboot=run bootcmd_usb0\0" \
181 	"emmcscript=setenv devtype mmc && " \
182 		"mmcsetn && " \
183 		"setenv devnum ${mmc_first_dev} && " \
184 		"run loadscript_fat\0" \
185 	"nandscript=echo Running ${script} from ubi ... && " \
186 		"ubi part UBI && " \
187 		"ubifsmount ubi0:boot && " \
188 		"ubifsload ${loadaddr} ${script} && " \
189 		"source\0" \
190 	"norscript=echo Running ${script} from tftp ... && " \
191 		"tftpboot ${script} &&" \
192 		"source\0" \
193 	"usbscript=usb start && " \
194 		"setenv devtype usb && " \
195 		"setenv devnum 0 && " \
196 		"run loadscript_fat\0" \
197 	"loadscript_fat=echo Running ${script} from ${devtype}${devnum} ... && " \
198 		"load ${devtype} ${devnum}:1 ${loadaddr} ${script} && " \
199 		"source\0" \
200 	"sramupdate=setexpr tmp_addr $nor_base + 0x50000 &&"	\
201 		"tftpboot $tmp_addr $second_image && " \
202 		"setexpr tmp_addr $nor_base + 0x70000 && " \
203 		"tftpboot $tmp_addr $third_image\0" \
204 	"emmcupdate=mmcsetn &&"					\
205 		"mmc dev $mmc_first_dev &&"			\
206 		"mmc partconf $mmc_first_dev 0 1 1 &&"		\
207 		"tftpboot $second_image && " \
208 		"mmc write $loadaddr 0 100 && " \
209 		"tftpboot $third_image && " \
210 		"mmc write $loadaddr 100 f00\0" \
211 	"nandupdate=nand erase 0 0x00100000 &&"			\
212 		"tftpboot $second_image && " \
213 		"nand write $loadaddr 0 0x00020000 && " \
214 		"tftpboot $third_image && " \
215 		"nand write $loadaddr 0x00020000 0x001e0000\0" \
216 	"usbupdate=usb start &&" \
217 		"tftpboot $second_image && " \
218 		"usb write $loadaddr 0 100 && " \
219 		"tftpboot $third_image && " \
220 		"usb write $loadaddr 100 f00\0" \
221 	BOOT_IMAGES \
222 	LINUXBOOT_ENV_SETTINGS \
223 	BOOTENV
224 
225 #define CONFIG_SYS_BOOTMAPSZ			0x20000000
226 
227 #define CONFIG_SYS_SDRAM_BASE		0x80000000
228 
229 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_TEXT_BASE)
230 
231 /* only for SPL */
232 #if defined(CONFIG_ARCH_UNIPHIER_LD4) || \
233 	defined(CONFIG_ARCH_UNIPHIER_SLD8)
234 #define CONFIG_SPL_TEXT_BASE		0x00040000
235 #else
236 #define CONFIG_SPL_TEXT_BASE		0x00100000
237 #endif
238 
239 #define CONFIG_SPL_STACK		(0x00200000)
240 
241 #define CONFIG_SYS_NAND_U_BOOT_OFFS		0x20000
242 
243 /* subtract sizeof(struct image_header) */
244 #define CONFIG_SYS_UBOOT_BASE			(0x130000 - 0x40)
245 
246 #define CONFIG_SPL_TARGET			"u-boot-with-spl.bin"
247 #define CONFIG_SPL_MAX_FOOTPRINT		0x10000
248 #define CONFIG_SPL_MAX_SIZE			0x10000
249 #define CONFIG_SPL_BSS_MAX_SIZE			0x2000
250 
251 #define CONFIG_SPL_PAD_TO			0x20000
252 
253 #endif /* __CONFIG_UNIPHIER_COMMON_H__ */
254