mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
3a581af21a
This converts the following to Kconfig: CONFIG_FLASH_SPANSION_S29WS_N CONFIG_FLASH_VERIFY CONFIG_FSL_FM_10GEC_REGULAR_NOTATION CONFIG_FSL_ISBC_KEY_EXT CONFIG_FSL_TRUST_ARCH_v1 CONFIG_FSL_SDHC_V2_3 CONFIG_MAX_DSP_CPUS CONFIG_MIU_2BIT_INTERLEAVED CONFIG_SERIAL_BOOT CONFIG_SPI_BOOTING CONFIG_X86EMU_RAW_IO Signed-off-by: Tom Rini <trini@konsulko.com>
21 lines
477 B
C
21 lines
477 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2014 Google, Inc
|
|
*
|
|
* Configuration settings for generic Exynos 5 board
|
|
*/
|
|
|
|
#ifndef __CONFIG_EXYNOS5_DT_COMMON_H
|
|
#define __CONFIG_EXYNOS5_DT_COMMON_H
|
|
|
|
/* Console configuration */
|
|
#undef EXYNOS_DEVICE_SETTINGS
|
|
#define EXYNOS_DEVICE_SETTINGS \
|
|
"stdin=serial,cros-ec-keyb\0" \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
#define CFG_SYS_SPI_BASE 0x12D30000
|
|
#define FLASH_SIZE (4 << 20)
|
|
|
|
#endif
|