blob: 606a0a7ecde1d126458d4a3016e405bbe619eed4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +09002/*
3 * include/configs/rcar-gen2-common.h
4 *
5 * Copyright (C) 2013,2014 Renesas Electronics Corporation
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +09006 */
7
8#ifndef __RCAR_GEN2_COMMON_H
9#define __RCAR_GEN2_COMMON_H
10
11#include <asm/arch/rmobile.h>
12
Marek Vasut789edf62018-01-07 19:32:56 +010013#ifndef CONFIG_PINCTRL_PFC
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +090014#define CONFIG_SH_GPIO_PFC
Marek Vasut789edf62018-01-07 19:32:56 +010015#endif
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +090016
17/* console */
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +090018#define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 }
19
Tom Riniaa6e94d2022-11-16 13:10:37 -050020#define CFG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE)
21#define CFG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE)
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +090022
Marek Vasut0e286c52018-08-24 21:52:53 +020023/* Timer */
24#define CONFIG_TMU_TIMER
Marek Vasut0e286c52018-08-24 21:52:53 +020025#define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */
Tom Rini2f8a6db2021-12-14 13:36:40 -050026#define CONFIG_SYS_TIMER_RATE (get_board_sys_clk() / 8)
Marek Vasut0e286c52018-08-24 21:52:53 +020027
Nobuhiro Iwamatsu17193832014-11-06 16:30:56 +090028#endif /* __RCAR_GEN2_COMMON_H */