]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
17193839 NI |
2 | /* |
3 | * include/configs/rcar-gen2-common.h | |
4 | * | |
5 | * Copyright (C) 2013,2014 Renesas Electronics Corporation | |
17193839 NI |
6 | */ |
7 | ||
8 | #ifndef __RCAR_GEN2_COMMON_H | |
9 | #define __RCAR_GEN2_COMMON_H | |
10 | ||
11 | #include <asm/arch/rmobile.h> | |
12 | ||
789edf69 | 13 | #ifndef CONFIG_PINCTRL_PFC |
17193839 | 14 | #define CONFIG_SH_GPIO_PFC |
789edf69 | 15 | #endif |
17193839 NI |
16 | |
17 | /* console */ | |
17193839 NI |
18 | #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } |
19 | ||
aa6e94de TR |
20 | #define CFG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) |
21 | #define CFG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) | |
17193839 | 22 | |
0e286c52 MV |
23 | /* Timer */ |
24 | #define CONFIG_TMU_TIMER | |
0e286c52 | 25 | #define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ |
2f8a6db5 | 26 | #define CONFIG_SYS_TIMER_RATE (get_board_sys_clk() / 8) |
0e286c52 | 27 | |
17193839 | 28 | #endif /* __RCAR_GEN2_COMMON_H */ |