1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-12-26 06:09:13 +01:00
Files
u-boot-megous/include/configs/nsim.h
Tom Rini aa6e94deab global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS_SDRAM
namespace do not easily transition to Kconfig. In many cases they likely
should come from the device tree instead. Move these out of CONFIG
namespace and in to CFG namespace.

Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
2022-12-05 16:06:07 -05:00

24 lines
416 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved.
*/
#ifndef _CONFIG_NSIM_H_
#define _CONFIG_NSIM_H_
#include <linux/sizes.h>
/*
* Memory configuration
*/
#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
#define CFG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
#define CFG_SYS_SDRAM_SIZE SZ_256M
/*
* Console configuration
*/
#endif /* _CONFIG_NSIM_H_ */