diff options
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/Makefile | 4 | ||||
-rw-r--r-- | arch/arm/boot/dts/stih415-b2020.dts | 15 | ||||
-rw-r--r-- | arch/arm/boot/dts/stih416-b2020.dts | 16 | ||||
-rw-r--r-- | arch/arm/boot/dts/stih41x-b2020.dtsi | 42 |
4 files changed, 76 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index 53ee54293d89..31f3488f1c25 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
@@ -178,7 +178,9 @@ dtb-$(CONFIG_ARCH_SPEAR3XX)+= spear300-evb.dtb \ | |||
178 | spear320-hmi.dtb | 178 | spear320-hmi.dtb |
179 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb | 179 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb |
180 | dtb-$(CONFIG_ARCH_STI)+= stih415-b2000.dtb \ | 180 | dtb-$(CONFIG_ARCH_STI)+= stih415-b2000.dtb \ |
181 | stih416-b2000.dtb | 181 | stih416-b2000.dtb \ |
182 | stih415-b2020.dtb \ | ||
183 | stih416-b2020.dtb | ||
182 | dtb-$(CONFIG_ARCH_SUNXI) += \ | 184 | dtb-$(CONFIG_ARCH_SUNXI) += \ |
183 | sun4i-a10-cubieboard.dtb \ | 185 | sun4i-a10-cubieboard.dtb \ |
184 | sun4i-a10-mini-xplus.dtb \ | 186 | sun4i-a10-mini-xplus.dtb \ |
diff --git a/arch/arm/boot/dts/stih415-b2020.dts b/arch/arm/boot/dts/stih415-b2020.dts new file mode 100644 index 000000000000..442b019e9a3a --- /dev/null +++ b/arch/arm/boot/dts/stih415-b2020.dts | |||
@@ -0,0 +1,15 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2013 STMicroelectronics (R&D) Limited. | ||
3 | * Author: Srinivas Kandagatla <srinivas.kandagatla@st.com> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * publishhed by the Free Software Foundation. | ||
8 | */ | ||
9 | /dts-v1/; | ||
10 | #include "stih415.dtsi" | ||
11 | #include "stih41x-b2020.dtsi" | ||
12 | / { | ||
13 | model = "STiH415 B2020 Board"; | ||
14 | compatible = "st,stih415", "st,stih415-b2020"; | ||
15 | }; | ||
diff --git a/arch/arm/boot/dts/stih416-b2020.dts b/arch/arm/boot/dts/stih416-b2020.dts new file mode 100644 index 000000000000..276f28da573a --- /dev/null +++ b/arch/arm/boot/dts/stih416-b2020.dts | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2013 STMicroelectronics (R&D) Limited. | ||
3 | * Author: Srinivas Kandagatla <srinivas.kandagatla@st.com> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * publishhed by the Free Software Foundation. | ||
8 | */ | ||
9 | /dts-v1/; | ||
10 | #include "stih416.dtsi" | ||
11 | #include "stih41x-b2020.dtsi" | ||
12 | / { | ||
13 | model = "STiH416 B2020"; | ||
14 | compatible = "st,stih416", "st,stih416-b2020"; | ||
15 | |||
16 | }; | ||
diff --git a/arch/arm/boot/dts/stih41x-b2020.dtsi b/arch/arm/boot/dts/stih41x-b2020.dtsi new file mode 100644 index 000000000000..133e18143b1b --- /dev/null +++ b/arch/arm/boot/dts/stih41x-b2020.dtsi | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2013 STMicroelectronics (R&D) Limited. | ||
3 | * Author: Srinivas Kandagatla <srinivas.kandagatla@st.com> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * publishhed by the Free Software Foundation. | ||
8 | */ | ||
9 | / { | ||
10 | memory{ | ||
11 | device_type = "memory"; | ||
12 | reg = <0x40000000 0x80000000>; | ||
13 | }; | ||
14 | |||
15 | chosen { | ||
16 | bootargs = "console=ttyAS0,115200"; | ||
17 | linux,stdout-path = &sbc_serial1; | ||
18 | }; | ||
19 | |||
20 | aliases { | ||
21 | ttyAS0 = &sbc_serial1; | ||
22 | }; | ||
23 | soc { | ||
24 | sbc_serial1: serial@fe531000 { | ||
25 | status = "okay"; | ||
26 | }; | ||
27 | |||
28 | leds { | ||
29 | compatible = "gpio-leds"; | ||
30 | red { | ||
31 | #gpio-cells = <1>; | ||
32 | label = "Front Panel LED"; | ||
33 | gpios = <&PIO4 1>; | ||
34 | linux,default-trigger = "heartbeat"; | ||
35 | }; | ||
36 | green { | ||
37 | gpios = <&PIO4 7>; | ||
38 | default-state = "off"; | ||
39 | }; | ||
40 | }; | ||
41 | }; | ||
42 | }; | ||