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 #include "rockchip-common.h" 11 12 #define CONFIG_SYS_CACHELINE_SIZE 64 13 14 #include <asm/arch/hardware.h> 15 #include <linux/sizes.h> 16 17 #define CONFIG_SYS_SDRAM_BASE 0 18 #define SDRAM_MAX_SIZE 0xff000000 19 #define CONFIG_NR_DRAM_BANKS 1 20 #define CONFIG_BAUDRATE 115200 21 #define CONFIG_SYS_MALLOC_LEN (32 << 20) 22 #define CONFIG_SYS_CBSIZE 1024 23 #define CONFIG_SKIP_LOWLEVEL_INIT 24 25 #define CONFIG_SYS_TEXT_BASE 0x00200000 26 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000 27 #define CONFIG_SYS_LOAD_ADDR 0x00280000 28 29 #define CONFIG_SPL_FRAMEWORK 30 #define CONFIG_SPL_TEXT_BASE 0x00000000 31 #define CONFIG_SPL_MAX_SIZE 0x40000 32 #define CONFIG_SPL_BSS_START_ADDR 0x400000 33 #define CONFIG_SPL_BSS_MAX_SIZE 0x20000 34 35 #define GICD_BASE 0xffB71000 36 #define GICC_BASE 0xffB72000 37 38 #define CONFIG_ROCKUSB_G_DNL_PID 0x330A 39 40 #define CONFIG_BOUNCE_BUFFER 41 42 #ifndef CONFIG_SPL_BUILD 43 44 /* usb mass storage */ 45 #define CONFIG_USB_FUNCTION_MASS_STORAGE 46 47 #define ENV_MEM_LAYOUT_SETTINGS \ 48 "scriptaddr=0x00500000\0" \ 49 "pxefile_addr_r=0x00600000\0" \ 50 "fdt_addr_r=0x5600000\0" \ 51 "kernel_addr_r=0x280000\0" \ 52 "ramdisk_addr_r=0x5bf0000\0" 53 54 #include <config_distro_bootcmd.h> 55 56 #define CONFIG_EXTRA_ENV_SETTINGS \ 57 ENV_MEM_LAYOUT_SETTINGS \ 58 BOOTENV 59 60 #endif 61 62 #endif 63