
On Mon, Jan 14, 2019 at 06:11:06PM +0530, Amit Singh Tomar wrote:
This patch adds basic support for Actions Semi based S700 SoC, which is driven by common owl framework.
Signed-off-by: Amit Singh Tomar amittomer25@gmail.com
Changes since v1:
- S700 specific changes are factored out here from patch 1 of 9.
arch/arm/mach-owl/Kconfig | 6 ++++++ include/configs/s700.h | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 include/configs/s700.h
diff --git a/arch/arm/mach-owl/Kconfig b/arch/arm/mach-owl/Kconfig index 5eb93c9..d05cc68 100644 --- a/arch/arm/mach-owl/Kconfig +++ b/arch/arm/mach-owl/Kconfig @@ -8,13 +8,19 @@ config MACH_S900 bool "Actionss Semi S900" select ARM64
+config MACH_S700
bool "Actions Semi S700"
select ARM64
endchoice
config SYS_CONFIG_NAME default "s900" if MACH_S900
default "s700" if MACH_S700
config SYS_SOC default "s900" if MACH_S900
default "s700" if MACH_S700
config SYS_TEXT_BASE default 0x11000000 diff --git a/include/configs/s700.h b/include/configs/s700.h new file mode 100644 index 0000000..84f9174 --- /dev/null +++ b/include/configs/s700.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/*
- Board configuration file for Action semi s700
Please be consistent with naming conventions... Actions Semi S700 SoC.
Thanks, Mani
- */
+#ifndef _CONFIG_S700_H_ +#define _CONFIG_S700_H_
+/*
- Include common owl configuration where most the settings are
- */
+#include <configs/owl-common.h>
+#endif
2.7.4