blob: 7432cffb5a56cb0f89c6e3aa42eb119c08225fc2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +09002/*
3 * include/configs/rcar-gen3-common.h
4 * This file is R-Car Gen3 common configuration file.
5 *
Marek Vasut2dea3b32017-05-13 15:57:39 +02006 * Copyright (C) 2015-2017 Renesas Electronics Corporation
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +09007 */
8
9#ifndef __RCAR_GEN3_COMMON_H
10#define __RCAR_GEN3_COMMON_H
11
12#include <asm/arch/rmobile.h>
13
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090014/* boot option */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090015
Marek Vasut7bcdd0c2017-11-28 08:25:21 +010016/* Generic Interrupt Controller Definitions */
Marek Vasut7bcdd0c2017-11-28 08:25:21 +010017#define GICD_BASE 0xF1010000
18#define GICC_BASE 0xF1020000
19
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090020/* console */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090021#define CONFIG_SYS_BAUDRATE_TABLE { 115200, 38400 }
22
Marek Vasut10fa7ec2020-06-14 14:41:07 +020023/* PHY needs a longer autoneg timeout */
24#define PHY_ANEG_TIMEOUT 20000
25
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090026/* MEMORY */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090027
Marek Vasut2dea3b32017-05-13 15:57:39 +020028#define DRAM_RSV_SIZE 0x08000000
Marek Vasut8c1b52f2017-11-27 06:01:20 +010029#define CONFIG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE)
30#define CONFIG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE)
Marek Vasut2dea3b32017-05-13 15:57:39 +020031#define CONFIG_VERY_BIG_RAM
Marek Vasut8c1b52f2017-11-27 06:01:20 +010032#define CONFIG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE)
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090033
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090034/* ENV setting */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090035
36#define CONFIG_EXTRA_ENV_SETTINGS \
Marek Vasut07a80602018-11-27 00:19:03 +010037 "bootm_size=0x10000000\0"
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090038
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090039#endif /* __RCAR_GEN3_COMMON_H */