MIPS: convert CONFIG_SYS_MIPS_TIMER_FREQ to Kconfig
[platform/kernel/u-boot.git] / include / configs / rcar-gen3-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * include/configs/rcar-gen3-common.h
4  *      This file is R-Car Gen3 common configuration file.
5  *
6  * Copyright (C) 2015-2017 Renesas Electronics Corporation
7  */
8
9 #ifndef __RCAR_GEN3_COMMON_H
10 #define __RCAR_GEN3_COMMON_H
11
12 #include <asm/arch/rmobile.h>
13
14 /* boot option */
15
16 /* Generic Interrupt Controller Definitions */
17 #define GICD_BASE       0xF1010000
18 #define GICC_BASE       0xF1020000
19
20 /* console */
21 #define CONFIG_SYS_BAUDRATE_TABLE       { 115200, 38400 }
22
23 /* PHY needs a longer autoneg timeout */
24 #define PHY_ANEG_TIMEOUT                20000
25
26 /* MEMORY */
27
28 #define DRAM_RSV_SIZE                   0x08000000
29 #define CONFIG_SYS_SDRAM_BASE           (0x40000000 + DRAM_RSV_SIZE)
30 #define CONFIG_SYS_SDRAM_SIZE           (0x80000000u - DRAM_RSV_SIZE)
31 #define CONFIG_VERY_BIG_RAM
32 #define CONFIG_MAX_MEM_MAPPED           (0x80000000u - DRAM_RSV_SIZE)
33
34 #define CONFIG_SYS_MONITOR_LEN          (1 * 1024 * 1024)
35
36 /* ENV setting */
37
38 #define CONFIG_EXTRA_ENV_SETTINGS       \
39         "bootm_size=0x10000000\0"
40
41 #endif  /* __RCAR_GEN3_COMMON_H */