diff options
author | Jason Cooper <jason@lakedaemon.net> | 2012-10-21 22:15:35 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-11-21 15:59:22 -0500 |
commit | 767fc1ea92f70b5a97d43b79c146c2bee3eb6e83 (patch) | |
tree | da7de5637b3559daca2f56c766b043b9b1b37a56 /arch/arm/mach-kirkwood/board-dt.c | |
parent | b046f560d76a22589a849964145e4e60d7a160d2 (diff) |
ARM: Kirkwood: new board USI Topkick
This is a new kirkwood box made by Universal Scientific Industrial, Inc.
The product description is here:
http://www.usish.com/english/products_topkick1281p2.php
It is very similar to the dreamplug and other plug devices, with the
exception that it has room for a 2.5" SATA HDD internally.
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dt.c')
-rw-r--r-- | arch/arm/mach-kirkwood/board-dt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c index 571b0198e4d5..e0bb9ca59245 100644 --- a/arch/arm/mach-kirkwood/board-dt.c +++ b/arch/arm/mach-kirkwood/board-dt.c | |||
@@ -103,6 +103,9 @@ static void __init kirkwood_dt_init(void) | |||
103 | of_machine_is_compatible("lacie,netspace_mini_v2")) | 103 | of_machine_is_compatible("lacie,netspace_mini_v2")) |
104 | ns2_init(); | 104 | ns2_init(); |
105 | 105 | ||
106 | if (of_machine_is_compatible("usi,topkick")) | ||
107 | usi_topkick_init(); | ||
108 | |||
106 | of_platform_populate(NULL, kirkwood_dt_match_table, | 109 | of_platform_populate(NULL, kirkwood_dt_match_table, |
107 | kirkwood_auxdata_lookup, NULL); | 110 | kirkwood_auxdata_lookup, NULL); |
108 | } | 111 | } |
@@ -124,6 +127,7 @@ static const char *kirkwood_dt_board_compat[] = { | |||
124 | "lacie,netspace_v2", | 127 | "lacie,netspace_v2", |
125 | "lacie,netspace_lite_v2", | 128 | "lacie,netspace_lite_v2", |
126 | "lacie,netspace_mini_v2", | 129 | "lacie,netspace_mini_v2", |
130 | "usi,topkick", | ||
127 | NULL | 131 | NULL |
128 | }; | 132 | }; |
129 | 133 | ||