1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * include/configs/rcar-gen2-common.h 4 * 5 * Copyright (C) 2013,2014 Renesas Electronics Corporation 6 */ 7 8 #ifndef __RCAR_GEN2_COMMON_H 9 #define __RCAR_GEN2_COMMON_H 10 11 #include <asm/arch/rmobile.h> 12 13 #ifdef CONFIG_SPL 14 #define CONFIG_SPL_TARGET "spl/u-boot-spl.srec" 15 #endif 16 17 #ifndef CONFIG_PINCTRL_PFC 18 #define CONFIG_SH_GPIO_PFC 19 #endif 20 21 /* console */ 22 #define CONFIG_SYS_PBSIZE 256 23 #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } 24 25 #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) 26 #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) 27 28 #define CONFIG_SYS_MONITOR_BASE 0x00000000 29 #define CONFIG_SYS_MONITOR_LEN (256 * 1024) 30 31 /* ENV setting */ 32 33 /* Common ENV setting */ 34 35 /* SF MTD */ 36 #ifdef CONFIG_SPL_BUILD 37 #undef CONFIG_DM_SPI 38 #undef CONFIG_DM_SPI_FLASH 39 #endif 40 41 /* Timer */ 42 #define CONFIG_TMU_TIMER 43 #define CONFIG_SYS_TIMER_COUNTS_DOWN 44 #define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ 45 #define CONFIG_SYS_TIMER_RATE (CONFIG_SYS_CLK_FREQ / 8) 46 47 #endif /* __RCAR_GEN2_COMMON_H */ 48