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