All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/7] arm: dra7xx: Add support for DRA7XX family Socs
@ 2013-02-13  7:29 Lokesh Vutla
  2013-02-13  7:29 ` [U-Boot] [PATCH 1/7] arm: dra7xx: Add silicon id support for DRA752 soc Lokesh Vutla
                   ` (6 more replies)
  0 siblings, 7 replies; 21+ messages in thread
From: Lokesh Vutla @ 2013-02-13  7:29 UTC (permalink / raw)
  To: u-boot

DRA7XX is a high-performance, infotainment application device,
based on enhanced OMAP architecture integrated on a 28-nm technology.
This series adds support for DRA7XX family Socs and the data for
DRA752 ES1.0 soc.

This is on top of OMAP5 ES2.0 series
http://www.mail-archive.com/u-boot at lists.denx.de/msg105592.html

This series against OMAP5 ES2.0 series is available here:
 git://gitorious.org/u-boot-shared/u-boot.git omap5_es2

Tested on DRA pre silicon platform, OMAP5430 ES2.0,
OMAP4430 ES2.1, OMAP4460 panda.
MAKEALL for all armv7 board has been verified.

Lokesh Vutla (7):
  arm: dra7xx: Add silicon id support for DRA752 soc
  arm: dra7xx: clock: Add the prcm changes
  arm: dra7xx: clock: Add the dplls data
  arm: dra7xx: Add control module changes for dra7xx socs
  arm: dra7xx: Add DDR related data for DRA752 ES1.0
  arm: dra7xx: Add board files for dra7xx socs
  arm: dra7xx: Add dra7xx_evm build support

 arch/arm/cpu/armv7/omap-common/clocks-common.c  |   26 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c    |    2 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c  |    9 +-
 arch/arm/cpu/armv7/omap4/hw_data.c              |   11 +-
 arch/arm/cpu/armv7/omap4/prcm-regs.c            |    2 +-
 arch/arm/cpu/armv7/omap4/sdram_elpida.c         |   18 +-
 arch/arm/cpu/armv7/omap5/hw_data.c              |   76 ++++-
 arch/arm/cpu/armv7/omap5/hwinit.c               |    3 +
 arch/arm/cpu/armv7/omap5/prcm-regs.c            |  290 ++++++++++++++++++-
 arch/arm/cpu/armv7/omap5/sdram.c                |   26 +-
 arch/arm/include/asm/arch-omap5/cpu.h           |    4 +
 arch/arm/include/asm/arch-omap5/mux_dra7xx.h    |  344 +++++++++++++++++++++++
 arch/arm/include/asm/arch-omap5/mux_omap5.h     |    8 -
 arch/arm/include/asm/arch-omap5/omap.h          |   10 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h     |    6 +-
 arch/arm/include/asm/emif.h                     |    1 +
 arch/arm/include/asm/omap_common.h              |   31 +-
 board/ti/dra7xx/Makefile                        |   49 ++++
 board/ti/dra7xx/evm.c                           |  103 +++++++
 board/ti/dra7xx/mux_data.h                      |   47 ++++
 boards.cfg                                      |    1 +
 include/configs/dra7xx_evm.h                    |   40 +++
 include/configs/{omap5_evm.h => omap5_common.h} |   20 +-
 include/configs/omap5_evm.h                     |  240 +---------------
 24 files changed, 1087 insertions(+), 280 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap5/mux_dra7xx.h
 create mode 100644 board/ti/dra7xx/Makefile
 create mode 100644 board/ti/dra7xx/evm.c
 create mode 100644 board/ti/dra7xx/mux_data.h
 create mode 100644 include/configs/dra7xx_evm.h
 copy include/configs/{omap5_evm.h => omap5_common.h} (95%)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2013-03-12  3:47 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-13  7:29 [U-Boot] [PATCH 0/7] arm: dra7xx: Add support for DRA7XX family Socs Lokesh Vutla
2013-02-13  7:29 ` [U-Boot] [PATCH 1/7] arm: dra7xx: Add silicon id support for DRA752 soc Lokesh Vutla
2013-02-15 16:34   ` Tom Rini
2013-02-13  7:29 ` [U-Boot] [PATCH 2/7] arm: dra7xx: clock: Add the prcm changes Lokesh Vutla
2013-02-15 16:34   ` Tom Rini
2013-02-18  9:33   ` [U-Boot] [PATCH V2 " Lokesh Vutla
2013-02-13  7:29 ` [U-Boot] [PATCH 3/7] arm: dra7xx: clock: Add the dplls data Lokesh Vutla
2013-02-15 16:34   ` Tom Rini
2013-02-13  7:29 ` [U-Boot] [PATCH 4/7] arm: dra7xx: Add control module changes Lokesh Vutla
2013-02-15 16:34   ` Tom Rini
2013-02-13  7:29 ` [U-Boot] [PATCH 5/7] arm: dra7xx: Add DDR related data for DRA752 ES1.0 Lokesh Vutla
2013-02-15 16:36   ` Tom Rini
2013-02-13  7:29 ` [U-Boot] [PATCH 6/7] arm: dra7xx: Add board files for DRA7XX socs Lokesh Vutla
2013-02-15 16:36   ` Tom Rini
2013-03-11 18:35   ` [U-Boot] [U-Boot, " Tom Rini
2013-03-12  3:42     ` Lokesh Vutla
2013-03-12  3:47     ` Sricharan R
2013-02-13  7:29 ` [U-Boot] [PATCH 7/7] arm: dra7xx: Add dra7xx_evm build support Lokesh Vutla
2013-02-15 16:36   ` Tom Rini
2013-02-18  4:14     ` Lokesh Vutla
2013-02-18  9:34   ` [U-Boot] [PATCH V2 " Lokesh Vutla

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.