mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-21 05:41:29 +02:00
Switch PHY_ANEG_TIMEOUT to CONFIG_PHY_ANEG_TIMEOUT Kconfig symbol. This removes one more configuration headers option finalizes its Kconfig symbol conversion. No functional change expected. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
35 lines
817 B
C
35 lines
817 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* include/configs/rcar-gen3-common.h
|
|
* This file is R-Car Gen3 common configuration file.
|
|
*
|
|
* Copyright (C) 2015-2017 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#ifndef __RCAR_GEN3_COMMON_H
|
|
#define __RCAR_GEN3_COMMON_H
|
|
|
|
#include <asm/arch/renesas.h>
|
|
|
|
/* boot option */
|
|
|
|
/* Generic Interrupt Controller Definitions */
|
|
#define GICD_BASE 0xF1010000
|
|
#define GICC_BASE 0xF1020000
|
|
|
|
/* console */
|
|
#define CFG_SYS_BAUDRATE_TABLE { 115200, 38400 }
|
|
|
|
/* MEMORY */
|
|
#define DRAM_RSV_SIZE 0x08000000
|
|
#define CFG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE)
|
|
#define CFG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE)
|
|
#define CFG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE)
|
|
|
|
/* ENV setting */
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
"bootm_size=0x10000000\0"
|
|
|
|
#endif /* __RCAR_GEN3_COMMON_H */
|