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 | |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 21 | #ifndef CONFIG_PINCTRL_PFC |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 22 | #define CONFIG_SH_GPIO_PFC |
Marek Vasut | 789edf6 | 2018-01-07 19:32:56 +0100 | [diff] [blame] | 23 | #endif |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 24 | |
| 25 | /* console */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 26 | #define CONFIG_SYS_PBSIZE 256 |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 27 | #define CONFIG_SYS_BAUDRATE_TABLE { 38400, 115200 } |
| 28 | |
| 29 | #define CONFIG_SYS_SDRAM_BASE (RCAR_GEN2_SDRAM_BASE) |
| 30 | #define CONFIG_SYS_SDRAM_SIZE (RCAR_GEN2_UBOOT_SDRAM_SIZE) |
Marek Vasut | 910db6c | 2018-05-31 15:12:53 +0200 | [diff] [blame] | 31 | #define CONFIG_SYS_LOAD_ADDR 0x50000000 |
| 32 | #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 33 | |
| 34 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
| 35 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) |
| 36 | #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 37 | |
| 38 | /* ENV setting */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 39 | |
| 40 | /* Common ENV setting */ |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 41 | |
Marek Vasut | 20fccb9 | 2018-05-31 14:42:12 +0200 | [diff] [blame] | 42 | /* SF MTD */ |
Frieder Schrempf | 832ce20 | 2019-10-23 07:41:20 +0000 | [diff] [blame] | 43 | #ifdef CONFIG_SPL_BUILD |
Marek Vasut | 3f965f2 | 2019-02-19 05:07:13 +0100 | [diff] [blame] | 44 | #undef CONFIG_DM_SPI |
| 45 | #undef CONFIG_DM_SPI_FLASH |
Marek Vasut | 20fccb9 | 2018-05-31 14:42:12 +0200 | [diff] [blame] | 46 | #endif |
| 47 | |
Marek Vasut | 0e286c5 | 2018-08-24 21:52:53 +0200 | [diff] [blame] | 48 | /* Timer */ |
| 49 | #define CONFIG_TMU_TIMER |
| 50 | #define CONFIG_SYS_TIMER_COUNTS_DOWN |
| 51 | #define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ |
Marek Vasut | 6f03130 | 2018-09-19 16:33:09 +0200 | [diff] [blame] | 52 | #define CONFIG_SYS_TIMER_RATE (CONFIG_SYS_CLK_FREQ / 8) |
Marek Vasut | 0e286c5 | 2018-08-24 21:52:53 +0200 | [diff] [blame] | 53 | |
Nobuhiro Iwamatsu | 1719383 | 2014-11-06 16:30:56 +0900 | [diff] [blame] | 54 | #endif /* __RCAR_GEN2_COMMON_H */ |