2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-03-31 18:51:36 +00:00
|
|
|
/*
|
|
|
|
* include/configs/rcar-gen3-common.h
|
|
|
|
* This file is R-Car Gen3 common configuration file.
|
|
|
|
*
|
2017-05-13 13:57:39 +00:00
|
|
|
* Copyright (C) 2015-2017 Renesas Electronics Corporation
|
2016-03-31 18:51:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RCAR_GEN3_COMMON_H
|
|
|
|
#define __RCAR_GEN3_COMMON_H
|
|
|
|
|
|
|
|
#include <asm/arch/rmobile.h>
|
|
|
|
|
|
|
|
/* boot option */
|
|
|
|
|
2017-11-28 07:25:21 +00:00
|
|
|
/* Generic Interrupt Controller Definitions */
|
|
|
|
#define GICD_BASE 0xF1010000
|
|
|
|
#define GICC_BASE 0xF1020000
|
|
|
|
|
2016-03-31 18:51:36 +00:00
|
|
|
/* console */
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 115200, 38400 }
|
|
|
|
|
2020-06-14 12:41:07 +00:00
|
|
|
/* PHY needs a longer autoneg timeout */
|
|
|
|
#define PHY_ANEG_TIMEOUT 20000
|
|
|
|
|
2016-03-31 18:51:36 +00:00
|
|
|
/* MEMORY */
|
|
|
|
|
2017-05-13 13:57:39 +00:00
|
|
|
#define DRAM_RSV_SIZE 0x08000000
|
2017-11-27 05:01:20 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE)
|
|
|
|
#define CONFIG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE)
|
2017-05-13 13:57:39 +00:00
|
|
|
#define CONFIG_VERY_BIG_RAM
|
2017-11-27 05:01:20 +00:00
|
|
|
#define CONFIG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE)
|
2016-03-31 18:51:36 +00:00
|
|
|
|
2020-01-24 00:31:37 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_LEN (1 * 1024 * 1024)
|
2018-04-10 14:06:40 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN (64 << 20)
|
2016-03-31 18:51:36 +00:00
|
|
|
|
|
|
|
/* ENV setting */
|
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2018-11-26 23:19:03 +00:00
|
|
|
"bootm_size=0x10000000\0"
|
2016-03-31 18:51:36 +00:00
|
|
|
|
|
|
|
#endif /* __RCAR_GEN3_COMMON_H */
|