mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +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>
31 lines
744 B
C
31 lines
744 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2012-2020 ASPEED Technology Inc.
|
|
* Ryan Chen <ryan_chen@aspeedtech.com>
|
|
*
|
|
* Copyright 2016 IBM Corporation
|
|
* (C) Copyright 2016 Google, Inc
|
|
*/
|
|
|
|
#ifndef _ASPEED_COMMON_CONFIG_H
|
|
#define _ASPEED_COMMON_CONFIG_H
|
|
|
|
#include <asm/arch/platform.h>
|
|
|
|
/* Misc CPU related */
|
|
|
|
#define CFG_SYS_SDRAM_BASE ASPEED_DRAM_BASE
|
|
|
|
#ifdef CONFIG_PRE_CON_BUF_SZ
|
|
#define CONFIG_SYS_INIT_RAM_ADDR (ASPEED_SRAM_BASE + CONFIG_PRE_CON_BUF_SZ)
|
|
#define CONFIG_SYS_INIT_RAM_SIZE (ASPEED_SRAM_SIZE - CONFIG_PRE_CON_BUF_SZ)
|
|
#else
|
|
#define CONFIG_SYS_INIT_RAM_ADDR (ASPEED_SRAM_BASE)
|
|
#define CONFIG_SYS_INIT_RAM_SIZE (ASPEED_SRAM_SIZE)
|
|
#endif
|
|
|
|
/*
|
|
* NS16550 Configuration
|
|
*/
|
|
|
|
#endif /* __AST_COMMON_CONFIG_H */
|