mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
278b90ce78
On the NIOS2 and Xtensa architectures, we do not have CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current values into the defconfig and removing them from the headers. I did not attempt to add more default values in and for now will leave that to maintainers. Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
383 B
C
19 lines
383 B
C
/*
|
|
* Copyright 2014 Broadcom Corporation.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __IPROC_COMMON_CONFIGS_H
|
|
#define __IPROC_COMMON_CONFIGS_H
|
|
|
|
#include <linux/stringify.h>
|
|
|
|
/* Architecture, CPU, chip, etc */
|
|
#define CONFIG_IPROC
|
|
#define CONFIG_SYS_ARM_CACHE_WRITETHROUGH
|
|
|
|
/* Memory Info */
|
|
#define CONFIG_SYS_SDRAM_BASE 0x61000000
|
|
|
|
#endif /* __IPROC_COMMON_CONFIGS_H */
|