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 COUNTER_FREQUENCY 24000000 26 27 #define CONFIG_SPL_FRAMEWORK 28 #define CONFIG_SYS_NS16550_MEM32 29 30 #define CONFIG_SYS_TEXT_BASE 0x00200000 31 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000 32 #define CONFIG_SYS_LOAD_ADDR 0x00280000 33 34 #define CONFIG_SPL_TEXT_BASE 0x00000000 35 #define CONFIG_SPL_MAX_SIZE 0x40000 36 #define CONFIG_SPL_BSS_START_ADDR 0x400000 37 #define CONFIG_SPL_BSS_MAX_SIZE 0x20000 38 39 #define GICD_BASE 0xffB71000 40 #define GICC_BASE 0xffB72000 41 42 #define CONFIG_ROCKUSB_G_DNL_PID 0x330A 43 44 #define CONFIG_BOUNCE_BUFFER 45 46 #ifndef CONFIG_SPL_BUILD 47 48 /* usb mass storage */ 49 #define CONFIG_USB_FUNCTION_MASS_STORAGE 50 51 #define ENV_MEM_LAYOUT_SETTINGS \ 52 "scriptaddr=0x00500000\0" \ 53 "pxefile_addr_r=0x00600000\0" \ 54 "fdt_addr_r=0x5600000\0" \ 55 "kernel_addr_r=0x280000\0" \ 56 "ramdisk_addr_r=0x5bf0000\0" 57 58 #include <config_distro_bootcmd.h> 59 60 #define CONFIG_EXTRA_ENV_SETTINGS \ 61 ENV_MEM_LAYOUT_SETTINGS \ 62 BOOTENV 63 64 #endif 65 66 #endif 67