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