]> git.sur5r.net Git - u-boot/blob - include/configs/meson-gxbb-common.h
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / include / configs / meson-gxbb-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration for Amlogic Meson GXBB SoCs
4  * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
5  */
6
7 #ifndef __MESON_GXBB_COMMON_CONFIG_H
8 #define __MESON_GXBB_COMMON_CONFIG_H
9
10 #define CONFIG_CPU_ARMV8
11 #define CONFIG_REMAKE_ELF
12 #define CONFIG_NR_DRAM_BANKS            1
13 #define CONFIG_ENV_SIZE                 0x2000
14 #define CONFIG_SYS_MAXARGS              32
15 #define CONFIG_SYS_MALLOC_LEN           (32 << 20)
16 #define CONFIG_SYS_CBSIZE               1024
17
18 #define CONFIG_SYS_SDRAM_BASE           0
19 #define CONFIG_SYS_INIT_SP_ADDR         0x20000000
20 #define CONFIG_SYS_LOAD_ADDR            CONFIG_SYS_TEXT_BASE
21
22 /* Generic Interrupt Controller Definitions */
23 #define GICD_BASE                       0xc4301000
24 #define GICC_BASE                       0xc4302000
25
26 #define BOOT_TARGET_DEVICES(func) \
27         func(MMC, mmc, 0) \
28         func(MMC, mmc, 1) \
29         func(MMC, mmc, 2) \
30         func(PXE, pxe, na) \
31         func(DHCP, dhcp, na)
32
33 #include <config_distro_bootcmd.h>
34
35 #define CONFIG_EXTRA_ENV_SETTINGS \
36         "fdt_addr_r=0x01000000\0" \
37         "scriptaddr=0x1f000000\0" \
38         "kernel_addr_r=0x01080000\0" \
39         "pxefile_addr_r=0x01080000\0" \
40         "ramdisk_addr_r=0x13000000\0" \
41         MESON_FDTFILE_SETTING \
42         BOOTENV
43
44 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64 MiB */
45
46 #endif /* __MESON_GXBB_COMMON_CONFIG_H */