1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * include/configs/rcar-gen3-common.h 4 * This file is R-Car Gen3 common configuration file. 5 * 6 * Copyright (C) 2015-2024 Renesas Electronics Corporation 7 */ 8 9 #ifndef __RCAR_GEN3_COMMON_H 10 #define __RCAR_GEN3_COMMON_H 11 12 #include <asm/arch/renesas.h> 13 14 /* Console */ 15 #define CFG_SYS_BAUDRATE_TABLE { 115200, 38400 } 16 17 /* Memory */ 18 #define DRAM_RSV_SIZE 0x08000000 19 #define CFG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE) 20 #define CFG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE) 21 #define CFG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE) 22 23 /* Environment setting */ 24 #define CFG_EXTRA_ENV_SETTINGS \ 25 "bootm_size=0x10000000\0" 26 27 #endif /* __RCAR_GEN3_COMMON_H */ 28