Convert CONFIG_SYS_LOAD_ADDR to Kconfig
[platform/kernel/u-boot.git] / include / configs / rcar-gen2-common.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * include/configs/rcar-gen2-common.h
4  *
5  * Copyright (C) 2013,2014 Renesas Electronics Corporation
6  */
7
8 #ifndef __RCAR_GEN2_COMMON_H
9 #define __RCAR_GEN2_COMMON_H
10
11 #include <asm/arch/rmobile.h>
12
13 #define CONFIG_CMDLINE_TAG
14 #define CONFIG_SETUP_MEMORY_TAGS
15 #define CONFIG_INITRD_TAG
16
17 #ifdef CONFIG_SPL
18 #define CONFIG_SPL_TARGET       "spl/u-boot-spl.srec"
19 #endif
20
21 #ifndef CONFIG_PINCTRL_PFC
22 #define CONFIG_SH_GPIO_PFC
23 #endif
24
25 /* console */
26 #define CONFIG_SYS_PBSIZE               256
27 #define CONFIG_SYS_BAUDRATE_TABLE       { 38400, 115200 }
28
29 #define CONFIG_SYS_SDRAM_BASE           (RCAR_GEN2_SDRAM_BASE)
30 #define CONFIG_SYS_SDRAM_SIZE           (RCAR_GEN2_UBOOT_SDRAM_SIZE)
31
32 #define CONFIG_SYS_MONITOR_BASE         0x00000000
33 #define CONFIG_SYS_MONITOR_LEN          (256 * 1024)
34 #define CONFIG_SYS_MALLOC_LEN           (1 * 1024 * 1024)
35
36 /* ENV setting */
37
38 /* Common ENV setting */
39
40 /* SF MTD */
41 #ifdef CONFIG_SPL_BUILD
42 #undef CONFIG_DM_SPI
43 #undef CONFIG_DM_SPI_FLASH
44 #endif
45
46 /* Timer */
47 #define CONFIG_TMU_TIMER
48 #define CONFIG_SYS_TIMER_COUNTS_DOWN
49 #define CONFIG_SYS_TIMER_COUNTER        (TMU_BASE + 0xc)        /* TCNT0 */
50 #define CONFIG_SYS_TIMER_RATE           (CONFIG_SYS_CLK_FREQ / 8)
51
52 #endif  /* __RCAR_GEN2_COMMON_H */