aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-kirkwood/board-dt.c
diff options
context:
space:
mode:
authorJosh Coombs <josh.coombs@gmail.com>2012-07-16 05:52:50 -0400
committerAndrew Lunn <andrew@lunn.ch>2012-07-27 10:49:01 -0400
commit5136b2aa622844fcff9fecf1f2c57670b890227f (patch)
tree64c5e672cf6650f396c2e00f3e5420fc55f814b1 /arch/arm/mach-kirkwood/board-dt.c
parent9eb61f473601c047a4c0c84269d0c25493e45277 (diff)
ARM: Kirkwood: Initial DTS support for Kirkwood GoFlex Net
This patch supplies the necessary DTS and supporting files to boot up a Seagate GoFlex Net with 3.5.0-rc3. Signed-off-by: Joshua Coombs <josh.coombs@gmail.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dt.c')
-rw-r--r--arch/arm/mach-kirkwood/board-dt.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c
index d0ad25036558..87538182d3da 100644
--- a/arch/arm/mach-kirkwood/board-dt.c
+++ b/arch/arm/mach-kirkwood/board-dt.c
@@ -32,6 +32,7 @@ struct of_dev_auxdata kirkwood_auxdata_lookup[] __initdata = {
32 NULL), 32 NULL),
33 OF_DEV_AUXDATA("marvell,orion-wdt", 0xf1020300, "orion_wdt", NULL), 33 OF_DEV_AUXDATA("marvell,orion-wdt", 0xf1020300, "orion_wdt", NULL),
34 OF_DEV_AUXDATA("marvell,orion-sata", 0xf1080000, "sata_mv.0", NULL), 34 OF_DEV_AUXDATA("marvell,orion-sata", 0xf1080000, "sata_mv.0", NULL),
35 OF_DEV_AUXDATA("mrvl,orion-nand", 0xf4000000, "orion_nand", NULL),
35 {}, 36 {},
36}; 37};
37 38
@@ -80,6 +81,9 @@ static void __init kirkwood_dt_init(void)
80 if (of_machine_is_compatible("qnap,ts219")) 81 if (of_machine_is_compatible("qnap,ts219"))
81 qnap_dt_ts219_init(); 82 qnap_dt_ts219_init();
82 83
84 if (of_machine_is_compatible("seagate,goflexnet"))
85 goflexnet_init();
86
83 of_platform_populate(NULL, kirkwood_dt_match_table, 87 of_platform_populate(NULL, kirkwood_dt_match_table,
84 kirkwood_auxdata_lookup, NULL); 88 kirkwood_auxdata_lookup, NULL);
85} 89}
@@ -91,6 +95,7 @@ static const char *kirkwood_dt_board_compat[] = {
91 "iom,iconnect", 95 "iom,iconnect",
92 "raidsonic,ib-nas62x0", 96 "raidsonic,ib-nas62x0",
93 "qnap,ts219", 97 "qnap,ts219",
98 "seagate,goflexnet",
94 NULL 99 NULL
95}; 100};
96 101