@@ -21,6 +21,7 @@
#include "common.h"
#include "common-board-devices.h"
#include "dss-common.h"
+#include "sdram-hynix-h8kds0un0mer-4em.h"
#if !(defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3))
#define intc_of_init NULL
@@ -51,6 +52,13 @@ static void __init omap_generic_init(void)
omap_4430sdp_display_init_of();
}
+static void __init seagate_wireless_plus_init(void)
+{
+ omap_sdrc_init(h8kds0un0mer4em_sdrc_params, NULL);
+
+ of_platform_populate(NULL, omap_dt_match_table, NULL, NULL);
+}
+
#ifdef CONFIG_SOC_OMAP2420
static const char *omap242x_boards_compat[] __initdata = {
"ti,omap2420",
@@ -90,6 +98,24 @@ MACHINE_END
#endif
#ifdef CONFIG_ARCH_OMAP3
+static const char *seagate_wireless_plus_compat[] __initdata = {
+ "seagate,wireless-plus",
+ NULL,
+};
+
+DT_MACHINE_START(SEAGATE_WIRELESS_PLUS_DT, "Seagate Wireless Plus (Flattened Device Tree)")
+ .reserve = omap_reserve,
+ .map_io = omap3_map_io,
+ .init_early = omap3430_init_early,
+ .init_irq = omap_intc_of_init,
+ .handle_irq = omap3_intc_handle_irq,
+ .init_machine = seagate_wireless_plus_init,
+ .init_late = omap3_init_late,
+ .init_time = omap3_sync32k_timer_init,
+ .dt_compat = seagate_wireless_plus_compat,
+ .restart = omap3xxx_restart,
+MACHINE_END
+
static const char *omap3_boards_compat[] __initdata = {
"ti,omap3",
NULL,
new file mode 100644
@@ -0,0 +1,30 @@
+/*
+ * SDRC register values for the Hynix H8KDS0UN0MER-4EM
+ *
+ * Copyright (C) 2010 Texas Instruments, Inc.
+ *
+ * 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.
+ */
+
+#ifndef __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8KDS0UN0MER4EM
+#define __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8KDS0UN0MER4EM
+
+#include "sdrc.h"
+
+/* Hynix H8KDS0UN0MER-4EM */
+static struct omap_sdrc_params h8kds0un0mer4em_sdrc_params[] = {
+ [0] = {
+ .rate = 200000000,
+ .actim_ctrla = 0x92e1c4c6,
+ .actim_ctrlb = 0x0002111c,
+ .rfr_ctrl = 0x0004dc01,
+ .mr = 0x00000032,
+ },
+ [1] = {
+ .rate = 0
+ },
+};
+
+#endif
Hynix include file copied from vendor supplied source code. Signed-off-by: Jason Cooper <jason@lakedaemon.net> --- arch/arm/mach-omap2/board-generic.c | 26 +++++++++++++++++++ arch/arm/mach-omap2/sdram-hynix-h8kds0un0mer-4em.h | 30 ++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 arch/arm/mach-omap2/sdram-hynix-h8kds0un0mer-4em.h