1 /* 2 * Copyright (c) 2016 Andreas Färber 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __CONFIG_RK3368_COMMON_H 8 #define __CONFIG_RK3368_COMMON_H 9 10 #define CONFIG_SYS_CACHELINE_SIZE 64 11 12 #include <asm/arch/hardware.h> 13 #include <linux/sizes.h> 14 15 #define CONFIG_NR_DRAM_BANKS 1 16 #define CONFIG_SYS_MAXARGS 16 17 #define CONFIG_BAUDRATE 115200 18 #define CONFIG_SYS_MALLOC_LEN (32 << 20) 19 #define CONFIG_SYS_CBSIZE 1024 20 #define CONFIG_SKIP_LOWLEVEL_INIT 21 22 #define CONFIG_SYS_NS16550_MEM32 23 24 #define CONFIG_SYS_TEXT_BASE 0x00200000 25 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000 26 #define CONFIG_SYS_LOAD_ADDR 0x00280000 27 28 #define CONFIG_BOUNCE_BUFFER 29 30 #ifndef CONFIG_SPL_BUILD 31 #define ENV_MEM_LAYOUT_SETTINGS \ 32 "scriptaddr=0x00500000\0" \ 33 "pxefile_addr_r=0x00600000\0" \ 34 "fdt_addr_r=0x5600000\0" \ 35 "kernel_addr_r=0x280000\0" \ 36 "ramdisk_addr_r=0x5bf0000\0" 37 38 #include <config_distro_defaults.h> 39 40 #define BOOT_TARGET_DEVICES(func) 41 42 #include <config_distro_bootcmd.h> 43 44 #define CONFIG_EXTRA_ENV_SETTINGS \ 45 BOOTENV 46 47 #endif 48 49 #endif 50