Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 2 | /* |
| 3 | * include/configs/rcar-gen2-common.h |
| 4 | * |
| 5 | * Copyright (C) 2013,2014 Renesas Electronics Corporation |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __RCAR_GEN2_COMMON_H |
| 9 | #define __RCAR_GEN2_COMMON_H |
| 10 | |
| 11 | #include <asm/arch/rmobile.h> |
| 12 | |
Marek Vasut | 44c5580 | 2018-02-26 20:19:08 +0100 | [diff] [blame] | 13 | #ifdef CONFIG_SPL |
| 14 | #define CONFIG_SPL_TARGET "spl/u-boot-spl.srec" |
| 15 | #endif |
| 16 | |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 17 | #ifndef CONFIG_PINCTRL_PFC |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 18 | #define CONFIG_SH_GPIO_PFC |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 19 | #endif |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 20 | |
| 21 | /* console */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 22 | #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } |
| 23 | |
| 24 | #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) |
| 25 | #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 26 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 27 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 28 | |
Marek Vasut | 0e286c5 | 2018-08-24 21:52:53 +0200 | [diff] [blame] | 29 | /* Timer */ |
| 30 | #define CONFIG_TMU_TIMER |
| 31 | #define CONFIG_SYS_TIMER_COUNTS_DOWN |
| 32 | #define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ |
Tom Rini | 2f8a6db | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 33 | #define CONFIG_SYS_TIMER_RATE (get_board_sys_clk() / 8) |
Marek Vasut | 0e286c5 | 2018-08-24 21:52:53 +0200 | [diff] [blame] | 34 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 35 | #endif /* __RCAR_GEN2_COMMON_H */ |