Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 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 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 14 | #define CONFIG_CMD_DFL |
| 15 | #define CONFIG_CMD_SDRAM |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 16 | #define CONFIG_CMD_MII |
| 17 | #define CONFIG_CMD_PING |
| 18 | #define CONFIG_CMD_DHCP |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 19 | #define CONFIG_CMD_BOOTZ |
| 20 | #define CONFIG_CMD_USB |
| 21 | #define CONFIG_CMD_FAT |
| 22 | #define CONFIG_CMD_SF |
| 23 | #define CONFIG_CMD_SPI |
Nobuhiro Iwamatsu | 9427c61 | 2014-12-10 10:46:04 +0900 | [diff] [blame] | 24 | #define CONFIG_CMD_EXT2 |
| 25 | #define CONFIG_CMD_EXT4 |
| 26 | #define CONFIG_CMD_EXT4_WRITE |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 27 | |
| 28 | #define CONFIG_SYS_THUMB_BUILD |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 29 | |
| 30 | /* Support File sytems */ |
| 31 | #define CONFIG_FAT_WRITE |
| 32 | #define CONFIG_DOS_PARTITION |
| 33 | #define CONFIG_SUPPORT_VFAT |
Nobuhiro Iwamatsu | 9427c61 | 2014-12-10 10:46:04 +0900 | [diff] [blame] | 34 | #define CONFIG_FS_EXT4 |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 35 | #define CONFIG_EXT4_WRITE |
| 36 | |
| 37 | #define CONFIG_CMDLINE_TAG |
| 38 | #define CONFIG_SETUP_MEMORY_TAGS |
| 39 | #define CONFIG_INITRD_TAG |
| 40 | #define CONFIG_CMDLINE_EDITING |
| 41 | #define CONFIG_OF_LIBFDT |
| 42 | |
| 43 | #define CONFIG_BAUDRATE 38400 |
| 44 | #define CONFIG_BOOTDELAY 3 |
| 45 | #define CONFIG_BOOTARGS "" |
| 46 | |
| 47 | #define CONFIG_VERSION_VARIABLE |
| 48 | #undef CONFIG_SHOW_BOOT_PROGRESS |
| 49 | |
| 50 | #define CONFIG_ARCH_CPU_INIT |
| 51 | #define CONFIG_DISPLAY_CPUINFO |
| 52 | #define CONFIG_DISPLAY_BOARDINFO |
| 53 | #define CONFIG_BOARD_EARLY_INIT_F |
| 54 | |
| 55 | #define CONFIG_TMU_TIMER |
| 56 | #define CONFIG_SH_GPIO_PFC |
| 57 | |
| 58 | /* console */ |
| 59 | #undef CONFIG_SYS_CONSOLE_INFO_QUIET |
| 60 | #undef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE |
| 61 | #undef CONFIG_SYS_CONSOLE_ENV_OVERWRITE |
| 62 | |
| 63 | #define CONFIG_SYS_LONGHELP |
| 64 | #define CONFIG_SYS_CBSIZE 256 |
| 65 | #define CONFIG_SYS_PBSIZE 256 |
| 66 | #define CONFIG_SYS_MAXARGS 16 |
| 67 | #define CONFIG_SYS_BARGSIZE 512 |
| 68 | #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } |
| 69 | |
| 70 | #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) |
| 71 | #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) |
| 72 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fc0) |
| 73 | #define CONFIG_NR_DRAM_BANKS 1 |
| 74 | |
| 75 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
| 76 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) |
| 77 | #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) |
| 78 | #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) |
| 79 | |
| 80 | /* ENV setting */ |
| 81 | #define CONFIG_ENV_IS_IN_SPI_FLASH |
| 82 | #define CONFIG_ENV_ADDR 0xC0000 |
| 83 | |
| 84 | /* Common ENV setting */ |
| 85 | #define CONFIG_ENV_OVERWRITE |
| 86 | #define CONFIG_ENV_SECT_SIZE (256 * 1024) |
| 87 | #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR) |
| 88 | #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE) |
| 89 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_SYS_MONITOR_LEN) |
| 90 | |
| 91 | #endif /* __RCAR_GEN2_COMMON_H */ |