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