mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
f8dc7f2f18
Move CONFIG_SYS_ARM_CACHE_WRITETHROUGH and CONFIG_SYS_ARM_CACHE_WRITEALLOC into Kconfig done by moveconfig.py. Kconfig uses a choice between the 3 values supported in U-Boot, including the new configuration CONFIG_SYS_ARM_CACHE_WRITEBACK (the default configuration). The patch also avoids to select simultaneously 2 configurations. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
17 lines
341 B
C
17 lines
341 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Broadcom Corporation.
|
|
*/
|
|
|
|
#ifndef __IPROC_COMMON_CONFIGS_H
|
|
#define __IPROC_COMMON_CONFIGS_H
|
|
|
|
#include <linux/stringify.h>
|
|
|
|
/* Architecture, CPU, chip, etc */
|
|
#define CONFIG_IPROC
|
|
|
|
/* Memory Info */
|
|
#define CONFIG_SYS_SDRAM_BASE 0x61000000
|
|
|
|
#endif /* __IPROC_COMMON_CONFIGS_H */
|