mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
ca7d94524a
This patch adds DT board setup for the LaCie NAS Network Space Lite v2. This board is derived from the Network Space v2 and a lot of hardware characteristics are shared. - CPU: Marvell 88F6192 800Mhz - SDRAM memory: 128MB DDR2 200Mhz - 1 SATA port: internal - Gigabit ethernet: PHY Marvell 88E1318 - Flash memory: SPI NOR 512KB (Macronix MX25L4005A) - i2c EEPROM: 512 bytes (24C04 type) - 2 USB2 ports: host and host/device - 1 push button - 1 SATA LED (bi-color, blue and red) Note that the SATA LED is not compatible with the driver leds-ns2. The LED behaviour ("on", "off" or "SATA activity blink") is controlled via a single MPP (21). Signed-off-by: Simon Guinot <simon.guinot@sequanux.org> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
31 lines
498 B
Plaintext
31 lines
498 B
Plaintext
/dts-v1/;
|
|
|
|
/include/ "kirkwood-ns2-common.dtsi"
|
|
|
|
/ {
|
|
model = "LaCie Network Space Lite v2";
|
|
compatible = "lacie,netspace_lite_v2", "marvell,kirkwood-88f6192", "marvell,kirkwood";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x8000000>;
|
|
};
|
|
|
|
ocp@f1000000 {
|
|
sata@80000 {
|
|
status = "okay";
|
|
nr-ports = <1>;
|
|
};
|
|
};
|
|
|
|
gpio-leds {
|
|
compatible = "gpio-leds";
|
|
|
|
blue-sata {
|
|
label = "ns2:blue:sata";
|
|
gpios = <&gpio0 30 1>;
|
|
linux,default-trigger = "default-on";
|
|
};
|
|
};
|
|
};
|