]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/rcar-gen3-common.h
Convert CONFIG_SPL_PAD_TO et al to Kconfig
[thirdparty/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 #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
32
33 #define DRAM_RSV_SIZE 0x08000000
34 #define CONFIG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE)
35 #define CONFIG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE)
36 #define CONFIG_VERY_BIG_RAM
37 #define CONFIG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE)
38
39 #define CONFIG_SYS_MONITOR_LEN (1 * 1024 * 1024)
40 #define CONFIG_SYS_BOOTM_LEN (64 << 20)
41
42 /* ENV setting */
43
44 #define CONFIG_EXTRA_ENV_SETTINGS \
45 "bootm_size=0x10000000\0"
46
47 /* SPL support */
48 #if defined(CONFIG_R8A7795) || defined(CONFIG_R8A7796) || defined(CONFIG_R8A77965)
49 #define CONFIG_SPL_BSS_START_ADDR 0xe633f000
50 #define CONFIG_SPL_BSS_MAX_SIZE 0x1000
51 #else
52 #define CONFIG_SPL_BSS_START_ADDR 0xe631f000
53 #define CONFIG_SPL_BSS_MAX_SIZE 0x1000
54 #endif
55 #define CONFIG_SPL_STACK 0xe6304000
56
57 #endif /* __RCAR_GEN3_COMMON_H */