[U-Boot] [PATCH v4 1/9] arm: Add support for STMicroelectronics STiH410 soc

patrice.chotard at st.com patrice.chotard at st.com
Tue Feb 14 14:38:49 UTC 2017


From: Patrice Chotard <patrice.chotard at st.com>

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 at st.com>
---

v3: _ add top level MAINTAINERS entry

 MAINTAINERS               |  6 ++++++
 arch/arm/Kconfig          |  9 +++++++++
 arch/arm/mach-sti/Kconfig | 29 +++++++++++++++++++++++++++++
 3 files changed, 44 insertions(+)
 create mode 100644 arch/arm/mach-sti/Kconfig

diff --git a/MAINTAINERS b/MAINTAINERS
index eaa2c3b..19c0eed 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -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 at st.com>
+S:	Maintained
+F:	arch/arm/mach-sti/
+F:	arch/arm/include/asm/arch-sti*/
+
 ARM SUNXI
 M:	Jagan Teki <jagan at openedev.com>
 M:	Maxime Ripard <maxime.ripard at free-electrons.com>
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 0229800..4aa5eb9 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -982,6 +982,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
@@ -1060,6 +1067,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
index 0000000..6c65d86
--- /dev/null
+++ b/arch/arm/mach-sti/Kconfig
@@ -0,0 +1,29 @@
+if ARCH_STI
+
+config SYS_SOC
+	default "stih410"
+
+choice
+	prompt "STiH410 board select"
+
+config TARGET_STIH410_B2260
+	bool "96Boards STiH410-B2260"
+	help
+	  Support for 96Board STiH410-B2260 based on STMicrolectronics
+	  STiH410 soc. This board complies with 96Board Open Platform
+	  Specifications. Features:
+	  - 1GB DDR
+	  - On-Board USB combo WiFi/Bluetooth RTL8723BU
+	    with PCB soldered antenna
+	  - Ethernet 1000-BaseT
+	  - Sata
+	  - HDMI
+	  - 2 x USB2 type A
+	  - micro USB2 type AB
+	  - SD card slot
+	  - High speed connector (SD/I2C/USB interfaces)
+	  - Slow speed connector (UART/I2C/GPIO/SPI/PCM interfaces)
+
+endchoice
+
+endif
-- 
1.9.1



More information about the U-Boot mailing list