]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/rcar-gen2-common.h
68e3a23500fd83e6c4874ebd337c05c109ed0fcd
[people/ms/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 /* Support File sytems */
15 #define CONFIG_SUPPORT_VFAT
16 #define CONFIG_FS_EXT4
17 #define CONFIG_EXT4_WRITE
18
19 #define CONFIG_CMDLINE_TAG
20 #define CONFIG_SETUP_MEMORY_TAGS
21 #define CONFIG_INITRD_TAG
22 #define CONFIG_CMDLINE_EDITING
23
24 #undef CONFIG_SHOW_BOOT_PROGRESS
25
26 #define CONFIG_ARCH_CPU_INIT
27
28 #define CONFIG_TMU_TIMER
29 #define CONFIG_SH_GPIO_PFC
30
31 /* console */
32
33 #define CONFIG_SYS_LONGHELP
34 #define CONFIG_SYS_PBSIZE 256
35 #define CONFIG_SYS_MAXARGS 16
36 #define CONFIG_SYS_BARGSIZE 512
37 #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 }
38
39 #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE)
40 #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE)
41 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fc0)
42 #define CONFIG_NR_DRAM_BANKS 1
43
44 #define CONFIG_SYS_MONITOR_BASE 0x00000000
45 #define CONFIG_SYS_MONITOR_LEN (256 * 1024)
46 #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024)
47 #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
48
49 /* ENV setting */
50 #define CONFIG_ENV_ADDR 0xC0000
51
52 /* Common ENV setting */
53 #define CONFIG_ENV_OVERWRITE
54 #define CONFIG_ENV_SECT_SIZE (256 * 1024)
55 #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR)
56 #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
57 #define CONFIG_ENV_SIZE_REDUND (CONFIG_SYS_MONITOR_LEN)
58
59 #endif /* __RCAR_GEN2_COMMON_H */