aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-kirkwood/board-dt.c
diff options
context:
space:
mode:
authorSimon Guinot <simon.guinot@sequanux.org>2012-10-17 06:09:06 -0400
committerJason Cooper <jason@lakedaemon.net>2012-11-21 15:58:49 -0500
commit7f9871d9d30f25891e0c4da4c6284d9e66e702f5 (patch)
tree5a9b180c35a261f8d215212cbb46e24ca0b7683d /arch/arm/mach-kirkwood/board-dt.c
parentca7d94524ab3554b08f13de91674d570cb4a09b6 (diff)
ARM: kirkwood: DT board setup for Network Space Mini v2
This patch adds DT board setup for the LaCie NAS Network Space Mini v2 (aka SafeBox). The hardware characteristics are very close to those of the Network Space Lite v2. The main difference are: - A GPIO fan which is only available on the NS2 Mini. - A single USB host port is wired on the NS2 Mini. The NS2 Lite provides an additional dual-mode USB port (host/device). Signed-off-by: Simon Guinot <simon.guinot@sequanux.org> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dt.c')
-rw-r--r--arch/arm/mach-kirkwood/board-dt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c
index b76ef75f533f..571b0198e4d5 100644
--- a/arch/arm/mach-kirkwood/board-dt.c
+++ b/arch/arm/mach-kirkwood/board-dt.c
@@ -99,7 +99,8 @@ static void __init kirkwood_dt_init(void)
99 if (of_machine_is_compatible("lacie,inetspace_v2") || 99 if (of_machine_is_compatible("lacie,inetspace_v2") ||
100 of_machine_is_compatible("lacie,netspace_v2") || 100 of_machine_is_compatible("lacie,netspace_v2") ||
101 of_machine_is_compatible("lacie,netspace_max_v2") || 101 of_machine_is_compatible("lacie,netspace_max_v2") ||
102 of_machine_is_compatible("lacie,netspace_lite_v2")) 102 of_machine_is_compatible("lacie,netspace_lite_v2") ||
103 of_machine_is_compatible("lacie,netspace_mini_v2"))
103 ns2_init(); 104 ns2_init();
104 105
105 of_platform_populate(NULL, kirkwood_dt_match_table, 106 of_platform_populate(NULL, kirkwood_dt_match_table,
@@ -122,6 +123,7 @@ static const char *kirkwood_dt_board_compat[] = {
122 "lacie,netspace_max_v2", 123 "lacie,netspace_max_v2",
123 "lacie,netspace_v2", 124 "lacie,netspace_v2",
124 "lacie,netspace_lite_v2", 125 "lacie,netspace_lite_v2",
126 "lacie,netspace_mini_v2",
125 NULL 127 NULL
126}; 128};
127 129