Merge tag 'u-boot-imx-20200825' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / meson64.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration for Amlogic Meson 64bits SoCs
4  * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
5  */
6
7 #ifndef __MESON64_CONFIG_H
8 #define __MESON64_CONFIG_H
9
10 /* Generic Interrupt Controller Definitions */
11 #if (defined(CONFIG_MESON_AXG) || defined(CONFIG_MESON_G12A))
12 #define GICD_BASE                       0xffc01000
13 #define GICC_BASE                       0xffc02000
14 #else /* MESON GXL and GXBB */
15 #define GICD_BASE                       0xc4301000
16 #define GICC_BASE                       0xc4302000
17 #endif
18
19 /* For splashscreen */
20 #ifdef CONFIG_DM_VIDEO
21 #define CONFIG_VIDEO_BMP_RLE8
22 #define CONFIG_BMP_16BPP
23 #define CONFIG_BMP_24BPP
24 #define CONFIG_BMP_32BPP
25 #define STDOUT_CFG "vidconsole,serial"
26 #else
27 #define STDOUT_CFG "serial"
28 #endif
29
30 #ifdef CONFIG_USB_KEYBOARD
31 #define STDIN_CFG "usbkbd,serial"
32 #else
33 #define STDIN_CFG "serial"
34 #endif
35
36 #define CONFIG_CPU_ARMV8
37 #define CONFIG_REMAKE_ELF
38 #define CONFIG_SYS_MAXARGS              32
39 #define CONFIG_SYS_MALLOC_LEN           (32 << 20)
40 #define CONFIG_SYS_CBSIZE               1024
41
42 #define CONFIG_SYS_SDRAM_BASE           0
43 #define CONFIG_SYS_INIT_SP_ADDR         0x20000000
44 #define CONFIG_SYS_LOAD_ADDR            CONFIG_SYS_TEXT_BASE
45 #define CONFIG_SYS_BOOTM_LEN            (64 << 20) /* 64 MiB */
46
47 /* ROM USB boot support, auto-execute boot.scr at scriptaddr */
48 #define BOOTENV_DEV_ROMUSB(devtypeu, devtypel, instance) \
49         "bootcmd_romusb=" \
50                 "if test \"${boot_source}\" = \"usb\" && " \
51                                 "test -n \"${scriptaddr}\"; then " \
52                         "echo '(ROM USB boot)'; " \
53                         "source ${scriptaddr}; " \
54                 "fi\0"
55
56 #define BOOTENV_DEV_NAME_ROMUSB(devtypeu, devtypel, instance)   \
57                 "romusb "
58
59 #ifdef CONFIG_CMD_USB
60 #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
61 #else
62 #define BOOT_TARGET_DEVICES_USB(func)
63 #endif
64
65 #ifndef BOOT_TARGET_DEVICES
66 #define BOOT_TARGET_DEVICES(func) \
67         func(ROMUSB, romusb, na)  \
68         func(MMC, mmc, 0) \
69         func(MMC, mmc, 1) \
70         func(MMC, mmc, 2) \
71         BOOT_TARGET_DEVICES_USB(func) \
72         func(PXE, pxe, na) \
73         func(DHCP, dhcp, na)
74 #endif
75
76 #ifndef CONFIG_EXTRA_ENV_SETTINGS
77 #define CONFIG_EXTRA_ENV_SETTINGS \
78         "stdin=" STDIN_CFG "\0" \
79         "stdout=" STDOUT_CFG "\0" \
80         "stderr=" STDOUT_CFG "\0" \
81         "fdt_addr_r=0x08008000\0" \
82         "scriptaddr=0x08000000\0" \
83         "kernel_addr_r=0x08080000\0" \
84         "pxefile_addr_r=0x01080000\0" \
85         "ramdisk_addr_r=0x13000000\0" \
86         "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
87         BOOTENV
88 #endif
89
90 #include <config_distro_bootcmd.h>
91
92 #endif /* __MESON64_CONFIG_H */