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