mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
6889412ad5
This converts the following to Kconfig: CONFIG_SYS_BARGSIZE Signed-off-by: Tom Rini <trini@konsulko.com>
30 lines
663 B
C
30 lines
663 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
*
|
|
* Common configuration settings for the SAMSUNG EXYNOS boards.
|
|
*/
|
|
|
|
#ifndef __EXYNOS_COMMON_H
|
|
#define __EXYNOS_COMMON_H
|
|
|
|
/* High Level Configuration Options */
|
|
#define CONFIG_SAMSUNG /* in a SAMSUNG core */
|
|
#define CONFIG_S5P /* S5P Family */
|
|
|
|
#include <asm/arch/cpu.h> /* get chip and board defs */
|
|
#include <linux/sizes.h>
|
|
#include <linux/stringify.h>
|
|
|
|
/* Keep L2 Cache Disabled */
|
|
|
|
/* input clock of PLL: 24MHz input clock */
|
|
|
|
/* select serial console configuration */
|
|
|
|
/* PWM */
|
|
#define CONFIG_PWM
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
#endif /* __CONFIG_H */
|