Merge git://git.denx.de/u-boot-mpc85xx
[platform/kernel/u-boot.git] / include / configs / rcar-gen2-common.h
1 /*
2  * include/configs/rcar-gen2-common.h
3  *
4  * Copyright (C) 2013,2014 Renesas Electronics Corporation
5  *
6  * SPDX-License-Identifier: GPL-2.0
7  */
8
9 #ifndef __RCAR_GEN2_COMMON_H
10 #define __RCAR_GEN2_COMMON_H
11
12 #include <asm/arch/rmobile.h>
13
14 #define CONFIG_CMD_DFL
15 #define CONFIG_CMD_SDRAM
16
17 #define CONFIG_SYS_THUMB_BUILD
18
19 /* Support File sytems */
20 #define CONFIG_FAT_WRITE
21 #define CONFIG_SUPPORT_VFAT
22 #define CONFIG_FS_EXT4
23 #define CONFIG_EXT4_WRITE
24
25 #define CONFIG_CMDLINE_TAG
26 #define CONFIG_SETUP_MEMORY_TAGS
27 #define CONFIG_INITRD_TAG
28 #define CONFIG_CMDLINE_EDITING
29
30 #define CONFIG_BAUDRATE         38400
31 #define CONFIG_BOOTARGS         ""
32
33 #undef  CONFIG_SHOW_BOOT_PROGRESS
34
35 #define CONFIG_ARCH_CPU_INIT
36
37 #define CONFIG_TMU_TIMER
38 #define CONFIG_SH_GPIO_PFC
39
40 /* console */
41
42 #define CONFIG_SYS_LONGHELP
43 #define CONFIG_SYS_CBSIZE               256
44 #define CONFIG_SYS_PBSIZE               256
45 #define CONFIG_SYS_MAXARGS              16
46 #define CONFIG_SYS_BARGSIZE             512
47 #define CONFIG_SYS_BAUDRATE_TABLE       { 38400, 115200 }
48
49 #define CONFIG_SYS_SDRAM_BASE           (RCAR_GEN2_SDRAM_BASE)
50 #define CONFIG_SYS_SDRAM_SIZE           (RCAR_GEN2_UBOOT_SDRAM_SIZE)
51 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + 0x7fc0)
52 #define CONFIG_NR_DRAM_BANKS            1
53
54 #define CONFIG_SYS_MONITOR_BASE         0x00000000
55 #define CONFIG_SYS_MONITOR_LEN          (256 * 1024)
56 #define CONFIG_SYS_MALLOC_LEN           (1 * 1024 * 1024)
57 #define CONFIG_SYS_BOOTMAPSZ            (8 * 1024 * 1024)
58
59 /* ENV setting */
60 #define CONFIG_ENV_IS_IN_SPI_FLASH
61 #define CONFIG_ENV_ADDR 0xC0000
62
63 /* Common ENV setting */
64 #define CONFIG_ENV_OVERWRITE
65 #define CONFIG_ENV_SECT_SIZE    (256 * 1024)
66 #define CONFIG_ENV_OFFSET       (CONFIG_ENV_ADDR)
67 #define CONFIG_ENV_SIZE         (CONFIG_ENV_SECT_SIZE)
68 #define CONFIG_ENV_SIZE_REDUND  (CONFIG_SYS_MONITOR_LEN)
69
70 #endif  /* __RCAR_GEN2_COMMON_H */