8b4c5c0f105ecf7f89493e2ffd0e1aa2d6c02360
[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 #ifdef CONFIG_SPL
15 #define CONFIG_SPL_TARGET       "spl/u-boot-spl.scif"
16 #endif
17
18 /* boot option */
19
20 /* Generic Interrupt Controller Definitions */
21 #define GICD_BASE       0xF1010000
22 #define GICC_BASE       0xF1020000
23
24 /* console */
25 #define CONFIG_SYS_BAUDRATE_TABLE       { 115200, 38400 }
26
27 /* PHY needs a longer autoneg timeout */
28 #define PHY_ANEG_TIMEOUT                20000
29
30 /* MEMORY */
31
32 #define DRAM_RSV_SIZE                   0x08000000
33 #define CONFIG_SYS_SDRAM_BASE           (0x40000000 + DRAM_RSV_SIZE)
34 #define CONFIG_SYS_SDRAM_SIZE           (0x80000000u - DRAM_RSV_SIZE)
35 #define CONFIG_VERY_BIG_RAM
36 #define CONFIG_MAX_MEM_MAPPED           (0x80000000u - DRAM_RSV_SIZE)
37
38 #define CONFIG_SYS_MONITOR_LEN          (1 * 1024 * 1024)
39 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)
40
41 /* ENV setting */
42
43 #define CONFIG_EXTRA_ENV_SETTINGS       \
44         "bootm_size=0x10000000\0"
45
46 /* SPL support */
47 #if defined(CONFIG_R8A7795) || defined(CONFIG_R8A7796) || defined(CONFIG_R8A77965)
48 #define CONFIG_SPL_BSS_START_ADDR       0xe633f000
49 #else
50 #define CONFIG_SPL_BSS_START_ADDR       0xe631f000
51 #endif
52 #define CONFIG_SPL_STACK                0xe6304000
53
54 #endif  /* __RCAR_GEN3_COMMON_H */