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_IS_NOWHERE 1 15 #define CONFIG_ENV_SIZE 0x2000 16 #define CONFIG_SYS_MAXARGS 32 17 #define CONFIG_SYS_MALLOC_LEN (32 << 20) 18 #define CONFIG_SYS_CBSIZE 1024 19 20 #define CONFIG_SYS_SDRAM_BASE 0 21 #define CONFIG_SYS_TEXT_BASE 0x01000000 22 #define CONFIG_SYS_INIT_SP_ADDR 0x20000000 23 #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE 24 25 /* Generic Interrupt Controller Definitions */ 26 #define GICD_BASE 0xc4301000 27 #define GICC_BASE 0xc4302000 28 29 #define CONFIG_CMD_ENV 30 31 /* Monitor Command Prompt */ 32 /* Console I/O Buffer Size */ 33 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ 34 sizeof(CONFIG_SYS_PROMPT) + 16) 35 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 36 #define CONFIG_SYS_LONGHELP 37 #define CONFIG_CMDLINE_EDITING 38 39 #include <config_distro_defaults.h> 40 41 #define BOOT_TARGET_DEVICES(func) \ 42 func(DHCP, dhcp, na) 43 44 #include <config_distro_bootcmd.h> 45 46 #define CONFIG_EXTRA_ENV_SETTINGS \ 47 "fdt_addr_r=0x01000000\0" \ 48 "scriptaddr=0x1f000000\0" \ 49 "kernel_addr_r=0x01080000\0" \ 50 "pxefile_addr_r=0x01080000\0" \ 51 "ramdisk_addr_r=0x10000000\0" \ 52 MESON_FDTFILE_SETTING \ 53 BOOTENV 54 55 #endif /* __MESON_GXBB_COMMON_CONFIG_H */ 56