diff options
author | Maxime Coquelin <maxime.coquelin@st.com> | 2014-02-27 07:17:27 -0500 |
---|---|---|
committer | Maxime Coquelin <maxime.coquelin@st.com> | 2014-05-17 04:22:30 -0400 |
commit | c6594025c0f8cea2ba089444a359495bd0ea3e6f (patch) | |
tree | 4e9e9d33765a9193f5bf98b84c43fc139340b8c7 | |
parent | c9eaa447e77efe77b7fa4c953bd62de8297fd6c5 (diff) |
ARM: STi: Add STiH407 SoC support
This patch adds support to STiH407 SoC.
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com>
-rw-r--r-- | Documentation/arm/sti/stih407-overview.txt | 18 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/arm/sti.txt | 15 | ||||
-rw-r--r-- | arch/arm/mach-sti/board-dt.c | 1 |
3 files changed, 34 insertions, 0 deletions
diff --git a/Documentation/arm/sti/stih407-overview.txt b/Documentation/arm/sti/stih407-overview.txt new file mode 100644 index 000000000000..3343f32f58bc --- /dev/null +++ b/Documentation/arm/sti/stih407-overview.txt | |||
@@ -0,0 +1,18 @@ | |||
1 | STiH407 Overview | ||
2 | ================ | ||
3 | |||
4 | Introduction | ||
5 | ------------ | ||
6 | |||
7 | The STiH407 is the new generation of SoC for Multi-HD, AVC set-top boxes | ||
8 | and server/connected client application for satellite, cable, terrestrial | ||
9 | and IP-STB markets. | ||
10 | |||
11 | Features | ||
12 | - ARM Cortex-A9 1.5 GHz dual core CPU (28nm) | ||
13 | - SATA2, USB 3.0, PCIe, Gbit Ethernet | ||
14 | |||
15 | Document Author | ||
16 | --------------- | ||
17 | |||
18 | Maxime Coquelin <maxime.coquelin@st.com>, (c) 2014 ST Microelectronics | ||
diff --git a/Documentation/devicetree/bindings/arm/sti.txt b/Documentation/devicetree/bindings/arm/sti.txt new file mode 100644 index 000000000000..92f16c78bb69 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/sti.txt | |||
@@ -0,0 +1,15 @@ | |||
1 | ST STi Platforms Device Tree Bindings | ||
2 | --------------------------------------- | ||
3 | |||
4 | Boards with the ST STiH415 SoC shall have the following properties: | ||
5 | Required root node property: | ||
6 | compatible = "st,stih415"; | ||
7 | |||
8 | Boards with the ST STiH416 SoC shall have the following properties: | ||
9 | Required root node property: | ||
10 | compatible = "st,stih416"; | ||
11 | |||
12 | Boards with the ST STiH407 SoC shall have the following properties: | ||
13 | Required root node property: | ||
14 | compatible = "st,stih407"; | ||
15 | |||
diff --git a/arch/arm/mach-sti/board-dt.c b/arch/arm/mach-sti/board-dt.c index 1217fb598cfd..df731f2322fa 100644 --- a/arch/arm/mach-sti/board-dt.c +++ b/arch/arm/mach-sti/board-dt.c | |||
@@ -36,6 +36,7 @@ static void __init stih41x_machine_init(void) | |||
36 | static const char *stih41x_dt_match[] __initdata = { | 36 | static const char *stih41x_dt_match[] __initdata = { |
37 | "st,stih415", | 37 | "st,stih415", |
38 | "st,stih416", | 38 | "st,stih416", |
39 | "st,stih407", | ||
39 | NULL | 40 | NULL |
40 | }; | 41 | }; |
41 | 42 | ||