Commit 65ebcc11 authored by Srinivas Kandagatla's avatar Srinivas Kandagatla Committed by Olof Johansson
Browse files

ARM: sti: Add STiH415 SOC support



The STiH415 is the next generation of HD, AVC set-top box processors for
satellite, cable, terrestrial and IP-STB markets. It is an ARM Cortex-A9
1.0 GHz, dual-core CPU.

Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@st.com>
CC: Stephen Gallimore <stephen.gallimore@st.com>
CC: Stuart Menefy <stuart.menefy@st.com>
CC: Arnd Bergmann <arnd@arndb.de>
CC: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 317ddd25
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
			STi ARM Linux Overview
			==========================

Introduction
------------

  The ST Microelectronics Multimedia and Application Processors range of
  CortexA9 System-on-Chip are supported by the 'STi' platform of
  ARM Linux. Currently STiH415, STiH416 SOCs are supported with both
  B2000 and B2020 Reference boards.


  configuration
  -------------

  A generic configuration is provided for both STiH415/416, and can be used as the
  default by
	make stih41x_defconfig

  Layout
  ------
  All the files for multiple machine families (STiH415, STiH416, and STiG125)
  are located in the platform code contained in arch/arm/mach-sti

  There is a generic board board-dt.c in the mach folder which support
  Flattened Device Tree, which means, It works with any compatible board with
  Device Trees.


  Document Author
  ---------------

  Srinivas Kandagatla <srinivas.kandagatla@st.com>, (c) 2013 ST Microelectronics
+12 −0
Original line number Diff line number Diff line
			STiH415 Overview
			================

Introduction
------------

    The STiH415 is the next generation of HD, AVC set-top box processors
    for satellite, cable, terrestrial and IP-STB markets.

    Features
    - ARM Cortex-A9 1.0 GHz, dual-core CPU
    - SATA2x2,USB 2.0x3, PCIe, Gbit Ethernet MACx2
+9 −0
Original line number Diff line number Diff line
@@ -1201,6 +1201,15 @@ M: Dinh Nguyen <dinguyen@altera.com>
S:	Maintained
F:	drivers/clk/socfpga/

ARM/STI ARCHITECTURE
M:	Srinivas Kandagatla <srinivas.kandagatla@st.com>
M:	Stuart Menefy <stuart.menefy@st.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
L:	kernel@stlinux.com
W:	http://www.stlinux.com
S:	Maintained
F:	arch/arm/mach-sti/

ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
+2 −0
Original line number Diff line number Diff line
@@ -989,6 +989,8 @@ source "arch/arm/mach-socfpga/Kconfig"

source "arch/arm/mach-spear/Kconfig"

source "arch/arm/mach-sti/Kconfig"

source "arch/arm/mach-s3c24xx/Kconfig"

if ARCH_S3C64XX
+1 −0
Original line number Diff line number Diff line
@@ -191,6 +191,7 @@ machine-$(CONFIG_ARCH_W90X900) += w90x900
machine-$(CONFIG_FOOTBRIDGE)		+= footbridge
machine-$(CONFIG_ARCH_SOCFPGA)		+= socfpga
machine-$(CONFIG_PLAT_SPEAR)		+= spear
machine-$(CONFIG_ARCH_STI)		+= sti
machine-$(CONFIG_ARCH_VIRT)		+= virt
machine-$(CONFIG_ARCH_ZYNQ)		+= zynq
machine-$(CONFIG_ARCH_SUNXI)		+= sunxi
Loading