blob: 36e07dc73dc35b628a67d8f028324b34f114b67e [file] [log] [blame]
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +09001/*
2 * include/configs/rcar-gen3-common.h
3 * This file is R-Car Gen3 common configuration file.
4 *
5 * Copyright (C) 2015 Renesas Electronics Corporation
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#ifndef __RCAR_GEN3_COMMON_H
11#define __RCAR_GEN3_COMMON_H
12
13#include <asm/arch/rmobile.h>
14
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090015#define CONFIG_CMD_DFL
16#define CONFIG_CMD_SDRAM
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090017#define CONFIG_CMD_FAT
18#define CONFIG_CMD_EXT2
19#define CONFIG_CMD_EXT4
20#define CONFIG_CMD_EXT4_WRITE
Nobuhiro Iwamatsub1db9542016-08-04 13:45:48 +090021#define CONFIG_CMD_FDT
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090022
23#define CONFIG_REMAKE_ELF
24
25/* boot option */
26#define CONFIG_SUPPORT_RAW_INITRD
27
28/* Support File sytems */
29#define CONFIG_FAT_WRITE
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090030#define CONFIG_SUPPORT_VFAT
31#define CONFIG_FS_EXT4
32#define CONFIG_EXT4_WRITE
33
34#define CONFIG_CMDLINE_TAG
35#define CONFIG_SETUP_MEMORY_TAGS
36#define CONFIG_INITRD_TAG
37#define CONFIG_CMDLINE_EDITING
38#define CONFIG_OF_LIBFDT
39
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090040#undef CONFIG_SHOW_BOOT_PROGRESS
41
42#define CONFIG_ARCH_CPU_INIT
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090043
44#define CONFIG_SH_GPIO_PFC
45
46/* console */
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090047
48#define CONFIG_SYS_LONGHELP
49#define CONFIG_SYS_CBSIZE 256
50#define CONFIG_SYS_PBSIZE 256
51#define CONFIG_SYS_MAXARGS 16
52#define CONFIG_SYS_BARGSIZE 512
53#define CONFIG_SYS_BAUDRATE_TABLE { 115200, 38400 }
54
55/* MEMORY */
56#define CONFIG_SYS_TEXT_BASE 0x49000000
57#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + 0x7fff0)
58
59#define CONFIG_SYS_SDRAM_BASE (0x48000000)
60#define CONFIG_SYS_SDRAM_SIZE (1024u * 1024 * 1024 - 0x08000000)
61#define CONFIG_SYS_LOAD_ADDR (0x48080000)
62#define CONFIG_NR_DRAM_BANKS 1
63
64#define CONFIG_SYS_MONITOR_BASE 0x00000000
65#define CONFIG_SYS_MONITOR_LEN (256 * 1024)
66#define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024)
67#define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
68
69/* ENV setting */
70#define CONFIG_ENV_OVERWRITE
71#define CONFIG_ENV_SECT_SIZE (128 * 1024)
72#define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
73#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
74
75#define CONFIG_EXTRA_ENV_SETTINGS \
76 "fdt_high=0xffffffffffffffff\0" \
77 "initrd_high=0xffffffffffffffff\0"
78
79#define CONFIG_BOOTARGS \
80 "console=ttySC0,115200 rw root=/dev/nfs " \
81 "nfsroot=192.168.0.1:/export/rfs ip=192.168.0.20"
82
83#define CONFIG_BOOTCOMMAND \
84 "tftp 0x48080000 Image; " \
85 "tftp 0x48000000 Image-r8a7795-salvator-x.dtb; " \
86 "booti 0x48080000 - 0x48000000"
87
88#endif /* __RCAR_GEN3_COMMON_H */