1 /* 2 * include/configs/rcar-gen2-common.h 3 * 4 * Copyright (C) 2013,2014 Renesas Electronics Corporation 5 * 6 * SPDX-License-Identifier: GPL-2.0 7 */ 8 9 #ifndef __RCAR_GEN2_COMMON_H 10 #define __RCAR_GEN2_COMMON_H 11 12 #include <asm/arch/rmobile.h> 13 14 #define CONFIG_CMDLINE_TAG 15 #define CONFIG_SETUP_MEMORY_TAGS 16 #define CONFIG_INITRD_TAG 17 18 #ifdef CONFIG_SPL 19 #define CONFIG_SPL_TARGET "spl/u-boot-spl.srec" 20 #endif 21 22 #undef CONFIG_SHOW_BOOT_PROGRESS 23 24 #define CONFIG_ARCH_CPU_INIT 25 26 #define CONFIG_TMU_TIMER 27 #ifndef CONFIG_PINCTRL_PFC 28 #define CONFIG_SH_GPIO_PFC 29 #endif 30 31 /* console */ 32 #define CONFIG_SYS_PBSIZE 256 33 #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } 34 35 #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) 36 #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) 37 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fc0) 38 #define CONFIG_NR_DRAM_BANKS 1 39 40 #define CONFIG_SYS_MONITOR_BASE 0x00000000 41 #define CONFIG_SYS_MONITOR_LEN (256 * 1024) 42 #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) 43 #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) 44 45 /* ENV setting */ 46 #define CONFIG_ENV_ADDR 0xC0000 47 48 /* Common ENV setting */ 49 #define CONFIG_ENV_OVERWRITE 50 #define CONFIG_ENV_SECT_SIZE (256 * 1024) 51 #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR) 52 #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE) 53 #define CONFIG_ENV_SIZE_REDUND (CONFIG_SYS_MONITOR_LEN) 54 55 #endif /* __RCAR_GEN2_COMMON_H */ 56