mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
aa6e94deab
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>
26 lines
552 B
C
26 lines
552 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018 Synopsys, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _CONFIG_EMSDP_H_
|
|
#define _CONFIG_EMSDP_H_
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x10000000
|
|
#define CFG_SYS_SDRAM_SIZE SZ_16M
|
|
|
|
/*
|
|
* Environment
|
|
*/
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"upgrade_image=u-boot.bin\0" \
|
|
"upgrade=emsdp rom unlock && " \
|
|
"fatload mmc 0 ${loadaddr} ${upgrade_image} && " \
|
|
"cp.b ${loadaddr} 0 ${filesize} && " \
|
|
"dcache flush && " \
|
|
"emsdp rom lock\0"
|
|
|
|
#endif /* _CONFIG_EMSDP_H_ */
|