public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-ti/master, v2
@ 2013-11-12 15:03 Tom Rini
  2013-11-12 15:55 ` Albert ARIBAUD
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2013-11-12 15:03 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 85b8c5c4bf80025de4632ae6c9a8a606e51508a4:

  Merge branch 'iu-boot/master' into 'u-boot-arm/master' (2013-11-09 22:59:47 +0100)

are available in the git repository at:


  git://git.denx.de/u-boot-ti.git master

for you to fetch changes up to 56eb3da43fab5990a4b7bc118b76c7cae2ceb140:

  arm, am335x: update for the siemens boards (2013-11-12 09:53:59 -0500)

----------------------------------------------------------------
Andrew Bradford (1):
      am335x_evm: Fix CONS_INDEX numbering

Heiko Schocher (3):
      bootcount: store bootcount var in environment
      arm, am33x: make RTC32K OSC enable configurable
      usb, g_dnl: make bcdDevice value configurable

Igor Grinberg (1):
      cm-t35: use gpio_led driver for status led

Matt Porter (1):
      boards.cfg: update email address for ti814x_evm maintainer

Samuel Egli (1):
      arm, am335x: update for the siemens boards

Tom Rini (2):
      am33xx: Make SoC bootcount driver have its own symbol
      omap730p2: Remove board

 README                                 |   19 ++
 arch/arm/cpu/armv7/am33xx/board.c      |    4 +
 board/compulab/cm_t35/Makefile         |    2 +-
 board/compulab/cm_t35/leds.c           |   33 ---
 board/siemens/common/factoryset.c      |   24 +-
 board/siemens/common/factoryset.h      |    2 +
 board/siemens/dxr2/board.c             |   11 +-
 board/siemens/dxr2/board.h             |    9 +-
 board/siemens/dxr2/mux.c               |  158 +++++++++++
 board/siemens/pxm2/board.c             |    3 +-
 board/siemens/rut/board.c              |   51 +++-
 board/ti/omap730p2/Makefile            |    9 -
 board/ti/omap730p2/README.omap730p2    |   91 -------
 board/ti/omap730p2/config.mk           |   25 --
 board/ti/omap730p2/flash.c             |  463 --------------------------------
 board/ti/omap730p2/lowlevel_init.S     |  379 --------------------------
 board/ti/omap730p2/omap730p2.c         |  255 ------------------
 boards.cfg                             |   15 +-
 doc/README.scrapyard                   |    5 +-
 drivers/bootcount/Makefile             |    3 +-
 drivers/bootcount/bootcount_davinci.c  |    4 +
 drivers/bootcount/bootcount_env.c      |   29 ++
 drivers/usb/gadget/g_dnl.c             |   23 +-
 include/configs/am335x_evm.h           |    4 +
 include/configs/cm_t35.h               |    9 +-
 include/configs/dxr2.h                 |   13 +-
 include/configs/h2_p2_dbg_board.h      |  120 ---------
 include/configs/omap730.h              |  246 -----------------
 include/configs/omap730p2.h            |  173 ------------
 include/configs/pxm2.h                 |    7 +-
 include/configs/rut.h                  |   10 +-
 include/configs/siemens-am33x-common.h |   69 +++--
 include/configs/ti_am335x_common.h     |    5 +-
 33 files changed, 404 insertions(+), 1869 deletions(-)
 delete mode 100644 board/compulab/cm_t35/leds.c
 delete mode 100644 board/ti/omap730p2/Makefile
 delete mode 100644 board/ti/omap730p2/README.omap730p2
 delete mode 100644 board/ti/omap730p2/config.mk
 delete mode 100644 board/ti/omap730p2/flash.c
 delete mode 100644 board/ti/omap730p2/lowlevel_init.S
 delete mode 100644 board/ti/omap730p2/omap730p2.c
 create mode 100644 drivers/bootcount/bootcount_env.c
 delete mode 100644 include/configs/h2_p2_dbg_board.h
 delete mode 100644 include/configs/omap730.h
 delete mode 100644 include/configs/omap730p2.h

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131112/f8f068a0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master, v2
  2013-11-12 15:03 [U-Boot] Please pull u-boot-ti/master, v2 Tom Rini
@ 2013-11-12 15:55 ` Albert ARIBAUD
  0 siblings, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2013-11-12 15:55 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 12 Nov 2013 10:03:51 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 85b8c5c4bf80025de4632ae6c9a8a606e51508a4:
> 
>   Merge branch 'iu-boot/master' into 'u-boot-arm/master' (2013-11-09 22:59:47 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 56eb3da43fab5990a4b7bc118b76c7cae2ceb140:
> 
>   arm, am335x: update for the siemens boards (2013-11-12 09:53:59 -0500)
> 
> ----------------------------------------------------------------
> Andrew Bradford (1):
>       am335x_evm: Fix CONS_INDEX numbering
> 
> Heiko Schocher (3):
>       bootcount: store bootcount var in environment
>       arm, am33x: make RTC32K OSC enable configurable
>       usb, g_dnl: make bcdDevice value configurable
> 
> Igor Grinberg (1):
>       cm-t35: use gpio_led driver for status led
> 
> Matt Porter (1):
>       boards.cfg: update email address for ti814x_evm maintainer
> 
> Samuel Egli (1):
>       arm, am335x: update for the siemens boards
> 
> Tom Rini (2):
>       am33xx: Make SoC bootcount driver have its own symbol
>       omap730p2: Remove board
> 
>  README                                 |   19 ++
>  arch/arm/cpu/armv7/am33xx/board.c      |    4 +
>  board/compulab/cm_t35/Makefile         |    2 +-
>  board/compulab/cm_t35/leds.c           |   33 ---
>  board/siemens/common/factoryset.c      |   24 +-
>  board/siemens/common/factoryset.h      |    2 +
>  board/siemens/dxr2/board.c             |   11 +-
>  board/siemens/dxr2/board.h             |    9 +-
>  board/siemens/dxr2/mux.c               |  158 +++++++++++
>  board/siemens/pxm2/board.c             |    3 +-
>  board/siemens/rut/board.c              |   51 +++-
>  board/ti/omap730p2/Makefile            |    9 -
>  board/ti/omap730p2/README.omap730p2    |   91 -------
>  board/ti/omap730p2/config.mk           |   25 --
>  board/ti/omap730p2/flash.c             |  463 --------------------------------
>  board/ti/omap730p2/lowlevel_init.S     |  379 --------------------------
>  board/ti/omap730p2/omap730p2.c         |  255 ------------------
>  boards.cfg                             |   15 +-
>  doc/README.scrapyard                   |    5 +-
>  drivers/bootcount/Makefile             |    3 +-
>  drivers/bootcount/bootcount_davinci.c  |    4 +
>  drivers/bootcount/bootcount_env.c      |   29 ++
>  drivers/usb/gadget/g_dnl.c             |   23 +-
>  include/configs/am335x_evm.h           |    4 +
>  include/configs/cm_t35.h               |    9 +-
>  include/configs/dxr2.h                 |   13 +-
>  include/configs/h2_p2_dbg_board.h      |  120 ---------
>  include/configs/omap730.h              |  246 -----------------
>  include/configs/omap730p2.h            |  173 ------------
>  include/configs/pxm2.h                 |    7 +-
>  include/configs/rut.h                  |   10 +-
>  include/configs/siemens-am33x-common.h |   69 +++--
>  include/configs/ti_am335x_common.h     |    5 +-
>  33 files changed, 404 insertions(+), 1869 deletions(-)
>  delete mode 100644 board/compulab/cm_t35/leds.c
>  delete mode 100644 board/ti/omap730p2/Makefile
>  delete mode 100644 board/ti/omap730p2/README.omap730p2
>  delete mode 100644 board/ti/omap730p2/config.mk
>  delete mode 100644 board/ti/omap730p2/flash.c
>  delete mode 100644 board/ti/omap730p2/lowlevel_init.S
>  delete mode 100644 board/ti/omap730p2/omap730p2.c
>  create mode 100644 drivers/bootcount/bootcount_env.c
>  delete mode 100644 include/configs/h2_p2_dbg_board.h
>  delete mode 100644 include/configs/omap730.h
>  delete mode 100644 include/configs/omap730p2.h
> 

Applied to u-boot-arm/master, thanks!

Note: number of boards failing due to CONFIG_SYS_HZ down from 11 to 8,
namely:

scb9328 palmtc balloon3 mini2440 zipitz2 palmld omap3_zoom2
mx1ads.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master, v2
@ 2013-12-06 12:15 Tom Rini
  2013-12-06 14:02 ` Albert ARIBAUD
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2013-12-06 12:15 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 4c54419737ffbfadd605263d97a1357bb03c04e8:

  socfpga: Adding Freeze Controller driver (2013-12-03 14:38:56 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-ti.git master

for you to fetch changes up to 18a02e8050b7af165efa72325753e7880bf5567c:

  AM3517 EVM: Enable ethernet (2013-12-06 07:04:26 -0500)

----------------------------------------------------------------
Hardik Patel (1):
      pandaboard: 1/1] ARM:OMAP4+: panda-es: Support Rev B3 Elpida DDR2 RAM

Ilya Ledvich (3):
      cm_t335: add cm_t335 board support
      cm_t335: add support for status LED
      cm_t335: add support for pca9555 i2c gpio extender

Lars Poeschel (1):
      pcm051: Support for revision 3

Lokesh Vutla (1):
      ARM: OMAP5+: Remove unnecessary EFUSE settings

Lubomir Popov (1):
      ARM: OMAP4: Fix bug in omap4470_volts struct

Michael Trimarchi (2):
      arm: omap3: Add uart4 omap3 adddress
      arm: omap3: Enable clocks for peripherals only if they are used

Oleg Kosheliev (2):
      ARMV7: OMAP4: Add struct for twl603x data
      ARMV7: OMAP4: Add twl6032 support

Roger Quadros (11):
      ahci: Error out with message on malloc() failure
      ahci: Fix cache align error messages
      ARM: OMAP5: Add Pipe3 PHY driver
      ARM: OMAP5: Add PRCM and Control information for SATA
      ARM: OMAP5: Add SATA platform glue
      ARM: omap5_uevm: Add SATA support
      ARM: DRA7xx: Add PRCM and Control information for SATA
      ARM: dra7_evm: Add SATA support
      usb: ehci-omap: Reset the USB Host OMAP module
      omap3_beagle: Don't use ulpi_reset
      omap4_panda: Don't use ulpi_reset

SRICHARAN R (3):
      ARM: DRA7: Add is_dra7xx cpu check definition
      ARM: DRA: EMIF: Change DDR3 settings to use hw leveling
      ARM: DRA7/OMAP5: EMIF: Add workaround for bug 0039

Stefan Roese (1):
      arm: am335x: Add DT (FDT) support to Siemens boards

Tom Rini (3):
      am33xx: Stop modifying certain EMIF4D registers
      am335x_evm: Update nandboot to use partitions and DT
      AM3517 EVM: Enable ethernet

Viktar Palstsiuk (1):
      davinci: fix Master Priority Registers location

Vladimir Koutny (1):
      am335x: cpsw: optimize cpsw_recv to increase network performance

 arch/arm/cpu/armv7/am33xx/ddr.c              |    7 -
 arch/arm/cpu/armv7/omap-common/Makefile      |    5 +
 arch/arm/cpu/armv7/omap-common/emif-common.c |  142 ++++++++++++----
 arch/arm/cpu/armv7/omap-common/pipe3-phy.c   |  231 ++++++++++++++++++++++++++
 arch/arm/cpu/armv7/omap-common/pipe3-phy.h   |   36 ++++
 arch/arm/cpu/armv7/omap-common/sata.c        |   75 +++++++++
 arch/arm/cpu/armv7/omap3/clock.c             |    2 -
 arch/arm/cpu/armv7/omap4/hw_data.c           |   12 +-
 arch/arm/cpu/armv7/omap4/sdram_elpida.c      |    9 +-
 arch/arm/cpu/armv7/omap5/hw_data.c           |    9 +-
 arch/arm/cpu/armv7/omap5/hwinit.c            |   18 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c         |    7 +
 arch/arm/cpu/armv7/omap5/sdram.c             |  214 +++++++++++++++++-------
 arch/arm/include/asm/arch-am33xx/ddr_defs.h  |   37 ++---
 arch/arm/include/asm/arch-davinci/hardware.h |    3 +-
 arch/arm/include/asm/arch-omap3/clock.h      |    2 -
 arch/arm/include/asm/arch-omap3/omap3.h      |    1 +
 arch/arm/include/asm/arch-omap4/sys_proto.h  |    4 +
 arch/arm/include/asm/arch-omap5/clock.h      |    3 +
 arch/arm/include/asm/arch-omap5/omap.h       |    4 +
 arch/arm/include/asm/arch-omap5/sata.h       |   48 ++++++
 arch/arm/include/asm/emif.h                  |   14 +-
 arch/arm/include/asm/omap_common.h           |   10 ++
 board/compulab/cm_t335/Makefile              |   10 ++
 board/compulab/cm_t335/cm_t335.c             |  162 ++++++++++++++++++
 board/compulab/cm_t335/mux.c                 |  117 +++++++++++++
 board/compulab/cm_t335/spl.c                 |  106 ++++++++++++
 board/compulab/cm_t335/u-boot.lds            |  101 +++++++++++
 board/isee/igep0033/board.c                  |    4 -
 board/phytec/pcm051/board.c                  |   53 ++++--
 board/siemens/dxr2/board.c                   |    4 -
 board/siemens/pxm2/board.c                   |    5 -
 board/siemens/rut/board.c                    |    5 -
 board/ti/am335x/board.c                      |   17 --
 board/ti/dra7xx/evm.c                        |    7 +
 board/ti/omap5_uevm/evm.c                    |    7 +
 board/ti/panda/panda.c                       |   60 +++++++
 board/ti/ti814x/evm.c                        |    5 -
 board/ti/ti816x/evm.c                        |   17 --
 boards.cfg                                   |    4 +-
 drivers/block/ahci.c                         |   18 +-
 drivers/net/cpsw.c                           |    2 +-
 drivers/power/twl6030.c                      |   77 +++++++--
 drivers/usb/host/ehci-omap.c                 |   57 +++++--
 include/configs/am335x_evm.h                 |    9 +-
 include/configs/am3517_evm.h                 |   14 +-
 include/configs/cm_t335.h                    |  182 ++++++++++++++++++++
 include/configs/dra7xx_evm.h                 |   11 ++
 include/configs/omap3_beagle.h               |    3 -
 include/configs/omap4_panda.h                |    3 -
 include/configs/omap5_uevm.h                 |   10 ++
 include/configs/siemens-am33x-common.h       |    5 +
 include/twl6030.h                            |   38 +++++
 53 files changed, 1745 insertions(+), 261 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/omap-common/pipe3-phy.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/pipe3-phy.h
 create mode 100644 arch/arm/cpu/armv7/omap-common/sata.c
 create mode 100644 arch/arm/include/asm/arch-omap5/sata.h
 create mode 100644 board/compulab/cm_t335/Makefile
 create mode 100644 board/compulab/cm_t335/cm_t335.c
 create mode 100644 board/compulab/cm_t335/mux.c
 create mode 100644 board/compulab/cm_t335/spl.c
 create mode 100644 board/compulab/cm_t335/u-boot.lds
 create mode 100644 include/configs/cm_t335.h

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131206/0e2f7a99/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master, v2
  2013-12-06 12:15 Tom Rini
@ 2013-12-06 14:02 ` Albert ARIBAUD
  0 siblings, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2013-12-06 14:02 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 6 Dec 2013 07:15:25 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 4c54419737ffbfadd605263d97a1357bb03c04e8:
> 
>   socfpga: Adding Freeze Controller driver (2013-12-03 14:38:56 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 18a02e8050b7af165efa72325753e7880bf5567c:
> 
>   AM3517 EVM: Enable ethernet (2013-12-06 07:04:26 -0500)
> 
> ----------------------------------------------------------------
> Hardik Patel (1):
>       pandaboard: 1/1] ARM:OMAP4+: panda-es: Support Rev B3 Elpida DDR2 RAM
> 
> Ilya Ledvich (3):
>       cm_t335: add cm_t335 board support
>       cm_t335: add support for status LED
>       cm_t335: add support for pca9555 i2c gpio extender
> 
> Lars Poeschel (1):
>       pcm051: Support for revision 3
> 
> Lokesh Vutla (1):
>       ARM: OMAP5+: Remove unnecessary EFUSE settings
> 
> Lubomir Popov (1):
>       ARM: OMAP4: Fix bug in omap4470_volts struct
> 
> Michael Trimarchi (2):
>       arm: omap3: Add uart4 omap3 adddress
>       arm: omap3: Enable clocks for peripherals only if they are used
> 
> Oleg Kosheliev (2):
>       ARMV7: OMAP4: Add struct for twl603x data
>       ARMV7: OMAP4: Add twl6032 support
> 
> Roger Quadros (11):
>       ahci: Error out with message on malloc() failure
>       ahci: Fix cache align error messages
>       ARM: OMAP5: Add Pipe3 PHY driver
>       ARM: OMAP5: Add PRCM and Control information for SATA
>       ARM: OMAP5: Add SATA platform glue
>       ARM: omap5_uevm: Add SATA support
>       ARM: DRA7xx: Add PRCM and Control information for SATA
>       ARM: dra7_evm: Add SATA support
>       usb: ehci-omap: Reset the USB Host OMAP module
>       omap3_beagle: Don't use ulpi_reset
>       omap4_panda: Don't use ulpi_reset
> 
> SRICHARAN R (3):
>       ARM: DRA7: Add is_dra7xx cpu check definition
>       ARM: DRA: EMIF: Change DDR3 settings to use hw leveling
>       ARM: DRA7/OMAP5: EMIF: Add workaround for bug 0039
> 
> Stefan Roese (1):
>       arm: am335x: Add DT (FDT) support to Siemens boards
> 
> Tom Rini (3):
>       am33xx: Stop modifying certain EMIF4D registers
>       am335x_evm: Update nandboot to use partitions and DT
>       AM3517 EVM: Enable ethernet
> 
> Viktar Palstsiuk (1):
>       davinci: fix Master Priority Registers location
> 
> Vladimir Koutny (1):
>       am335x: cpsw: optimize cpsw_recv to increase network performance
> 
>  arch/arm/cpu/armv7/am33xx/ddr.c              |    7 -
>  arch/arm/cpu/armv7/omap-common/Makefile      |    5 +
>  arch/arm/cpu/armv7/omap-common/emif-common.c |  142 ++++++++++++----
>  arch/arm/cpu/armv7/omap-common/pipe3-phy.c   |  231 ++++++++++++++++++++++++++
>  arch/arm/cpu/armv7/omap-common/pipe3-phy.h   |   36 ++++
>  arch/arm/cpu/armv7/omap-common/sata.c        |   75 +++++++++
>  arch/arm/cpu/armv7/omap3/clock.c             |    2 -
>  arch/arm/cpu/armv7/omap4/hw_data.c           |   12 +-
>  arch/arm/cpu/armv7/omap4/sdram_elpida.c      |    9 +-
>  arch/arm/cpu/armv7/omap5/hw_data.c           |    9 +-
>  arch/arm/cpu/armv7/omap5/hwinit.c            |   18 +-
>  arch/arm/cpu/armv7/omap5/prcm-regs.c         |    7 +
>  arch/arm/cpu/armv7/omap5/sdram.c             |  214 +++++++++++++++++-------
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h  |   37 ++---
>  arch/arm/include/asm/arch-davinci/hardware.h |    3 +-
>  arch/arm/include/asm/arch-omap3/clock.h      |    2 -
>  arch/arm/include/asm/arch-omap3/omap3.h      |    1 +
>  arch/arm/include/asm/arch-omap4/sys_proto.h  |    4 +
>  arch/arm/include/asm/arch-omap5/clock.h      |    3 +
>  arch/arm/include/asm/arch-omap5/omap.h       |    4 +
>  arch/arm/include/asm/arch-omap5/sata.h       |   48 ++++++
>  arch/arm/include/asm/emif.h                  |   14 +-
>  arch/arm/include/asm/omap_common.h           |   10 ++
>  board/compulab/cm_t335/Makefile              |   10 ++
>  board/compulab/cm_t335/cm_t335.c             |  162 ++++++++++++++++++
>  board/compulab/cm_t335/mux.c                 |  117 +++++++++++++
>  board/compulab/cm_t335/spl.c                 |  106 ++++++++++++
>  board/compulab/cm_t335/u-boot.lds            |  101 +++++++++++
>  board/isee/igep0033/board.c                  |    4 -
>  board/phytec/pcm051/board.c                  |   53 ++++--
>  board/siemens/dxr2/board.c                   |    4 -
>  board/siemens/pxm2/board.c                   |    5 -
>  board/siemens/rut/board.c                    |    5 -
>  board/ti/am335x/board.c                      |   17 --
>  board/ti/dra7xx/evm.c                        |    7 +
>  board/ti/omap5_uevm/evm.c                    |    7 +
>  board/ti/panda/panda.c                       |   60 +++++++
>  board/ti/ti814x/evm.c                        |    5 -
>  board/ti/ti816x/evm.c                        |   17 --
>  boards.cfg                                   |    4 +-
>  drivers/block/ahci.c                         |   18 +-
>  drivers/net/cpsw.c                           |    2 +-
>  drivers/power/twl6030.c                      |   77 +++++++--
>  drivers/usb/host/ehci-omap.c                 |   57 +++++--
>  include/configs/am335x_evm.h                 |    9 +-
>  include/configs/am3517_evm.h                 |   14 +-
>  include/configs/cm_t335.h                    |  182 ++++++++++++++++++++
>  include/configs/dra7xx_evm.h                 |   11 ++
>  include/configs/omap3_beagle.h               |    3 -
>  include/configs/omap4_panda.h                |    3 -
>  include/configs/omap5_uevm.h                 |   10 ++
>  include/configs/siemens-am33x-common.h       |    5 +
>  include/twl6030.h                            |   38 +++++
>  53 files changed, 1745 insertions(+), 261 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/omap-common/pipe3-phy.c
>  create mode 100644 arch/arm/cpu/armv7/omap-common/pipe3-phy.h
>  create mode 100644 arch/arm/cpu/armv7/omap-common/sata.c
>  create mode 100644 arch/arm/include/asm/arch-omap5/sata.h
>  create mode 100644 board/compulab/cm_t335/Makefile
>  create mode 100644 board/compulab/cm_t335/cm_t335.c
>  create mode 100644 board/compulab/cm_t335/mux.c
>  create mode 100644 board/compulab/cm_t335/spl.c
>  create mode 100644 board/compulab/cm_t335/u-boot.lds
>  create mode 100644 include/configs/cm_t335.h
> 

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master, v2
@ 2013-12-19 17:04 Tom Rini
  2013-12-19 23:13 ` Albert ARIBAUD
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2013-12-19 17:04 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit d627eefcd5e72db00889718ca9ee1dcb4d026fc9:

  Merge remote-tracking branch 'u-boot-pxa/master' into 'u-boot-arm/master' (2013-12-18 22:19:02 +0100)

are available in the git repository at:


  git://git.denx.de/u-boot-ti.git master

for you to fetch changes up to 2931fa4db349c97f882ffda42e901208654b5ca9:

  ARM: AM43xx: Add Maintainer (2013-12-18 21:14:45 -0500)

Changes in v2:
- Dropped Dan's patch as he's right and it depends on another series we
  aren't quite ready for.
- Reworked Lokesh's ioregs related patch to cover cm_t335 now as well.

----------------------------------------------------------------
Lokesh Vutla (12):
      ARM: AM43xx: Update the base addresses of modules
      ARM: AM43xx: Adapt to ti_armv7_common.h config file
      ARM: AM43xx: Add L2 Support
      ARM: AM43xx: Add extra ENV settings
      ARM: AM43xx: Select clk source for Timer2
      ARM: AM43xx: Update Current Booting devices list
      ARM: AM43xx: mux: Update mux data
      ARM: AM43xx: clocks: Update DPLL details
      ARM: AM33xx+: Update ioregs to pass different values
      ARM: AM43xx: EPOS_EVM: Add support for LPDDR2
      ARM: AM43xx: GP_EVM: Add support for DDR3
      ARM: AM43xx: Add Maintainer

Sekhar Nori (2):
      ARM: AM43XX: board: add support for reading onboard EEPROM
      ARM: AM43XX: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support

Stefan Roese (1):
      arm: omap3: Fix beagleboard SPL boot hangup (GPIO clocks not enabled)

 arch/arm/cpu/armv7/am33xx/clock.c                  |   12 +-
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c           |   15 +
 arch/arm/cpu/armv7/am33xx/clock_am43xx.c           |   12 +-
 arch/arm/cpu/armv7/am33xx/ddr.c                    |  146 +++++++-
 arch/arm/cpu/armv7/am33xx/emif4.c                  |   25 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |   14 -
 arch/arm/include/asm/arch-am33xx/clock.h           |    7 +-
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h   |    3 +
 arch/arm/include/asm/arch-am33xx/cpu.h             |   24 +-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   41 ++-
 arch/arm/include/asm/arch-am33xx/gpio.h            |   12 +
 arch/arm/include/asm/arch-am33xx/hardware.h        |    7 -
 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |    2 +
 arch/arm/include/asm/arch-am33xx/hardware_am43xx.h |   16 +
 arch/arm/include/asm/arch-am33xx/mux_am43xx.h      |   45 +++
 arch/arm/include/asm/arch-am33xx/omap.h            |    4 +-
 arch/arm/include/asm/arch-am33xx/spl.h             |   13 +-
 arch/arm/include/asm/emif.h                        |   26 ++
 board/compulab/cm_t335/spl.c                       |   10 +-
 board/isee/igep0033/board.c                        |   10 +-
 board/phytec/pcm051/board.c                        |   20 +-
 board/siemens/dxr2/board.c                         |   12 +-
 board/siemens/pxm2/board.c                         |   10 +-
 board/siemens/rut/board.c                          |   10 +-
 board/ti/am335x/board.c                            |   40 ++-
 board/ti/am43xx/board.c                            |  355 +++++++++++++++++++-
 board/ti/am43xx/board.h                            |   36 ++
 board/ti/am43xx/mux.c                              |   35 +-
 board/ti/ti814x/evm.c                              |    4 +-
 board/ti/ti816x/evm.c                              |   12 +-
 boards.cfg                                         |    2 +-
 include/configs/am43xx_evm.h                       |  204 +++++------
 include/configs/omap3_beagle.h                     |    3 +
 33 files changed, 1005 insertions(+), 182 deletions(-)

Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131219/ab9ae2d2/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master, v2
  2013-12-19 17:04 Tom Rini
@ 2013-12-19 23:13 ` Albert ARIBAUD
  0 siblings, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2013-12-19 23:13 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 19 Dec 2013 12:04:19 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit d627eefcd5e72db00889718ca9ee1dcb4d026fc9:
> 
>   Merge remote-tracking branch 'u-boot-pxa/master' into 'u-boot-arm/master' (2013-12-18 22:19:02 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 2931fa4db349c97f882ffda42e901208654b5ca9:
> 
>   ARM: AM43xx: Add Maintainer (2013-12-18 21:14:45 -0500)
> 
> Changes in v2:
> - Dropped Dan's patch as he's right and it depends on another series we
>   aren't quite ready for.
> - Reworked Lokesh's ioregs related patch to cover cm_t335 now as well.
> 
> ----------------------------------------------------------------
> Lokesh Vutla (12):
>       ARM: AM43xx: Update the base addresses of modules
>       ARM: AM43xx: Adapt to ti_armv7_common.h config file
>       ARM: AM43xx: Add L2 Support
>       ARM: AM43xx: Add extra ENV settings
>       ARM: AM43xx: Select clk source for Timer2
>       ARM: AM43xx: Update Current Booting devices list
>       ARM: AM43xx: mux: Update mux data
>       ARM: AM43xx: clocks: Update DPLL details
>       ARM: AM33xx+: Update ioregs to pass different values
>       ARM: AM43xx: EPOS_EVM: Add support for LPDDR2
>       ARM: AM43xx: GP_EVM: Add support for DDR3
>       ARM: AM43xx: Add Maintainer
> 
> Sekhar Nori (2):
>       ARM: AM43XX: board: add support for reading onboard EEPROM
>       ARM: AM43XX: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support
> 
> Stefan Roese (1):
>       arm: omap3: Fix beagleboard SPL boot hangup (GPIO clocks not enabled)
> 
>  arch/arm/cpu/armv7/am33xx/clock.c                  |   12 +-
>  arch/arm/cpu/armv7/am33xx/clock_am33xx.c           |   15 +
>  arch/arm/cpu/armv7/am33xx/clock_am43xx.c           |   12 +-
>  arch/arm/cpu/armv7/am33xx/ddr.c                    |  146 +++++++-
>  arch/arm/cpu/armv7/am33xx/emif4.c                  |   25 +-
>  arch/arm/cpu/armv7/omap-common/emif-common.c       |   14 -
>  arch/arm/include/asm/arch-am33xx/clock.h           |    7 +-
>  arch/arm/include/asm/arch-am33xx/clocks_am33xx.h   |    3 +
>  arch/arm/include/asm/arch-am33xx/cpu.h             |   24 +-
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   41 ++-
>  arch/arm/include/asm/arch-am33xx/gpio.h            |   12 +
>  arch/arm/include/asm/arch-am33xx/hardware.h        |    7 -
>  arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |    2 +
>  arch/arm/include/asm/arch-am33xx/hardware_am43xx.h |   16 +
>  arch/arm/include/asm/arch-am33xx/mux_am43xx.h      |   45 +++
>  arch/arm/include/asm/arch-am33xx/omap.h            |    4 +-
>  arch/arm/include/asm/arch-am33xx/spl.h             |   13 +-
>  arch/arm/include/asm/emif.h                        |   26 ++
>  board/compulab/cm_t335/spl.c                       |   10 +-
>  board/isee/igep0033/board.c                        |   10 +-
>  board/phytec/pcm051/board.c                        |   20 +-
>  board/siemens/dxr2/board.c                         |   12 +-
>  board/siemens/pxm2/board.c                         |   10 +-
>  board/siemens/rut/board.c                          |   10 +-
>  board/ti/am335x/board.c                            |   40 ++-
>  board/ti/am43xx/board.c                            |  355 +++++++++++++++++++-
>  board/ti/am43xx/board.h                            |   36 ++
>  board/ti/am43xx/mux.c                              |   35 +-
>  board/ti/ti814x/evm.c                              |    4 +-
>  board/ti/ti816x/evm.c                              |   12 +-
>  boards.cfg                                         |    2 +-
>  include/configs/am43xx_evm.h                       |  204 +++++------
>  include/configs/omap3_beagle.h                     |    3 +
>  33 files changed, 1005 insertions(+), 182 deletions(-)
> 
> Thanks!
> 

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

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

end of thread, other threads:[~2013-12-19 23:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-12 15:03 [U-Boot] Please pull u-boot-ti/master, v2 Tom Rini
2013-11-12 15:55 ` Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2013-12-06 12:15 Tom Rini
2013-12-06 14:02 ` Albert ARIBAUD
2013-12-19 17:04 Tom Rini
2013-12-19 23:13 ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox