-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Jason Cooper
committed
Nov 21, 2012
1 parent
b046f56
commit 767fc1e
Showing
8 changed files
with
187 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/dts-v1/; | ||
|
||
/include/ "kirkwood.dtsi" | ||
|
||
/ { | ||
model = "Univeral Scientific Industrial Co. Topkick-1281P2"; | ||
compatible = "usi,topkick-1281P2", "usi,topkick", "marvell,kirkwood-88f6282", "marvell,kirkwood"; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0x00000000 0x10000000>; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,115200n8 earlyprintk"; | ||
}; | ||
|
||
ocp@f1000000 { | ||
serial@12000 { | ||
clock-frequency = <200000000>; | ||
status = "ok"; | ||
}; | ||
|
||
nand@3000000 { | ||
status = "okay"; | ||
|
||
partition@0 { | ||
label = "u-boot"; | ||
reg = <0x0000000 0x180000>; | ||
}; | ||
|
||
partition@180000 { | ||
label = "u-boot env"; | ||
reg = <0x0180000 0x20000>; | ||
}; | ||
|
||
partition@200000 { | ||
label = "uImage"; | ||
reg = <0x0200000 0x600000>; | ||
}; | ||
|
||
partition@800000 { | ||
label = "uInitrd"; | ||
reg = <0x0800000 0x1000000>; | ||
}; | ||
|
||
partition@1800000 { | ||
label = "rootfs"; | ||
reg = <0x1800000 0xe800000>; | ||
}; | ||
}; | ||
|
||
sata@80000 { | ||
status = "okay"; | ||
nr-ports = <1>; | ||
}; | ||
}; | ||
|
||
gpio-leds { | ||
compatible = "gpio-leds"; | ||
|
||
disk { | ||
label = "topkick:yellow:disk"; | ||
gpios = <&gpio0 21 1>; | ||
linux,default-trigger = "ide-disk"; | ||
}; | ||
system2 { | ||
label = "topkick:red:system"; | ||
gpios = <&gpio1 5 1>; | ||
}; | ||
system { | ||
label = "topkick:blue:system"; | ||
gpios = <&gpio1 6 1>; | ||
default-state = "on"; | ||
}; | ||
wifi { | ||
label = "topkick:green:wifi"; | ||
gpios = <&gpio1 7 1>; | ||
}; | ||
wifi2 { | ||
label = "topkick:yellow:wifi"; | ||
gpios = <&gpio1 16 1>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net> | ||
* | ||
* arch/arm/mach-kirkwood/board-usi_topkick.c | ||
* | ||
* USI Topkick Init for drivers not converted to flattened device tree yet. | ||
* | ||
* This file is licensed under the terms of the GNU General Public | ||
* License version 2. This program is licensed "as is" without any | ||
* warranty of any kind, whether express or implied. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/init.h> | ||
#include <linux/mv643xx_eth.h> | ||
#include <linux/gpio.h> | ||
#include <linux/platform_data/mmc-mvsdio.h> | ||
#include "common.h" | ||
#include "mpp.h" | ||
|
||
static struct mv643xx_eth_platform_data topkick_ge00_data = { | ||
.phy_addr = MV643XX_ETH_PHY_ADDR(0), | ||
}; | ||
|
||
static struct mvsdio_platform_data topkick_mvsdio_data = { | ||
/* unfortunately the CD signal has not been connected */ | ||
}; | ||
|
||
/* | ||
* GPIO LED layout | ||
* | ||
* /-SYS_LED(2) | ||
* | | ||
* | /-DISK_LED | ||
* | | | ||
* | | /-WLAN_LED(2) | ||
* | | | | ||
* [SW] [*] [*] [*] | ||
*/ | ||
|
||
/* | ||
* Switch positions | ||
* | ||
* /-SW_LEFT | ||
* | | ||
* | /-SW_IDLE | ||
* | | | ||
* | | /-SW_RIGHT | ||
* | | | | ||
* PS [L] [I] [R] LEDS | ||
*/ | ||
|
||
static unsigned int topkick_mpp_config[] __initdata = { | ||
MPP21_GPIO, /* DISK_LED (low active) - yellow */ | ||
MPP36_GPIO, /* SATA0 power enable (high active) */ | ||
MPP37_GPIO, /* SYS_LED2 (low active) - red */ | ||
MPP38_GPIO, /* SYS_LED (low active) - blue */ | ||
MPP39_GPIO, /* WLAN_LED (low active) - green */ | ||
MPP43_GPIO, /* SW_LEFT (low active) */ | ||
MPP44_GPIO, /* SW_RIGHT (low active) */ | ||
MPP45_GPIO, /* SW_IDLE (low active) */ | ||
MPP46_GPIO, /* SW_LEFT (low active) */ | ||
MPP48_GPIO, /* WLAN_LED2 (low active) - yellow */ | ||
0 | ||
}; | ||
|
||
#define TOPKICK_SATA0_PWR_ENABLE 36 | ||
|
||
void __init usi_topkick_init(void) | ||
{ | ||
/* | ||
* Basic setup. Needs to be called early. | ||
*/ | ||
kirkwood_mpp_conf(topkick_mpp_config); | ||
|
||
/* SATA0 power enable */ | ||
gpio_set_value(TOPKICK_SATA0_PWR_ENABLE, 1); | ||
|
||
kirkwood_ehci_init(); | ||
kirkwood_ge00_init(&topkick_ge00_data); | ||
kirkwood_sdio_init(&topkick_mvsdio_data); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters