]> git.sur5r.net Git - u-boot/commitdiff
arm: Add support for STMicroelectronics STiH410 soc
authorPatrice Chotard <patrice.chotard@st.com>
Tue, 21 Feb 2017 12:37:04 +0000 (13:37 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 15 Mar 2017 00:40:18 +0000 (20:40 -0400)
The STiH410 is an advanced multi-HD AVC processor with 3D
graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU
part of the STiH407 family.

It has wide connectivity including USB 3.0, PCI-e, SATA
and gigabit ethernet.

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
MAINTAINERS
arch/arm/Kconfig
arch/arm/mach-sti/Kconfig [new file with mode: 0644]

index eaa2c3bbb860444a66a420174392b17d90596c3e..19c0eed55bfffce2046faa1eec3af1ec1e08da98 100644 (file)
@@ -165,6 +165,12 @@ S: Maintained
 F:     arch/arm/cpu/armv7/stv0991/
 F:     arch/arm/include/asm/arch-stv0991/
 
+ARM STI
+M:     Patrice Chotard <patrice.chotard@st.com>
+S:     Maintained
+F:     arch/arm/mach-sti/
+F:     arch/arm/include/asm/arch-sti*/
+
 ARM SUNXI
 M:     Jagan Teki <jagan@openedev.com>
 M:     Maxime Ripard <maxime.ripard@free-electrons.com>
index 6f4c8ac868405a831ab35b1081d5ef5714e902a9..c9a2968cc71cbcd8524dbd3053a46b06547956dc 100644 (file)
@@ -1093,6 +1093,13 @@ config STM32
        select DM
        select DM_SERIAL
 
+config ARCH_STI
+       bool "Support STMicrolectronics SoCs"
+       select CPU_V7
+       help
+         Support for STMicroelectronics STiH407/10 SoC family.
+         This SoC is used on Linaro 96Board STiH410-B2260
+
 config ARCH_ROCKCHIP
        bool "Support Rockchip SoCs"
        select OF_CONTROL
@@ -1171,6 +1178,8 @@ source "arch/arm/mach-snapdragon/Kconfig"
 
 source "arch/arm/mach-socfpga/Kconfig"
 
+source "arch/arm/mach-sti/Kconfig"
+
 source "arch/arm/mach-stm32/Kconfig"
 
 source "arch/arm/mach-tegra/Kconfig"
diff --git a/arch/arm/mach-sti/Kconfig b/arch/arm/mach-sti/Kconfig
new file mode 100644 (file)
index 0000000..87c04b2
--- /dev/null
@@ -0,0 +1,6 @@
+if ARCH_STI
+
+config SYS_SOC
+       default "stih410"
+
+endif