mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
d3dde4df44
LaCie has released two products under the CloudBox name. The netspace_mini_v2 machine is embedded in the oldest product. The cloudbox machine is embedded in the newest one. In order to allow a CloudBox user to select the right machine support, this patch adds some informations to the netspace_mini_v2 Kconfig description. A comment is also added to the dts file. Signed-off-by: Simon Guinot <simon.guinot@sequanux.org> Acked-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
51 lines
844 B
Plaintext
51 lines
844 B
Plaintext
/dts-v1/;
|
|
|
|
/include/ "kirkwood-ns2-common.dtsi"
|
|
|
|
/ {
|
|
/* This machine is embedded in the first LaCie CloudBox product. */
|
|
model = "LaCie Network Space Mini v2";
|
|
compatible = "lacie,netspace_mini_v2", "marvell,kirkwood-88f6192", "marvell,kirkwood";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x8000000>;
|
|
};
|
|
|
|
ocp@f1000000 {
|
|
sata@80000 {
|
|
status = "okay";
|
|
nr-ports = <1>;
|
|
};
|
|
};
|
|
|
|
gpio_fan {
|
|
compatible = "gpio-fan";
|
|
gpios = <&gpio0 22 1
|
|
&gpio0 7 1
|
|
&gpio1 1 1
|
|
&gpio0 23 1>;
|
|
gpio-fan,speed-map =
|
|
< 0 0
|
|
3000 15
|
|
3180 14
|
|
4140 13
|
|
4570 12
|
|
6760 11
|
|
7140 10
|
|
7980 9
|
|
9200 8>;
|
|
alarm-gpios = <&gpio0 25 1>;
|
|
};
|
|
|
|
ns2-leds {
|
|
compatible = "lacie,ns2-leds";
|
|
|
|
blue-sata {
|
|
label = "ns2:blue:sata";
|
|
slow-gpio = <&gpio0 29 0>;
|
|
cmd-gpio = <&gpio0 30 0>;
|
|
};
|
|
};
|
|
};
|