[Feature] add GA346 baseline version
Change-Id: Ic62933698569507dcf98240cdf5d9931ae34348f
diff --git a/src/kernel/linux/v4.19/arch/arm/mach-davinci/da8xx-dt.c b/src/kernel/linux/v4.19/arch/arm/mach-davinci/da8xx-dt.c
new file mode 100644
index 0000000..beac80e
--- /dev/null
+++ b/src/kernel/linux/v4.19/arch/arm/mach-davinci/da8xx-dt.c
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
+ *
+ * Modified from mach-omap/omap2/board-generic.c
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <asm/mach/arch.h>
+
+#include <mach/common.h>
+#include <mach/da8xx.h>
+
+#ifdef CONFIG_ARCH_DAVINCI_DA850
+
+static void __init da850_init_machine(void)
+{
+ davinci_pm_init();
+ pdata_quirks_init();
+}
+
+static const char *const da850_boards_compat[] __initconst = {
+ "enbw,cmc",
+ "ti,da850-lcdk",
+ "ti,da850-evm",
+ "ti,da850",
+ NULL,
+};
+
+DT_MACHINE_START(DA850_DT, "Generic DA850/OMAP-L138/AM18x")
+ .map_io = da850_init,
+ .init_machine = da850_init_machine,
+ .dt_compat = da850_boards_compat,
+ .init_late = davinci_init_late,
+MACHINE_END
+
+#endif