@@ -8,6 +8,10 @@ config MACH_S900
bool "Actions Semi S900 SoC"
select ARM64
+config MACH_S700
+ bool "Actions Semi S700 SoC"
+ select ARM64
+
endchoice
config SYS_TEXT_BASE
@@ -15,8 +19,10 @@ config SYS_TEXT_BASE
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
endif
new file mode 100644
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ */
+
+#ifndef _CONFIG_S700_H_
+#define _CONFIG_S700_H_
+
+/*
+ * Include common owl configuration where most the settings are
+ */
+#include <configs/owl-common.h>
+
+#endif