summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/mach-ls1021a.c
diff options
context:
space:
mode:
authorJingchang Lu <b35083@freescale.com>2014-10-31 17:01:12 +0800
committerShawn Guo <shawn.guo@linaro.org>2014-11-23 14:56:20 +0800
commit7f0fb6104b3a9c48d7b253d3984d3a619bb1e654 (patch)
treee130a9f26daa5a62c14a4625782cec531775ee10 /arch/arm/mach-imx/mach-ls1021a.c
parent9a31634d4641c14227bd6105c538ab335616463d (diff)
downloadlinux-7f0fb6104b3a9c48d7b253d3984d3a619bb1e654.tar.bz2
ARM: imx: Add initial support for Freescale LS1021A
The LS1021A SoC is a dual-core Cortex-A7 based processor, this adds the initial support for it. Signed-off-by: Jingchang Lu <b35083@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/mach-ls1021a.c')
-rw-r--r--arch/arm/mach-imx/mach-ls1021a.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mach-ls1021a.c b/arch/arm/mach-imx/mach-ls1021a.c
new file mode 100644
index 000000000000..9d2034b1a150
--- /dev/null
+++ b/arch/arm/mach-imx/mach-ls1021a.c
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2013-2014 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include <asm/mach/arch.h>
+
+#include "common.h"
+
+static const char * const ls1021a_dt_compat[] __initconst = {
+ "fsl,ls1021a",
+ NULL,
+};
+
+DT_MACHINE_START(LS1021A, "Freescale LS1021A")
+ .dt_compat = ls1021a_dt_compat,
+MACHINE_END