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