Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 2 | /* |
| 3 | * include/configs/rcar-gen2-common.h |
| 4 | * |
| 5 | * Copyright (C) 2013,2014 Renesas Electronics Corporation |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __RCAR_GEN2_COMMON_H |
| 9 | #define __RCAR_GEN2_COMMON_H |
| 10 | |
| 11 | #include <asm/arch/rmobile.h> |
| 12 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 13 | #define CONFIG_CMDLINE_TAG |
| 14 | #define CONFIG_SETUP_MEMORY_TAGS |
| 15 | #define CONFIG_INITRD_TAG |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 16 | |
Marek Vasut | 44c5580 | 2018-02-26 20:19:08 +0100 | [diff] [blame] | 17 | #ifdef CONFIG_SPL |
| 18 | #define CONFIG_SPL_TARGET "spl/u-boot-spl.srec" |
| 19 | #endif |
| 20 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 21 | #undef CONFIG_SHOW_BOOT_PROGRESS |
| 22 | |
| 23 | #define CONFIG_ARCH_CPU_INIT |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 24 | |
| 25 | #define CONFIG_TMU_TIMER |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 26 | #ifndef CONFIG_PINCTRL_PFC |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 27 | #define CONFIG_SH_GPIO_PFC |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 28 | #endif |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 29 | |
| 30 | /* console */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 31 | #define CONFIG_SYS_PBSIZE 256 |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 32 | #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } |
| 33 | |
| 34 | #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) |
| 35 | #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) |
| 36 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fc0) |
| 37 | #define CONFIG_NR_DRAM_BANKS 1 |
| 38 | |
| 39 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
| 40 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) |
| 41 | #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) |
| 42 | #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) |
| 43 | |
| 44 | /* ENV setting */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 45 | #define CONFIG_ENV_ADDR 0xC0000 |
| 46 | |
| 47 | /* Common ENV setting */ |
| 48 | #define CONFIG_ENV_OVERWRITE |
| 49 | #define CONFIG_ENV_SECT_SIZE (256 * 1024) |
| 50 | #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR) |
| 51 | #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE) |
| 52 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_SYS_MONITOR_LEN) |
| 53 | |
| 54 | #endif /* __RCAR_GEN2_COMMON_H */ |