Merge branch '2022-11-10-symbol-migrations'
[platform/kernel/u-boot.git] / include / configs / sunxi-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2012-2012 Henrik Nordstrom <henrik@henriknordstrom.net>
4  *
5  * (C) Copyright 2007-2011
6  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
7  * Tom Cubie <tangliang@allwinnertech.com>
8  *
9  * Configuration settings for the Allwinner sunxi series of boards.
10  */
11
12 #ifndef _SUNXI_COMMON_CONFIG_H
13 #define _SUNXI_COMMON_CONFIG_H
14
15 #include <asm/arch/cpu.h>
16 #include <linux/stringify.h>
17
18 /* Serial & console */
19 #define CONFIG_SYS_NS16550_SERIAL
20 /* ns16550 reg in the low bits of cpu reg */
21 #ifdef CONFIG_MACH_SUNIV
22 /* suniv doesn't have apb2 and uart is connected to apb1 */
23 #define CONFIG_SYS_NS16550_CLK          100000000
24 #else
25 #define CONFIG_SYS_NS16550_CLK          24000000
26 #endif
27 #ifndef CONFIG_DM_SERIAL
28 # define CONFIG_SYS_NS16550_REG_SIZE    -4
29 # define CONFIG_SYS_NS16550_COM1                SUNXI_UART0_BASE
30 # define CONFIG_SYS_NS16550_COM2                SUNXI_UART1_BASE
31 # define CONFIG_SYS_NS16550_COM3                SUNXI_UART2_BASE
32 # define CONFIG_SYS_NS16550_COM4                SUNXI_UART3_BASE
33 # define CONFIG_SYS_NS16550_COM5                SUNXI_R_UART_BASE
34 #endif
35
36 /* CPU */
37
38 /*
39  * The DRAM Base differs between some models. We cannot use macros for the
40  * CONFIG_FOO defines which contain the DRAM base address since they end
41  * up unexpanded in include/autoconf.mk .
42  *
43  * So we have to have this #ifdef #else #endif block for these.
44  */
45 #ifdef CONFIG_MACH_SUN9I
46 #define SDRAM_OFFSET(x) 0x2##x
47 #define CONFIG_SYS_SDRAM_BASE           0x20000000
48 #elif defined(CONFIG_MACH_SUNIV)
49 #define SDRAM_OFFSET(x) 0x8##x
50 #define CONFIG_SYS_SDRAM_BASE           0x80000000
51 #else
52 #define SDRAM_OFFSET(x) 0x4##x
53 #define CONFIG_SYS_SDRAM_BASE           0x40000000
54 /* V3s do not have enough memory to place code at 0x4a000000 */
55 #endif
56
57 /*
58  * The A80's A1 sram starts at 0x00010000 rather then at 0x00000000 and is
59  * slightly bigger. Note that it is possible to map the first 32 KiB of the
60  * A1 at 0x00000000 like with older SoCs by writing 0x16aa0001 to the
61  * undocumented 0x008000e0 SYS_CTRL register. Where the 16aa is a key and
62  * the 1 actually activates the mapping of the first 32 KiB to 0x00000000.
63  * A64 and H5 also has SRAM A1 at 0x00010000, but no magic remap register
64  * is known yet.
65  * H6 has SRAM A1 at 0x00020000.
66  */
67 #define CONFIG_SYS_INIT_RAM_ADDR        CONFIG_SUNXI_SRAM_ADDRESS
68 /* FIXME: this may be larger on some SoCs */
69 #define CONFIG_SYS_INIT_RAM_SIZE        0x8000 /* 32 KiB */
70
71 #define PHYS_SDRAM_0                    CONFIG_SYS_SDRAM_BASE
72 #define PHYS_SDRAM_0_SIZE               0x80000000 /* 2 GiB */
73
74 #ifdef CONFIG_NAND_SUNXI
75 #define CONFIG_SYS_NAND_MAX_ECCPOS 1664
76 #endif
77
78 /* mmc config */
79 #define CONFIG_MMC_SUNXI_SLOT           0
80
81 /*
82  * Miscellaneous configurable options
83  */
84
85 /* standalone support */
86 #define CONFIG_STANDALONE_LOAD_ADDR     CONFIG_SYS_LOAD_ADDR
87
88 /* FLASH and environment organization */
89
90 /*
91  * We cannot use expressions here, because expressions won't be evaluated in
92  * autoconf.mk.
93  */
94 #if CONFIG_SUNXI_SRAM_ADDRESS == 0x10000
95 #ifdef CONFIG_ARM64
96 /* end of SRAM A2 for now, as SRAM A1 is pretty tight for an ARM64 build */
97 #define LOW_LEVEL_SRAM_STACK            0x00054000
98 #else
99 #define LOW_LEVEL_SRAM_STACK            0x00018000
100 #endif /* !CONFIG_ARM64 */
101 #elif CONFIG_SUNXI_SRAM_ADDRESS == 0x20000
102 #ifdef CONFIG_MACH_SUN50I_H616
103 #define LOW_LEVEL_SRAM_STACK            0x58000
104 #else
105 /* end of SRAM A2 on H6 for now */
106 #define LOW_LEVEL_SRAM_STACK            0x00118000
107 #endif
108 #else
109 #define LOW_LEVEL_SRAM_STACK            0x00008000      /* End of sram */
110 #endif
111
112 /* Ethernet support */
113
114 #ifdef CONFIG_ARM64
115 /*
116  * Boards seem to come with at least 512MB of DRAM.
117  * The kernel should go at 512K, which is the default text offset (that will
118  * be adjusted at runtime if needed).
119  * There is no compression for arm64 kernels (yet), so leave some space
120  * for really big kernels, say 256MB for now.
121  * Scripts, PXE and DTBs should go afterwards, leaving the rest for the initrd.
122  */
123 #define BOOTM_SIZE        __stringify(0xa000000)
124 #define KERNEL_ADDR_R     __stringify(SDRAM_OFFSET(0080000))
125 #define KERNEL_COMP_ADDR_R __stringify(SDRAM_OFFSET(4000000))
126 #define KERNEL_COMP_SIZE  __stringify(0xb000000)
127 #define FDT_ADDR_R        __stringify(SDRAM_OFFSET(FA00000))
128 #define SCRIPT_ADDR_R     __stringify(SDRAM_OFFSET(FC00000))
129 #define PXEFILE_ADDR_R    __stringify(SDRAM_OFFSET(FD00000))
130 #define FDTOVERLAY_ADDR_R __stringify(SDRAM_OFFSET(FE00000))
131 #define RAMDISK_ADDR_R    __stringify(SDRAM_OFFSET(FF00000))
132
133 #elif (CONFIG_SUNXI_MINIMUM_DRAM_MB >= 256)
134 /*
135  * 160M RAM (256M minimum minus 64MB heap + 32MB for u-boot, stack, fb, etc.
136  * 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
137  * 1M script, 1M pxe, 1M dt overlay and the ramdisk at the end.
138  */
139 #define BOOTM_SIZE        __stringify(0xa000000)
140 #define KERNEL_ADDR_R     __stringify(SDRAM_OFFSET(2000000))
141 #define FDT_ADDR_R        __stringify(SDRAM_OFFSET(3000000))
142 #define SCRIPT_ADDR_R     __stringify(SDRAM_OFFSET(3100000))
143 #define PXEFILE_ADDR_R    __stringify(SDRAM_OFFSET(3200000))
144 #define FDTOVERLAY_ADDR_R __stringify(SDRAM_OFFSET(3300000))
145 #define RAMDISK_ADDR_R    __stringify(SDRAM_OFFSET(3400000))
146
147 #elif (CONFIG_SUNXI_MINIMUM_DRAM_MB >= 64)
148 /*
149  * 64M RAM minus 2MB heap + 16MB for u-boot, stack, fb, etc.
150  * 16M uncompressed kernel, 8M compressed kernel, 1M fdt,
151  * 1M script, 1M pxe, 1M dt overlay and the ramdisk at the end.
152  */
153 #define BOOTM_SIZE        __stringify(0x2e00000)
154 #define KERNEL_ADDR_R     __stringify(SDRAM_OFFSET(1000000))
155 #define FDT_ADDR_R        __stringify(SDRAM_OFFSET(1800000))
156 #define SCRIPT_ADDR_R     __stringify(SDRAM_OFFSET(1900000))
157 #define PXEFILE_ADDR_R    __stringify(SDRAM_OFFSET(1A00000))
158 #define FDTOVERLAY_ADDR_R __stringify(SDRAM_OFFSET(1B00000))
159 #define RAMDISK_ADDR_R    __stringify(SDRAM_OFFSET(1C00000))
160
161 #elif (CONFIG_SUNXI_MINIMUM_DRAM_MB >= 32)
162 /*
163  * 32M RAM minus 2.5MB for u-boot, heap, stack, etc.
164  * 16M uncompressed kernel, 7M compressed kernel, 128K fdt, 64K script,
165  * 128K DT overlay, 128K PXE and the ramdisk in the rest (max. 5MB)
166  */
167 #define BOOTM_SIZE        __stringify(0x1700000)
168 #define KERNEL_ADDR_R     __stringify(SDRAM_OFFSET(1000000))
169 #define FDT_ADDR_R        __stringify(SDRAM_OFFSET(1d50000))
170 #define SCRIPT_ADDR_R     __stringify(SDRAM_OFFSET(1d40000))
171 #define PXEFILE_ADDR_R    __stringify(SDRAM_OFFSET(1d00000))
172 #define FDTOVERLAY_ADDR_R __stringify(SDRAM_OFFSET(1d20000))
173 #define RAMDISK_ADDR_R    __stringify(SDRAM_OFFSET(1800000))
174
175 #else
176 #error Need at least 32MB of DRAM. Please adjust load addresses.
177 #endif
178
179 #define MEM_LAYOUT_ENV_SETTINGS \
180         "bootm_size=" BOOTM_SIZE "\0" \
181         "kernel_addr_r=" KERNEL_ADDR_R "\0" \
182         "fdt_addr_r=" FDT_ADDR_R "\0" \
183         "scriptaddr=" SCRIPT_ADDR_R "\0" \
184         "pxefile_addr_r=" PXEFILE_ADDR_R "\0" \
185         "fdtoverlay_addr_r=" FDTOVERLAY_ADDR_R "\0" \
186         "ramdisk_addr_r=" RAMDISK_ADDR_R "\0"
187
188 #ifdef CONFIG_ARM64
189
190 #define MEM_LAYOUT_ENV_EXTRA_SETTINGS \
191         "kernel_comp_addr_r=" KERNEL_COMP_ADDR_R "\0" \
192         "kernel_comp_size=" KERNEL_COMP_SIZE "\0"
193
194 #else
195
196 #define MEM_LAYOUT_ENV_EXTRA_SETTINGS ""
197
198 #endif
199
200 #define DFU_ALT_INFO_RAM \
201         "dfu_alt_info_ram=" \
202         "kernel ram " KERNEL_ADDR_R " 0x1000000;" \
203         "fdt ram " FDT_ADDR_R " 0x100000;" \
204         "ramdisk ram " RAMDISK_ADDR_R " 0x4000000\0"
205
206 #ifdef CONFIG_MMC
207 #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
208 #define BOOTENV_DEV_MMC_AUTO(devtypeu, devtypel, instance)              \
209         BOOTENV_DEV_MMC(MMC, mmc, 0)                                    \
210         BOOTENV_DEV_MMC(MMC, mmc, 1)                                    \
211         "bootcmd_mmc_auto="                                             \
212                 "if test ${mmc_bootdev} -eq 1; then "                   \
213                         "run bootcmd_mmc1; "                            \
214                         "run bootcmd_mmc0; "                            \
215                 "elif test ${mmc_bootdev} -eq 0; then "                 \
216                         "run bootcmd_mmc0; "                            \
217                         "run bootcmd_mmc1; "                            \
218                 "fi\0"
219
220 #define BOOTENV_DEV_NAME_MMC_AUTO(devtypeu, devtypel, instance) \
221         "mmc_auto "
222
223 #define BOOT_TARGET_DEVICES_MMC(func) func(MMC_AUTO, mmc_auto, na)
224 #else
225 #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
226 #endif
227 #else
228 #define BOOT_TARGET_DEVICES_MMC(func)
229 #endif
230
231 #ifdef CONFIG_AHCI
232 #define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0)
233 #else
234 #define BOOT_TARGET_DEVICES_SCSI(func)
235 #endif
236
237 #ifdef CONFIG_USB_STORAGE
238 #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
239 #else
240 #define BOOT_TARGET_DEVICES_USB(func)
241 #endif
242
243 #ifdef CONFIG_CMD_PXE
244 #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
245 #else
246 #define BOOT_TARGET_DEVICES_PXE(func)
247 #endif
248
249 #ifdef CONFIG_CMD_DHCP
250 #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
251 #else
252 #define BOOT_TARGET_DEVICES_DHCP(func)
253 #endif
254
255 /* FEL boot support, auto-execute boot.scr if a script address was provided */
256 #define BOOTENV_DEV_FEL(devtypeu, devtypel, instance) \
257         "bootcmd_fel=" \
258                 "if test -n ${fel_booted} && test -n ${fel_scriptaddr}; then " \
259                         "echo '(FEL boot)'; " \
260                         "source ${fel_scriptaddr}; " \
261                 "fi\0"
262 #define BOOTENV_DEV_NAME_FEL(devtypeu, devtypel, instance) \
263         "fel "
264
265 #define BOOT_TARGET_DEVICES(func) \
266         func(FEL, fel, na) \
267         BOOT_TARGET_DEVICES_MMC(func) \
268         BOOT_TARGET_DEVICES_SCSI(func) \
269         BOOT_TARGET_DEVICES_USB(func) \
270         BOOT_TARGET_DEVICES_PXE(func) \
271         BOOT_TARGET_DEVICES_DHCP(func)
272
273 #ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
274 #define BOOTCMD_SUNXI_COMPAT \
275         "bootcmd_sunxi_compat=" \
276                 "setenv root /dev/mmcblk0p3 rootwait; " \
277                 "if ext2load mmc 0 0x44000000 uEnv.txt; then " \
278                         "echo Loaded environment from uEnv.txt; " \
279                         "env import -t 0x44000000 ${filesize}; " \
280                 "fi; " \
281                 "setenv bootargs console=${console} root=${root} ${extraargs}; " \
282                 "ext2load mmc 0 0x43000000 script.bin && " \
283                 "ext2load mmc 0 0x48000000 uImage && " \
284                 "bootm 0x48000000\0"
285 #else
286 #define BOOTCMD_SUNXI_COMPAT
287 #endif
288
289 #include <config_distro_bootcmd.h>
290
291 #ifdef CONFIG_USB_KEYBOARD
292 #define CONSOLE_STDIN_SETTINGS \
293         "stdin=serial,usbkbd\0"
294 #else
295 #define CONSOLE_STDIN_SETTINGS \
296         "stdin=serial\0"
297 #endif
298
299 #ifdef CONFIG_VIDEO
300 #define CONSOLE_STDOUT_SETTINGS \
301         "stdout=serial,vidconsole\0" \
302         "stderr=serial,vidconsole\0"
303 #else
304 #define CONSOLE_STDOUT_SETTINGS \
305         "stdout=serial\0" \
306         "stderr=serial\0"
307 #endif
308
309 #define PARTS_DEFAULT \
310         "name=loader1,start=8k,size=32k,uuid=${uuid_gpt_loader1};" \
311         "name=loader2,size=984k,uuid=${uuid_gpt_loader2};" \
312         "name=esp,size=128M,bootable,uuid=${uuid_gpt_esp};" \
313         "name=system,size=-,uuid=${uuid_gpt_system};"
314
315 #define UUID_GPT_ESP "c12a7328-f81f-11d2-ba4b-00a0c93ec93b"
316
317 #ifdef CONFIG_ARM64
318 #define UUID_GPT_SYSTEM "b921b045-1df0-41c3-af44-4c6f280d3fae"
319 #else
320 #define UUID_GPT_SYSTEM "69dad710-2ce4-4e3c-b16c-21a1d49abed3"
321 #endif
322
323 #define CONSOLE_ENV_SETTINGS \
324         CONSOLE_STDIN_SETTINGS \
325         CONSOLE_STDOUT_SETTINGS
326
327 #ifdef CONFIG_ARM64
328 #define FDTFILE "allwinner/" CONFIG_DEFAULT_DEVICE_TREE ".dtb"
329 #else
330 #define FDTFILE CONFIG_DEFAULT_DEVICE_TREE ".dtb"
331 #endif
332
333 #define CONFIG_EXTRA_ENV_SETTINGS \
334         CONSOLE_ENV_SETTINGS \
335         MEM_LAYOUT_ENV_SETTINGS \
336         MEM_LAYOUT_ENV_EXTRA_SETTINGS \
337         DFU_ALT_INFO_RAM \
338         "fdtfile=" FDTFILE "\0" \
339         "console=ttyS0,115200\0" \
340         "uuid_gpt_esp=" UUID_GPT_ESP "\0" \
341         "uuid_gpt_system=" UUID_GPT_SYSTEM "\0" \
342         "partitions=" PARTS_DEFAULT "\0" \
343         BOOTCMD_SUNXI_COMPAT \
344         BOOTENV
345
346 #endif /* _SUNXI_COMMON_CONFIG_H */