All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-ti/master
@ 2012-01-13 19:33 Tom Rini
  2012-01-16  7:39 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-01-13 19:33 UTC (permalink / raw)
  To: u-boot

Hi Albert,

The following changes since commit 10a4fa9e22b9677819b3901a87eec05875b346ad:
  Aneesh V (1):
        omap4: fix boot issue on ES2.0 Panda

are available in the git repository at:

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

Andreas M?ller (7):
      drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts
      board/overo/overo.c: replace printf with one argument by puts
      include/configs/omap3_overo.h: several cleanups
      drivers/i2c/omap24xx_i2c.c: move all local variables to SRAM
      OMAP SPL: call timer_init in s_init to make udelay work earlier
      omap_rev_string: output to stdout
      overo: add SPL support

Chandan Nath (5):
      ARM:AM33XX: Replace CONFIG_AM335X with CONFIG_AM33XX
      ARM:AM33XX: Fix ddr and timer register offset
      ARM:AM33XX: Fixing AM335X config parameters
      ARM:AM33XX: Add mmc/sd support
      ARM:AM33XX: Add SPL support for AM335X EVM

Nikita Kiryanov (6):
      cm-t35: cleanup the config file
      cm-t35: various cleanups
      cm-t35: add EEPROM module and pass Linux a serial number
      omap3: make get_board_rev() function weak
      cm-t35: pass correct revision information to Linux
      cm-t35: use the new EEPROM module to read the MAC address

 Makefile                                           |    2 +-
 arch/arm/cpu/armv7/am33xx/Makefile                 |    2 -
 arch/arm/cpu/armv7/am33xx/board.c                  |   66 +++++++-
 arch/arm/cpu/armv7/am33xx/clock.c                  |    8 +
 arch/arm/cpu/armv7/am33xx/config.mk                |   18 ++
 arch/arm/cpu/armv7/am33xx/emif4.c                  |    2 +-
 arch/arm/cpu/armv7/am33xx/lowlevel_init.S          |   72 ---------
 arch/arm/cpu/armv7/omap-common/Makefile            |    4 +
 arch/arm/cpu/armv7/omap-common/boot-common.c       |   49 ++++++
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |   38 +----
 arch/arm/cpu/armv7/omap-common/spl.c               |   14 +--
 arch/arm/cpu/armv7/omap3/board.c                   |    2 +
 arch/arm/cpu/armv7/omap3/sys_info.c                |    3 +-
 .../arm/include/asm/arch-am33xx}/common_def.h      |    4 +-
 arch/arm/include/asm/arch-am33xx/cpu.h             |   44 +++---
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    6 +-
 arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |  164 ++++++++++++++++++++
 arch/arm/include/asm/arch-am33xx/omap.h            |   59 +++++++
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    1 +
 arch/arm/include/asm/arch-omap3/mem.h              |   26 +++
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    2 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    2 +-
 arch/arm/include/asm/omap_common.h                 |    7 +-
 board/cm_t35/Makefile                              |    4 +-
 board/cm_t35/cm_t35.c                              |   27 ++-
 board/cm_t35/eeprom.c                              |  124 +++++++++++++++
 board/cm_t35/eeprom.h                              |   33 ++++
 board/overo/config.mk                              |   28 ----
 board/overo/overo.c                                |   79 +++++++++-
 board/overo/overo.h                                |    5 +
 board/ti/am335x/evm.c                              |    2 +-
 board/ti/am335x/mux.c                              |   23 +++-
 drivers/i2c/omap24xx_i2c.c                         |   25 ++--
 include/configs/am335x_evm.h                       |   62 ++++++--
 include/configs/cm_t35.h                           |   81 +++++-----
 include/configs/omap3_overo.h                      |  118 ++++++++++----
 spl/Makefile                                       |   13 +-
 37 files changed, 909 insertions(+), 310 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/am33xx/config.mk
 delete mode 100644 arch/arm/cpu/armv7/am33xx/lowlevel_init.S
 create mode 100644 arch/arm/cpu/armv7/omap-common/boot-common.c
 rename {board/ti/am335x => arch/arm/include/asm/arch-am33xx}/common_def.h (81%)
 create mode 100644 arch/arm/include/asm/arch-am33xx/mmc_host_def.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/omap.h
 create mode 100644 board/cm_t35/eeprom.c
 create mode 100644 board/cm_t35/eeprom.h
 delete mode 100644 board/overo/config.mk

Thanks!

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-01-13 19:33 [U-Boot] Please pull u-boot-ti/master Tom Rini
@ 2012-01-16  7:39 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-01-16  7:39 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 13/01/2012 20:33, Tom Rini a ?crit :
> Hi Albert,
>
> The following changes since commit 10a4fa9e22b9677819b3901a87eec05875b346ad:
>    Aneesh V (1):
>          omap4: fix boot issue on ES2.0 Panda
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Andreas M?ller (7):
>        drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts
>        board/overo/overo.c: replace printf with one argument by puts
>        include/configs/omap3_overo.h: several cleanups
>        drivers/i2c/omap24xx_i2c.c: move all local variables to SRAM
>        OMAP SPL: call timer_init in s_init to make udelay work earlier
>        omap_rev_string: output to stdout
>        overo: add SPL support
>
> Chandan Nath (5):
>        ARM:AM33XX: Replace CONFIG_AM335X with CONFIG_AM33XX
>        ARM:AM33XX: Fix ddr and timer register offset
>        ARM:AM33XX: Fixing AM335X config parameters
>        ARM:AM33XX: Add mmc/sd support
>        ARM:AM33XX: Add SPL support for AM335X EVM
>
> Nikita Kiryanov (6):
>        cm-t35: cleanup the config file
>        cm-t35: various cleanups
>        cm-t35: add EEPROM module and pass Linux a serial number
>        omap3: make get_board_rev() function weak
>        cm-t35: pass correct revision information to Linux
>        cm-t35: use the new EEPROM module to read the MAC address
>
>   Makefile                                           |    2 +-
>   arch/arm/cpu/armv7/am33xx/Makefile                 |    2 -
>   arch/arm/cpu/armv7/am33xx/board.c                  |   66 +++++++-
>   arch/arm/cpu/armv7/am33xx/clock.c                  |    8 +
>   arch/arm/cpu/armv7/am33xx/config.mk                |   18 ++
>   arch/arm/cpu/armv7/am33xx/emif4.c                  |    2 +-
>   arch/arm/cpu/armv7/am33xx/lowlevel_init.S          |   72 ---------
>   arch/arm/cpu/armv7/omap-common/Makefile            |    4 +
>   arch/arm/cpu/armv7/omap-common/boot-common.c       |   49 ++++++
>   arch/arm/cpu/armv7/omap-common/hwinit-common.c     |   38 +----
>   arch/arm/cpu/armv7/omap-common/spl.c               |   14 +--
>   arch/arm/cpu/armv7/omap3/board.c                   |    2 +
>   arch/arm/cpu/armv7/omap3/sys_info.c                |    3 +-
>   .../arm/include/asm/arch-am33xx}/common_def.h      |    4 +-
>   arch/arm/include/asm/arch-am33xx/cpu.h             |   44 +++---
>   arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    6 +-
>   arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |  164 ++++++++++++++++++++
>   arch/arm/include/asm/arch-am33xx/omap.h            |   59 +++++++
>   arch/arm/include/asm/arch-am33xx/sys_proto.h       |    1 +
>   arch/arm/include/asm/arch-omap3/mem.h              |   26 +++
>   arch/arm/include/asm/arch-omap4/sys_proto.h        |    2 +-
>   arch/arm/include/asm/arch-omap5/sys_proto.h        |    2 +-
>   arch/arm/include/asm/omap_common.h                 |    7 +-
>   board/cm_t35/Makefile                              |    4 +-
>   board/cm_t35/cm_t35.c                              |   27 ++-
>   board/cm_t35/eeprom.c                              |  124 +++++++++++++++
>   board/cm_t35/eeprom.h                              |   33 ++++
>   board/overo/config.mk                              |   28 ----
>   board/overo/overo.c                                |   79 +++++++++-
>   board/overo/overo.h                                |    5 +
>   board/ti/am335x/evm.c                              |    2 +-
>   board/ti/am335x/mux.c                              |   23 +++-
>   drivers/i2c/omap24xx_i2c.c                         |   25 ++--
>   include/configs/am335x_evm.h                       |   62 ++++++--
>   include/configs/cm_t35.h                           |   81 +++++-----
>   include/configs/omap3_overo.h                      |  118 ++++++++++----
>   spl/Makefile                                       |   13 +-
>   37 files changed, 909 insertions(+), 310 deletions(-)
>   create mode 100644 arch/arm/cpu/armv7/am33xx/config.mk
>   delete mode 100644 arch/arm/cpu/armv7/am33xx/lowlevel_init.S
>   create mode 100644 arch/arm/cpu/armv7/omap-common/boot-common.c
>   rename {board/ti/am335x =>  arch/arm/include/asm/arch-am33xx}/common_def.h (81%)
>   create mode 100644 arch/arm/include/asm/arch-am33xx/mmc_host_def.h
>   create mode 100644 arch/arm/include/asm/arch-am33xx/omap.h
>   create mode 100644 board/cm_t35/eeprom.c
>   create mode 100644 board/cm_t35/eeprom.h
>   delete mode 100644 board/overo/config.mk
>
> Thanks!

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2015-01-30 14:20 Tom Rini
@ 2015-02-02 19:00 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2015-02-02 19:00 UTC (permalink / raw)
  To: u-boot

On Fri, Jan 30, 2015 at 09:20:27AM -0500, Tom Rini wrote:

> Ahoy!
> 
> The following changes since commit 2af13d6b6265a6700c4f65597410b769895024bf:
> 
>   lcd: fix console address is not initialized (2015-01-28 16:58:02 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to f3b4bc458de3285a04c5f60df6372ad5ca79fa60:
> 
>   OMAP3: igep00x0: Fix boot hang and add support for status LED. (2015-01-29 12:00:50 -0500)
> 

Applied to u-boot/master, thanks!



-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150202/6224fce0/attachment.sig>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2015-01-30 14:20 Tom Rini
  2015-02-02 19:00 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2015-01-30 14:20 UTC (permalink / raw)
  To: u-boot

Ahoy!

The following changes since commit 2af13d6b6265a6700c4f65597410b769895024bf:

  lcd: fix console address is not initialized (2015-01-28 16:58:02 -0500)

are available in the git repository at:

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

for you to fetch changes up to f3b4bc458de3285a04c5f60df6372ad5ca79fa60:

  OMAP3: igep00x0: Fix boot hang and add support for status LED. (2015-01-29 12:00:50 -0500)

----------------------------------------------------------------
Albert ARIBAUD \(3ADEV\) (5):
      omap3: enable GP9 timer and UART2
      omap3: make SDRC SHARING setting configurable
      omap3: add SDRC settings for Samsung K4X51163PG
      omap3: mmc: add 1.8v bias setting for MMC1
      omap3: add some MUX definitions for upcoming cairo

Enric Balletbo i Serra (1):
      OMAP3: igep00x0: Fix boot hang and add support for status LED.

Lubomir Popov (1):
      ARM: OMAP5: DRA7xx: Add support for power rail grouping

Pali Roh?r (1):
      Nokia RX-51: Use generic board

Tom Rini (2):
      am335x_evm: Enable CONFIG_NAND_OMAP_GPMC_PREFETCH
      davinci: Do not duplicate setting of gd

 arch/arm/cpu/arm926ejs/davinci/spl.c           |   17 +----
 arch/arm/cpu/armv7/omap-common/clocks-common.c |   83 ++++++++++++++++++++++--
 arch/arm/cpu/armv7/omap3/clock.c               |    9 +++
 arch/arm/cpu/armv7/omap3/sdrc.c                |    6 +-
 arch/arm/cpu/armv7/omap5/hw_data.c             |   43 ++++++------
 arch/arm/include/asm/arch-omap3/mem.h          |   43 ++++++++++++
 arch/arm/include/asm/arch-omap3/mmc_host_def.h |    1 +
 arch/arm/include/asm/arch-omap3/mux.h          |   51 ++++++++++++++-
 arch/arm/include/asm/arch-omap3/sys_proto.h    |    1 +
 arch/arm/include/asm/arch-omap5/clock.h        |   20 +++++-
 board/isee/igep00x0/igep00x0.c                 |   18 ++---
 board/isee/igep00x0/igep00x0.h                 |    8 ---
 drivers/mmc/omap_hsmmc.c                       |    4 ++
 include/configs/am335x_evm.h                   |    1 +
 include/configs/nokia_rx51.h                   |    1 +
 include/configs/omap3_igep00x0.h               |   18 +++--
 16 files changed, 252 insertions(+), 72 deletions(-)

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150130/90e9e7e9/attachment.sig>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-12-05 14:53 Tom Rini
@ 2014-12-08 21:41 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2014-12-08 21:41 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 05, 2014 at 09:53:49AM -0500, Tom Rini wrote:

> Hello myself,
> 
> The following changes since commit f0c6e1c31b94f193047619b6adf67c2d792b659e:
> 
>   Revert "image-fdt: boot_get_fdt() return value when no DTB exists" (2014-12-03 13:19:34 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 956a8bae537974673e126f67a227355f27e48ec6:
> 
>   ns16550.c: Fix for ns16550 driver hanging on OMAP4 (2014-12-04 21:28:32 -0500)
> 

Applied to u-boot/master, thanks!



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

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-12-05 14:53 Tom Rini
  2014-12-08 21:41 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-12-05 14:53 UTC (permalink / raw)
  To: u-boot

Hello myself,

The following changes since commit f0c6e1c31b94f193047619b6adf67c2d792b659e:

  Revert "image-fdt: boot_get_fdt() return value when no DTB exists" (2014-12-03 13:19:34 -0500)

are available in the git repository at:

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

for you to fetch changes up to 956a8bae537974673e126f67a227355f27e48ec6:

  ns16550.c: Fix for ns16550 driver hanging on OMAP4 (2014-12-04 21:28:32 -0500)

----------------------------------------------------------------
Felipe Balbi (10):
      arm: omap5: don't enable misc_init_r by default
      arm: omap5: tps659038: rename regulator defines
      arm: dra7xx: prcm: add missing registers
      usb: phy: omap_usb_phy: fix build breakage
      arm: omap-common: emif: allow to map memory without interleaving
      arm: omap5: make hw_init_data weak
      arm: omap5: sdram: mark emif_get_ext_phy_ctrl_const_regs __weak
      arm: omap_common: expose tps659038 and dra7xx_dplls
      arm: omap: add support for am57xx devices
      beagle_x15: add board support for Beagle x15

Franklin S Cooper Jr (1):
      configs: omap5_common : Boot rootfs from sd card by default

Gregoire Gentil (1):
      ns16550.c: Fix for ns16550 driver hanging on OMAP4

Heiko Schocher (3):
      arm, am335x, siemens: fix factoryset interpretation
      arm, am335x, siemens: read COMP/ver from factoryset
      arm, am335x: siemens boards add FIT support

Lubomir Popov (2):
      ARM: OMAP5: DRA7xx: Enable 8-bit eMMC access on the dra7xx_evm
      ARM: OMAP5: DRA7xx: Fix misleading comments in mux_data.h

Paul Kocialkowski (3):
      mmc: Board-specific MMC power initializations
      twl4030: device-index-specific MMC power initializations, common ramp-up delay
      omap_hsmmc: Board-specific TWL4030 MMC power initializations

Stefan Roese (2):
      arm: am33xx: Handle NAND+I2C boot-device the same way as NAND
      mtd: nand: omap_gpmc: Always use ready/busy pin

 arch/arm/cpu/armv7/omap-common/boot-common.c |   17 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c |    9 +-
 arch/arm/cpu/armv7/omap5/Kconfig             |    4 +
 arch/arm/cpu/armv7/omap5/hw_data.c           |   12 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c         |    3 +
 arch/arm/cpu/armv7/omap5/sdram.c             |    2 +-
 arch/arm/include/asm/arch-am33xx/spl.h       |    1 +
 arch/arm/include/asm/arch-omap5/clock.h      |   12 +-
 arch/arm/include/asm/arch-omap5/omap.h       |    4 +-
 arch/arm/include/asm/omap_common.h           |    3 +
 board/comelit/dig297/dig297.c                |    5 +
 board/compulab/cm_t35/cm_t35.c               |    7 +
 board/corscience/tricorder/tricorder.c       |    7 +
 board/isee/igep00x0/igep00x0.c               |    7 +
 board/logicpd/omap3som/omap3logic.c          |    7 +
 board/logicpd/zoom1/zoom1.c                  |    5 +
 board/matrix_vision/mvblx/mvblx.c            |    6 +
 board/nokia/rx51/rx51.c                      |    6 +
 board/overo/overo.c                          |    7 +
 board/pandora/pandora.c                      |    5 +
 board/siemens/common/board.c                 |    9 -
 board/siemens/common/factoryset.c            |   52 ++--
 board/siemens/common/factoryset.h            |    2 +
 board/siemens/draco/board.c                  |    9 +
 board/siemens/pxm2/board.c                   |   34 +++
 board/siemens/rut/board.c                    |   23 ++
 board/technexion/tao3530/tao3530.c           |    7 +
 board/ti/beagle/beagle.c                     |    7 +
 board/ti/beagle_x15/Kconfig                  |   12 +
 board/ti/beagle_x15/Makefile                 |    8 +
 board/ti/beagle_x15/board.c                  |  395 ++++++++++++++++++++++++++
 board/ti/beagle_x15/mux_data.h               |   55 ++++
 board/ti/dra7xx/evm.c                        |   12 -
 board/ti/dra7xx/mux_data.h                   |    4 +-
 board/ti/evm/evm.c                           |    8 +
 board/ti/sdp3430/sdp.c                       |    5 +
 board/timll/devkit8000/devkit8000.c          |    7 +
 configs/beagle_x15_defconfig                 |    5 +
 drivers/mmc/mmc.c                            |    7 +
 drivers/mmc/omap_hsmmc.c                     |   12 +-
 drivers/mtd/nand/omap_gpmc.c                 |    9 +-
 drivers/power/palmas.c                       |    2 +-
 drivers/power/twl4030.c                      |   28 +-
 drivers/serial/ns16550.c                     |    9 +-
 drivers/spi/ti_qspi.c                        |    8 +-
 drivers/usb/phy/omap_usb_phy.c               |    2 -
 include/configs/beagle_x15.h                 |   88 ++++++
 include/configs/cm_t54.h                     |    1 -
 include/configs/dra7xx_evm.h                 |    1 +
 include/configs/omap5_uevm.h                 |    1 +
 include/configs/pxm2.h                       |    4 +
 include/configs/rut.h                        |    4 +
 include/configs/ti_omap5_common.h            |    5 +-
 include/linux/usb/xhci-omap.h                |    4 +
 include/mmc.h                                |    1 +
 include/twl4030.h                            |    2 +-
 56 files changed, 870 insertions(+), 101 deletions(-)
 create mode 100644 board/ti/beagle_x15/Kconfig
 create mode 100644 board/ti/beagle_x15/Makefile
 create mode 100644 board/ti/beagle_x15/board.c
 create mode 100644 board/ti/beagle_x15/mux_data.h
 create mode 100644 configs/beagle_x15_defconfig
 create mode 100644 include/configs/beagle_x15.h

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

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

* [U-Boot] Please pull u-boot-ti/master
  2014-11-05 21:33 Tom Rini
@ 2014-11-10 21:29 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2014-11-10 21:29 UTC (permalink / raw)
  To: u-boot

On Wed, Nov 05, 2014 at 04:33:24PM -0500, Tom Rini wrote:

> Hi me,
> 
> The following changes since commit d5325eff10922acb11c39efece6d5f24de5b1998:
> 
>   Merge git://www.denx.de/git/u-boot-sunxi (2014-11-05 07:23:32 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git 
> 
> for you to fetch changes up to d23ee49b0bf1c21fdd3f19e8921cc5dc5d903fbf:
> 
>   omap3: cm-t3517: add LCD/DVI and splash support (2014-11-05 13:09:47 -0500)
> 

Applied to u-boot/master (with the updated marvell phy patch), thanks!

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

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-11-05 21:33 Tom Rini
  2014-11-10 21:29 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-11-05 21:33 UTC (permalink / raw)
  To: u-boot

Hi me,

The following changes since commit d5325eff10922acb11c39efece6d5f24de5b1998:

  Merge git://www.denx.de/git/u-boot-sunxi (2014-11-05 07:23:32 -0500)

are available in the git repository at:


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

for you to fetch changes up to d23ee49b0bf1c21fdd3f19e8921cc5dc5d903fbf:

  omap3: cm-t3517: add LCD/DVI and splash support (2014-11-05 13:09:47 -0500)

----------------------------------------------------------------
Dileep Katta (1):
      Enable Android Fastboot support on am335x_evm board

Guillaume GARDET (2):
      ARM: TI: Enable raw initrd support
      ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h

Hao Zhang (2):
      board: k2l_evm: add network support
      net: phy: marvell: add errata w/a for 88E151* chips

Heiko Schocher (1):
      arm: am335x: net: pxm2: disable rgmii internal delay mode

Igor Grinberg (11):
      am335x: make get_board_rev() function weak
      compulab: refactor board revision handling
      omap3: cm-t35: move the USB hub reset code
      omap3: cm-t35: extract the splash code from board
      omap3: cm-t35: move the SMC911x code
      omap3: cm-t35: move get_board_serial() fallback
      omap: hsmmc: assume cd gpio is active low
      omap3: cm-t3517: add basic board support
      omap3: cm-t3517: add USB support
      omap3: cm-t3517: add Ethernet support
      omap3: cm-t3517: add LCD/DVI and splash support

Khoronzhuk, Ivan (9):
      ARM: keystone2: keysonte_nav: add support for K2L SoC
      net: keystone_serdes: add keystone K2L SoC support
      net: keystone_net: add Keystone2 K2L SoC support
      ks2_evm: readme: add k2l evm board information
      ks2_evm: configs: fix UBI volume name
      dma: keystone_nav: remove spurious qm_cfg verification
      keystone2: config: align names of images with MCSDK
      ks2_evm: config: enable fatload command
      ks2_evm: board: remove sprintf for simple string

Murali Karicheri (2):
      keystone2: change default boot mode to ubi
      keystone2: config: restructure handling of default env settings

Paul Kocialkowski (1):
      twl4030: More voltages on VAUX2 and VAUX3

Tom Rini (2):
      am335x_evm: Add NOR to Kconfig
      am335x_evm: Convert NOR_BOOT to Kconfig

 arch/arm/cpu/armv7/am33xx/sys_info.c               |    7 +-
 arch/arm/cpu/armv7/omap3/Kconfig                   |    4 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2e.h  |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2l.h  |    7 +
 arch/arm/include/asm/arch-keystone/hardware.h      |    4 +
 board/compulab/cm_t35/cm_t35.c                     |  157 +---------
 board/compulab/cm_t3517/Kconfig                    |   12 +
 board/compulab/cm_t3517/MAINTAINERS                |    6 +
 board/compulab/cm_t3517/Makefile                   |    9 +
 board/compulab/cm_t3517/cm_t3517.c                 |  231 ++++++++++++++
 board/compulab/cm_t3517/mux.c                      |  236 +++++++++++++++
 board/compulab/cm_t54/cm_t54.c                     |    7 +-
 board/compulab/common/Makefile                     |    7 +-
 board/compulab/common/common.c                     |   59 ++++
 board/compulab/common/common.h                     |   47 +++
 board/compulab/common/eeprom.c                     |   14 +-
 board/compulab/common/omap3_smc911x.c              |   93 ++++++
 board/compulab/common/splash.c                     |   72 +++++
 board/siemens/pxm2/board.c                         |    2 +-
 board/ti/am335x/Kconfig                            |   15 +
 board/ti/ks2_evm/README                            |   20 +-
 board/ti/ks2_evm/board.c                           |    7 +-
 board/ti/ks2_evm/board_k2l.c                       |   40 ++-
 configs/am335x_evm_nor_defconfig                   |    3 +-
 configs/am335x_evm_norboot_defconfig               |    3 +-
 configs/cm_t3517_defconfig                         |    4 +
 drivers/dma/keystone_nav.c                         |   12 -
 drivers/mmc/omap_hsmmc.c                           |    4 +-
 drivers/net/keystone_net.c                         |    7 +-
 drivers/net/phy/marvell.c                          |   51 +++-
 include/configs/am335x_evm.h                       |   16 +-
 include/configs/cm_t3517.h                         |  320 ++++++++++++++++++++
 include/configs/k2e_evm.h                          |   23 +-
 include/configs/k2hk_evm.h                         |   23 +-
 include/configs/k2l_evm.h                          |   22 +-
 include/configs/ks2_evm.h                          |   22 +-
 include/configs/omap3_igep00x0.h                   |    2 -
 include/configs/ti_armv7_common.h                  |    1 +
 include/twl4030.h                                  |    2 +
 41 files changed, 1334 insertions(+), 243 deletions(-)
 create mode 100644 board/compulab/cm_t3517/Kconfig
 create mode 100644 board/compulab/cm_t3517/MAINTAINERS
 create mode 100644 board/compulab/cm_t3517/Makefile
 create mode 100644 board/compulab/cm_t3517/cm_t3517.c
 create mode 100644 board/compulab/cm_t3517/mux.c
 create mode 100644 board/compulab/common/common.c
 create mode 100644 board/compulab/common/common.h
 create mode 100644 board/compulab/common/omap3_smc911x.c
 create mode 100644 board/compulab/common/splash.c
 create mode 100644 configs/cm_t3517_defconfig
 create mode 100644 include/configs/cm_t3517.h

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

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

* [U-Boot] Please pull u-boot-ti/master
  2014-10-23 17:17 Tom Rini
@ 2014-10-27 14:32 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2014-10-27 14:32 UTC (permalink / raw)
  To: u-boot

On Thu, Oct 23, 2014 at 01:17:16PM -0400, Tom Rini wrote:

> Hi me,
> 
> The following changes since commit 68e80fdda1336068f40915388bbdacfd2b75233a:
> 
>   Merge git://git.denx.de/u-boot-dm (2014-10-22 13:51:45 -0400)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to b5ff205cdb0da6eff8a02653bf5192ea8d661faa:
> 
>   omap3/am33xx: mux: fix several checkpatch issues (2014-10-23 11:53:02 -0400)
> 

Applied to u-boot/master, thanks!

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

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-10-23 17:17 Tom Rini
  2014-10-27 14:32 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-10-23 17:17 UTC (permalink / raw)
  To: u-boot

Hi me,

The following changes since commit 68e80fdda1336068f40915388bbdacfd2b75233a:

  Merge git://git.denx.de/u-boot-dm (2014-10-22 13:51:45 -0400)

are available in the git repository at:


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

for you to fetch changes up to b5ff205cdb0da6eff8a02653bf5192ea8d661faa:

  omap3/am33xx: mux: fix several checkpatch issues (2014-10-23 11:53:02 -0400)

----------------------------------------------------------------
Felipe Balbi (2):
      common: Makefile: allow for spl builds with env_fat
      arm: am43xx: switch over to CONFIG_ENV_IS_IN_FAT

Hao Zhang (11):
      ARM: keystone2: add K2L device hardware definitions
      keystone2: clock: add K2L clock definitions and commands
      keystone2: msmc: add MSMC cache coherency support for K2L SOC
      ARM: keystone2: spl: move board specific code
      keystone2: enable OSR clock domain for K2L SoC
      keystone2: k2l-evm: add board support
      net: keystone_net: remove SoC specific emac_regs structure
      soc: keystone_serdes: enhance to use cmu/comlane/lane specific configurations
      soc: keystone_serdes: generalize to be used by other sub systems
      board: k2e_evm: add network support
      ARM: keystone: cmd_ddr3: add ddr3 commands to test ddr

Igor Grinberg (4):
      omap3: Kconfig: fix the cm-t35 board option prompt
      omap3: cm-t35: use define for mmc wp gpio
      omap3: cm-t35: remove enable_gpmc_cs_config()
      omap3/am33xx: mux: fix several checkpatch issues

Khoronzhuk, Ivan (22):
      keystone2: keystone_nav: don't use hard addresses in qm_config
      keystone2: keystone_nav: don't use hard addresses in netcp_pktdma
      dma: keystone_nav: move keystone_nav driver to driver/dma/
      dma: keystone_nav: generalize driver usage
      ARM: cmd_clock: generalize command usage description
      configs: ks2_evm: enable misc_init_r
      net: keystone_net: add support for NETCP v1.5
      net: keystone_net: move header file from arch to ti-common
      net: keystone_net: remove redundant code from keystone_net.c
      soc: keystone_serdes: create a separate SGMII SerDes driver
      soc: keystone_serdes: generalize configuration mechanism
      net: phy: print a number of phy that is not found
      net: keystone_net: use mdio_reset function
      net: keystone_net: register MDIO bus
      net: keystone_net: register eth PHYs on MDIO bus
      net: keystone_net: use general get link function
      ARM: keystone2: keysonte_nav: add support for K2E SoC
      net: keystone_serdes: add keystone K2E SoC support
      net: keystone_net: add Keystone2 K2E SoC support
      net: keystone_net: increase PHY auto negotiate time
      ARM: keystone: clock: add support for K2E SoCs
      dma: ti-edma3: introduce edma3 driver

Stefan Herbrechtsmeier (4):
      omap3: overo: Call bootm only after successful nand read
      omap3: overo: Move ethernet setup to board_eth_init function
      omap3: overo: Separate module and expansion board MUX configuration
      omap3: overo: Add usb host support

Tom Rini (2):
      am335x_boneblack: Only modify NAND/NOR/MMC1 pinmux on BBB in boneblack builds.
      am335x_evm: Correct "raw" portions of DFU alt into

Vitaly Andrianov (3):
      net: keystone_net: increase MDIO clock frequency
      ARM: keystone: msmc: extend functionality of SES
      keystone2: ecc: add ddr3 error detection and correction support

WingMan Kwok (1):
      keystone: usb: add support of usb xhci

 arch/arm/cpu/armv7/keystone/Kconfig                |    3 +
 arch/arm/cpu/armv7/keystone/Makefile               |    5 +-
 arch/arm/cpu/armv7/keystone/clock-k2l.c            |  138 +++++++
 arch/arm/cpu/armv7/keystone/clock.c                |   17 +-
 arch/arm/cpu/armv7/keystone/cmd_clock.c            |   24 +-
 arch/arm/cpu/armv7/keystone/cmd_ddr3.c             |  248 ++++++++++++
 arch/arm/cpu/armv7/keystone/ddr3.c                 |  244 ++++++++++++
 arch/arm/cpu/armv7/keystone/init.c                 |   63 ++-
 arch/arm/cpu/armv7/keystone/msmc.c                 |   26 ++
 arch/arm/cpu/armv7/keystone/spl.c                  |   53 ---
 arch/arm/cpu/armv7/omap3/Kconfig                   |    2 +-
 arch/arm/include/asm/arch-am33xx/mux.h             |    2 +-
 arch/arm/include/asm/arch-keystone/clock-k2e.h     |   43 +-
 arch/arm/include/asm/arch-keystone/clock-k2hk.h    |   47 +--
 arch/arm/include/asm/arch-keystone/clock-k2l.h     |   95 +++++
 arch/arm/include/asm/arch-keystone/clock.h         |   13 +
 arch/arm/include/asm/arch-keystone/ddr3.h          |    6 +
 arch/arm/include/asm/arch-keystone/emac_defs.h     |  237 -----------
 arch/arm/include/asm/arch-keystone/hardware-k2e.h  |   23 ++
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |   25 +-
 arch/arm/include/asm/arch-keystone/hardware-k2l.h  |  101 +++++
 arch/arm/include/asm/arch-keystone/hardware.h      |   98 ++++-
 arch/arm/include/asm/arch-keystone/msmc.h          |   28 ++
 arch/arm/include/asm/arch-keystone/spl.h           |   12 -
 arch/arm/include/asm/arch-keystone/xhci-keystone.h |   21 +
 arch/arm/include/asm/arch-omap3/mux.h              |    4 +-
 .../{arch-keystone => ti-common}/keystone_nav.h    |   16 +-
 arch/arm/include/asm/ti-common/keystone_net.h      |  249 ++++++++++++
 arch/arm/include/asm/ti-common/keystone_serdes.h   |   55 +++
 arch/arm/include/asm/ti-common/ti-edma3.h          |  121 ++++++
 board/8dtech/eco5pk/eco5pk.h                       |    2 +-
 board/compulab/cm_t35/cm_t35.c                     |   19 +-
 board/htkw/mcx/mcx.h                               |    2 +-
 board/logicpd/am3517evm/am3517evm.h                |    2 +-
 board/logicpd/omap3som/omap3logic.c                |    2 +-
 board/overo/overo.c                                |  137 +++++--
 board/overo/overo.h                                |  150 +++----
 board/pandora/pandora.h                            |    2 +-
 board/technexion/tao3530/tao3530.h                 |    2 +-
 board/technexion/twister/twister.h                 |    2 +-
 board/teejet/mt_ventoux/mt_ventoux.h               |    2 +-
 board/ti/am335x/mux.c                              |    4 +-
 board/ti/am3517crane/am3517crane.h                 |    2 +-
 board/ti/evm/evm.h                                 |    2 +-
 board/ti/ks2_evm/Kconfig                           |   16 +
 board/ti/ks2_evm/MAINTAINERS                       |    2 +
 board/ti/ks2_evm/Makefile                          |    2 +
 board/ti/ks2_evm/board.c                           |   34 +-
 board/ti/ks2_evm/board.h                           |    3 +-
 board/ti/ks2_evm/board_k2e.c                       |   79 +++-
 board/ti/ks2_evm/board_k2hk.c                      |   14 +-
 board/ti/ks2_evm/board_k2l.c                       |   72 ++++
 board/ti/ks2_evm/ddr3_cfg.c                        |   36 ++
 board/ti/ks2_evm/ddr3_cfg.h                        |    3 +
 board/ti/ks2_evm/ddr3_k2hk.c                       |   16 +
 board/ti/ks2_evm/ddr3_k2l.c                        |   38 ++
 board/ti/sdp3430/sdp.h                             |    2 +-
 common/Makefile                                    |    1 +
 configs/k2l_evm_defconfig                          |    4 +
 drivers/Makefile                                   |    2 +
 drivers/dma/Makefile                               |    2 +
 .../armv7/keystone => drivers/dma}/keystone_nav.c  |  196 ++++-----
 drivers/dma/keystone_nav_cfg.c                     |   27 ++
 drivers/dma/ti-edma3.c                             |  384 ++++++++++++++++++
 drivers/net/keystone_net.c                         |  416 +++++++-------------
 drivers/net/phy/phy.c                              |    2 +-
 drivers/soc/Makefile                               |    5 +
 drivers/soc/keystone/Makefile                      |    1 +
 drivers/soc/keystone/keystone_serdes.c             |  210 ++++++++++
 drivers/usb/host/Makefile                          |    1 +
 drivers/usb/host/xhci-keystone.c                   |  329 ++++++++++++++++
 include/configs/am335x_evm.h                       |   10 +-
 include/configs/am43xx_evm.h                       |   11 +-
 include/configs/k2e_evm.h                          |   11 +
 include/configs/k2hk_evm.h                         |    7 +
 include/configs/k2l_evm.h                          |   37 ++
 include/configs/ks2_evm.h                          |   59 ++-
 include/configs/omap3_overo.h                      |   13 +-
 include/linux/usb/dwc3.h                           |    8 +-
 79 files changed, 3468 insertions(+), 934 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/keystone/clock-k2l.c
 create mode 100644 arch/arm/cpu/armv7/keystone/cmd_ddr3.c
 delete mode 100644 arch/arm/cpu/armv7/keystone/spl.c
 create mode 100644 arch/arm/include/asm/arch-keystone/clock-k2l.h
 delete mode 100644 arch/arm/include/asm/arch-keystone/emac_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2l.h
 delete mode 100644 arch/arm/include/asm/arch-keystone/spl.h
 create mode 100644 arch/arm/include/asm/arch-keystone/xhci-keystone.h
 rename arch/arm/include/asm/{arch-keystone => ti-common}/keystone_nav.h (91%)
 create mode 100644 arch/arm/include/asm/ti-common/keystone_net.h
 create mode 100644 arch/arm/include/asm/ti-common/keystone_serdes.h
 create mode 100644 arch/arm/include/asm/ti-common/ti-edma3.h
 create mode 100644 board/ti/ks2_evm/board_k2l.c
 create mode 100644 board/ti/ks2_evm/ddr3_k2l.c
 create mode 100644 configs/k2l_evm_defconfig
 rename {arch/arm/cpu/armv7/keystone => drivers/dma}/keystone_nav.c (53%)
 create mode 100644 drivers/dma/keystone_nav_cfg.c
 create mode 100644 drivers/dma/ti-edma3.c
 create mode 100644 drivers/soc/Makefile
 create mode 100644 drivers/soc/keystone/Makefile
 create mode 100644 drivers/soc/keystone/keystone_serdes.c
 create mode 100644 drivers/usb/host/xhci-keystone.c
 create mode 100644 include/configs/k2l_evm.h

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

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

* [U-Boot] Please pull u-boot-ti/master
  2014-09-18 12:34 Tom Rini
@ 2014-09-21 16:45 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-09-21 16:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 18 Sep 2014 08:34:22 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit c292adae170fa8c27dca75963bdb0a9afc640e57:
> 
>   Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2014-09-17 23:35:34 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 3aae66e2a74ac89724d16b6e8908dcd0d2825eeb:
> 
>   am335x_evm: Add boot script support to am335x_evm (2014-09-17 21:06:56 -0400)
> 
> ----------------------------------------------------------------
> Guillaume GARDET (2):
>       OMAP4: Use generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage'.
>       am335x_evm: Add boot script support to am335x_evm
> 
> Murali Karicheri (1):
>       ARM: keystone: ddr3: workaround for ddr3a/3b memory issue
> 
>  arch/arm/cpu/armv7/keystone/ddr3.c            |   75 +++++++++++++++++++++++++
>  arch/arm/include/asm/arch-keystone/ddr3.h     |    1 +
>  arch/arm/include/asm/arch-keystone/hardware.h |    2 +
>  board/ti/ks2_evm/ddr3_k2hk.c                  |    4 ++
>  include/configs/am335x_evm.h                  |   29 ++++++----
>  include/configs/ti_omap4_common.h             |    4 +-
>  6 files changed, 102 insertions(+), 13 deletions(-)
> 

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

(still 7 boards fail building: openrd_client tricorder_flash tricorder
cm_fx6 openrd_ultimate trimslice openrd_base)

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-09-18 12:34 Tom Rini
  2014-09-21 16:45 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-09-18 12:34 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit c292adae170fa8c27dca75963bdb0a9afc640e57:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2014-09-17 23:35:34 +0200)

are available in the git repository at:


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

for you to fetch changes up to 3aae66e2a74ac89724d16b6e8908dcd0d2825eeb:

  am335x_evm: Add boot script support to am335x_evm (2014-09-17 21:06:56 -0400)

----------------------------------------------------------------
Guillaume GARDET (2):
      OMAP4: Use generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage'.
      am335x_evm: Add boot script support to am335x_evm

Murali Karicheri (1):
      ARM: keystone: ddr3: workaround for ddr3a/3b memory issue

 arch/arm/cpu/armv7/keystone/ddr3.c            |   75 +++++++++++++++++++++++++
 arch/arm/include/asm/arch-keystone/ddr3.h     |    1 +
 arch/arm/include/asm/arch-keystone/hardware.h |    2 +
 board/ti/ks2_evm/ddr3_k2hk.c                  |    4 ++
 include/configs/am335x_evm.h                  |   29 ++++++----
 include/configs/ti_omap4_common.h             |    4 +-
 6 files changed, 102 insertions(+), 13 deletions(-)

-- 
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/20140918/9d171c7b/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-09-04 20:48 Tom Rini
@ 2014-09-08 22:19 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-09-08 22:19 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 4 Sep 2014 16:48:16 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:
> 
>   Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 681f785f7cc616a70aaa0c93a25300b0820f6968:
> 
>   ARM: DRA72: DDR3: Add emif settings for 666MHz clock (2014-09-04 13:12:49 -0400)
> 
> ----------------------------------------------------------------
> Enric Balletbo i Serra (1):
>       AM335x: igep0033: Convert to generic board and use ti_am335x_common.h.
> 
> Guillaume GARDET (1):
>       omap3_beagle: Add boot script support to omap3 beagle board
> 
> Khoronzhuk, Ivan (3):
>       ARM: keystone: clock: use correct BWADJ field mask for PASSPLLCTL0
>       keystone2: use readl/writel functions instead of redefinition
>       mtd: nand: davinci_nand: correct keystone RBL layout definition
> 
> Masahiro Yamada (1):
>       arm: am335x: add Kconfig range attribute to prevent invalid CONS_INDEX
> 
> R Sricharan (1):
>       ARM: DRA72: DDR3: Add emif settings for 666MHz clock
> 
> Rostislav Lisovy (2):
>       mtd: nand: omap_gpmc: Enable multiple NAND flash devices
>       mtd: nand: omap_gpmc: Fix 'bit-flip' errors
> 
>  arch/arm/cpu/armv7/keystone/clock.c            |    2 +-
>  arch/arm/cpu/armv7/keystone/psc.c              |   44 ++---
>  arch/arm/cpu/armv7/omap5/hw_data.c             |   39 ++++-
>  arch/arm/cpu/armv7/omap5/sdram.c               |   60 ++++++-
>  arch/arm/include/asm/arch-keystone/emac_defs.h |    7 +-
>  board/ti/am335x/Kconfig                        |    1 +
>  drivers/mtd/nand/davinci_nand.c                |    2 +-
>  drivers/mtd/nand/omap_gpmc.c                   |   46 +++--
>  drivers/net/keystone_net.c                     |   35 ++--
>  include/configs/am335x_igep0033.h              |  221 +++++-------------------
>  include/configs/omap3_beagle.h                 |   13 +-
>  11 files changed, 210 insertions(+), 260 deletions(-)
> 

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

We still have 2 warnings and 5 oversized targets, same as before the
pull.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-09-04 20:48 Tom Rini
  2014-09-08 22:19 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-09-04 20:48 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:

  Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)

are available in the git repository at:

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

for you to fetch changes up to 681f785f7cc616a70aaa0c93a25300b0820f6968:

  ARM: DRA72: DDR3: Add emif settings for 666MHz clock (2014-09-04 13:12:49 -0400)

----------------------------------------------------------------
Enric Balletbo i Serra (1):
      AM335x: igep0033: Convert to generic board and use ti_am335x_common.h.

Guillaume GARDET (1):
      omap3_beagle: Add boot script support to omap3 beagle board

Khoronzhuk, Ivan (3):
      ARM: keystone: clock: use correct BWADJ field mask for PASSPLLCTL0
      keystone2: use readl/writel functions instead of redefinition
      mtd: nand: davinci_nand: correct keystone RBL layout definition

Masahiro Yamada (1):
      arm: am335x: add Kconfig range attribute to prevent invalid CONS_INDEX

R Sricharan (1):
      ARM: DRA72: DDR3: Add emif settings for 666MHz clock

Rostislav Lisovy (2):
      mtd: nand: omap_gpmc: Enable multiple NAND flash devices
      mtd: nand: omap_gpmc: Fix 'bit-flip' errors

 arch/arm/cpu/armv7/keystone/clock.c            |    2 +-
 arch/arm/cpu/armv7/keystone/psc.c              |   44 ++---
 arch/arm/cpu/armv7/omap5/hw_data.c             |   39 ++++-
 arch/arm/cpu/armv7/omap5/sdram.c               |   60 ++++++-
 arch/arm/include/asm/arch-keystone/emac_defs.h |    7 +-
 board/ti/am335x/Kconfig                        |    1 +
 drivers/mtd/nand/davinci_nand.c                |    2 +-
 drivers/mtd/nand/omap_gpmc.c                   |   46 +++--
 drivers/net/keystone_net.c                     |   35 ++--
 include/configs/am335x_igep0033.h              |  221 +++++-------------------
 include/configs/omap3_beagle.h                 |   13 +-
 11 files changed, 210 insertions(+), 260 deletions(-)

-- 
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/20140904/d08e1494/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-08-25 19:18 Tom Rini
@ 2014-08-29 17:48 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2014-08-29 17:48 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 25, 2014 at 03:18:00PM -0400, Tom Rini wrote:
> Hey,
> 
> The following changes since commit 1899fac925eda817e12234aef3d01d354788662e:
> 
>   Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master' (2014-08-09 16:48:34 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 6302ea5409b8cc0abf667a94d22ef81543e04fd4:
> 
>   common: cmd_nand: add nand ecclayout command (2014-08-25 14:23:52 -0400)
> 
> ----------------------------------------------------------------
> Dmitry Lifshitz (3):
>       cm-t54: fix EEPROM read return value check
>       cm-t54: fix eMMC boot mode check
>       cm-t54: convert to generic board
> 
> Jeroen Hofstee (1):
>       SOM: tam3517: convert to generic board
> 
> Lokesh Vutla (1):
>       ARM: DRA: Enable VTT regulator
> 
> Matwey V. Kornilov (1):
>       pcm051: use ti_am335x_common.h config
> 
> Sricharan R (1):
>       ARM: DRA7: Enable software leveling for dra7
> 
> Tom Rini (6):
>       am335x_evm: Move SPL network defines
>       TI:armv7: Change CONFIG_SPL_STACK to not be CONFIG_SYS_INIT_SP_ADDR
>       tseries: Set CONFIG_ENV_IS_NOWHERE for SPL+NAND
>       common/Makefile: Consolidate SPL ENV options, correct inclusion
>       am335x_evm: Enable CONFIG_SPL_ENV_SUPPORT on EMMC_BOOT
>       am335x_evm: Convert CONFIG_CONS_INDEX into a menu choice
> 
> Vitaly Andrianov (1):
>       keystone2: use EFUSE_BOOTROM information to configure PLLs
> 
> WingMan Kwok (2):
>       mtd: nand: davinci: allow to change ecclayout by ecclayout command
>       common: cmd_nand: add nand ecclayout command
> 
> pekon gupta (6):
>       board/ti/am335x: update configs for parallel NAND
>       board/ti/am335x: add support for beaglebone NAND cape
>       board/ti/am335x: add support for beaglebone NOR Cape
>       board/ti/am43xx: add support for parallel NAND
>       board/ti/dra7xx: add support for parallel NAND
>       board/ti/dra7xx: add support for parallel NOR
> 
>  arch/arm/cpu/armv7/keystone/clock-k2e.c         |   16 +++
>  arch/arm/cpu/armv7/keystone/clock-k2hk.c        |   32 +++++
>  arch/arm/cpu/armv7/keystone/clock.c             |   43 +++++++
>  arch/arm/cpu/armv7/omap-common/emif-common.c    |   38 +-----
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c  |    3 +
>  arch/arm/cpu/armv7/omap5/hw_data.c              |    2 +-
>  arch/arm/cpu/armv7/omap5/sdram.c                |   60 ++++-----
>  arch/arm/include/asm/arch-keystone/clock-k2e.h  |   16 +++
>  arch/arm/include/asm/arch-keystone/clock-k2hk.h |   14 ++
>  arch/arm/include/asm/arch-keystone/clock.h      |    4 +
>  arch/arm/include/asm/arch-keystone/hardware.h   |    4 +
>  arch/arm/include/asm/arch-omap5/mem.h           |   12 +-
>  arch/arm/include/asm/ti-common/davinci_nand.h   |    4 +
>  board/compulab/cm_t54/cm_t54.c                  |    6 +-
>  board/ti/am335x/Kconfig                         |    9 ++
>  board/ti/am335x/board.c                         |   19 +--
>  board/ti/am335x/mux.c                           |  156 +++++++++++------------
>  board/ti/am43xx/board.c                         |    1 +
>  board/ti/am43xx/mux.c                           |   43 ++++++-
>  board/ti/dra7xx/evm.c                           |   31 +++++
>  board/ti/dra7xx/mux_data.h                      |   61 +++++++++
>  board/ti/ks2_evm/board_k2e.c                    |   23 +++-
>  board/ti/ks2_evm/board_k2hk.c                   |   29 ++++-
>  common/Makefile                                 |   12 +-
>  common/cmd_nand.c                               |   91 +++++++++++++
>  configs/am335x_evm_defconfig                    |    3 +-
>  configs/am335x_evm_nor_defconfig                |    3 +-
>  configs/am335x_evm_norboot_defconfig            |    3 +-
>  configs/am335x_evm_spiboot_defconfig            |    3 +-
>  configs/am335x_evm_uart1_defconfig              |    4 -
>  configs/am335x_evm_uart2_defconfig              |    4 -
>  configs/am335x_evm_uart3_defconfig              |    4 -
>  configs/am335x_evm_uart4_defconfig              |    4 -
>  configs/am335x_evm_uart5_defconfig              |    4 -
>  configs/am335x_evm_usbspl_defconfig             |    3 +-
>  doc/README.cfi                                  |   13 ++
>  doc/README.nand                                 |   12 ++
>  drivers/mtd/nand/davinci_nand.c                 |   94 ++++++++++++++
>  include/configs/am335x_evm.h                    |   67 +++++-----
>  include/configs/am43xx_evm.h                    |   64 ++++++++++
>  include/configs/cm_t54.h                        |    3 +
>  include/configs/dra7xx_evm.h                    |   89 +++++++++++++
>  include/configs/pcm051.h                        |  140 +-------------------
>  include/configs/tam3517-common.h                |    1 +
>  include/configs/ti_armv7_common.h               |   19 +--
>  include/configs/tseries.h                       |    6 +-
>  include/nand.h                                  |    7 +
>  47 files changed, 887 insertions(+), 392 deletions(-)
>  delete mode 100644 configs/am335x_evm_uart1_defconfig
>  delete mode 100644 configs/am335x_evm_uart2_defconfig
>  delete mode 100644 configs/am335x_evm_uart3_defconfig
>  delete mode 100644 configs/am335x_evm_uart4_defconfig
>  delete mode 100644 configs/am335x_evm_uart5_defconfig

Applied to u-boot/master, 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/20140829/403f0229/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-08-25 19:18 Tom Rini
  2014-08-29 17:48 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-08-25 19:18 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 1899fac925eda817e12234aef3d01d354788662e:

  Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master' (2014-08-09 16:48:34 +0200)

are available in the git repository at:


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

for you to fetch changes up to 6302ea5409b8cc0abf667a94d22ef81543e04fd4:

  common: cmd_nand: add nand ecclayout command (2014-08-25 14:23:52 -0400)

----------------------------------------------------------------
Dmitry Lifshitz (3):
      cm-t54: fix EEPROM read return value check
      cm-t54: fix eMMC boot mode check
      cm-t54: convert to generic board

Jeroen Hofstee (1):
      SOM: tam3517: convert to generic board

Lokesh Vutla (1):
      ARM: DRA: Enable VTT regulator

Matwey V. Kornilov (1):
      pcm051: use ti_am335x_common.h config

Sricharan R (1):
      ARM: DRA7: Enable software leveling for dra7

Tom Rini (6):
      am335x_evm: Move SPL network defines
      TI:armv7: Change CONFIG_SPL_STACK to not be CONFIG_SYS_INIT_SP_ADDR
      tseries: Set CONFIG_ENV_IS_NOWHERE for SPL+NAND
      common/Makefile: Consolidate SPL ENV options, correct inclusion
      am335x_evm: Enable CONFIG_SPL_ENV_SUPPORT on EMMC_BOOT
      am335x_evm: Convert CONFIG_CONS_INDEX into a menu choice

Vitaly Andrianov (1):
      keystone2: use EFUSE_BOOTROM information to configure PLLs

WingMan Kwok (2):
      mtd: nand: davinci: allow to change ecclayout by ecclayout command
      common: cmd_nand: add nand ecclayout command

pekon gupta (6):
      board/ti/am335x: update configs for parallel NAND
      board/ti/am335x: add support for beaglebone NAND cape
      board/ti/am335x: add support for beaglebone NOR Cape
      board/ti/am43xx: add support for parallel NAND
      board/ti/dra7xx: add support for parallel NAND
      board/ti/dra7xx: add support for parallel NOR

 arch/arm/cpu/armv7/keystone/clock-k2e.c         |   16 +++
 arch/arm/cpu/armv7/keystone/clock-k2hk.c        |   32 +++++
 arch/arm/cpu/armv7/keystone/clock.c             |   43 +++++++
 arch/arm/cpu/armv7/omap-common/emif-common.c    |   38 +-----
 arch/arm/cpu/armv7/omap-common/hwinit-common.c  |    3 +
 arch/arm/cpu/armv7/omap5/hw_data.c              |    2 +-
 arch/arm/cpu/armv7/omap5/sdram.c                |   60 ++++-----
 arch/arm/include/asm/arch-keystone/clock-k2e.h  |   16 +++
 arch/arm/include/asm/arch-keystone/clock-k2hk.h |   14 ++
 arch/arm/include/asm/arch-keystone/clock.h      |    4 +
 arch/arm/include/asm/arch-keystone/hardware.h   |    4 +
 arch/arm/include/asm/arch-omap5/mem.h           |   12 +-
 arch/arm/include/asm/ti-common/davinci_nand.h   |    4 +
 board/compulab/cm_t54/cm_t54.c                  |    6 +-
 board/ti/am335x/Kconfig                         |    9 ++
 board/ti/am335x/board.c                         |   19 +--
 board/ti/am335x/mux.c                           |  156 +++++++++++------------
 board/ti/am43xx/board.c                         |    1 +
 board/ti/am43xx/mux.c                           |   43 ++++++-
 board/ti/dra7xx/evm.c                           |   31 +++++
 board/ti/dra7xx/mux_data.h                      |   61 +++++++++
 board/ti/ks2_evm/board_k2e.c                    |   23 +++-
 board/ti/ks2_evm/board_k2hk.c                   |   29 ++++-
 common/Makefile                                 |   12 +-
 common/cmd_nand.c                               |   91 +++++++++++++
 configs/am335x_evm_defconfig                    |    3 +-
 configs/am335x_evm_nor_defconfig                |    3 +-
 configs/am335x_evm_norboot_defconfig            |    3 +-
 configs/am335x_evm_spiboot_defconfig            |    3 +-
 configs/am335x_evm_uart1_defconfig              |    4 -
 configs/am335x_evm_uart2_defconfig              |    4 -
 configs/am335x_evm_uart3_defconfig              |    4 -
 configs/am335x_evm_uart4_defconfig              |    4 -
 configs/am335x_evm_uart5_defconfig              |    4 -
 configs/am335x_evm_usbspl_defconfig             |    3 +-
 doc/README.cfi                                  |   13 ++
 doc/README.nand                                 |   12 ++
 drivers/mtd/nand/davinci_nand.c                 |   94 ++++++++++++++
 include/configs/am335x_evm.h                    |   67 +++++-----
 include/configs/am43xx_evm.h                    |   64 ++++++++++
 include/configs/cm_t54.h                        |    3 +
 include/configs/dra7xx_evm.h                    |   89 +++++++++++++
 include/configs/pcm051.h                        |  140 +-------------------
 include/configs/tam3517-common.h                |    1 +
 include/configs/ti_armv7_common.h               |   19 +--
 include/configs/tseries.h                       |    6 +-
 include/nand.h                                  |    7 +
 47 files changed, 887 insertions(+), 392 deletions(-)
 delete mode 100644 configs/am335x_evm_uart1_defconfig
 delete mode 100644 configs/am335x_evm_uart2_defconfig
 delete mode 100644 configs/am335x_evm_uart3_defconfig
 delete mode 100644 configs/am335x_evm_uart4_defconfig
 delete mode 100644 configs/am335x_evm_uart5_defconfig

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/20140825/2f9def4e/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-07-26  1:29 Tom Rini
@ 2014-07-29 11:55 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-07-29 11:55 UTC (permalink / raw)
  To: u-boot

Hi Tom,

(seems like I had not sent this yesterday)

On Fri, 25 Jul 2014 21:29:15 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 23f23f23d509e8e873797884456070c8a47d72b2:
> 
>   socfpga: Relocate arch common functions away from board (2014-07-05 10:14:46 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 434f2cfcad9f70231ad5a096325ba72ef0d2a2cc:
> 
>   ARM: omap: move board specific NAND configs out from ti_armv7_common.h (2014-07-25 16:26:12 -0400)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (1):
>       tricorder: convert to generic board
> 
> Hao Zhang (10):
>       keystone2: ddr: add DDR3 PHY configs updated for PG 2.0
>       keystone2: move cpu_to_bus() to keystone.c
>       keystone2: add possibility to turn off all dsps
>       ARM: keystone2: move K2HK board files to common KS2 board directory
>       configs: k2hk_evm: config: add common EVM configuration header
>       keystone: ddr3: move K2HK DDR3 configuration to a common file
>       ARM: keystone2: add K2E SoC hardware definitions
>       ARM: keystone2: clock: add K2E clock support
>       ARM: keystone2: add MSMC cache coherency support for K2E SOC
>       board: k2e-evm: add board support
> 
> Khoronzhuk, Ivan (10):
>       mtd: nand: davinci: add opportunity to write keystone U-boot image
>       keystone: add support for NAND gpheader image
>       k2hk_evm: add script to automate NAND flash process
>       ARM: keystone2: psc: use common PSC base
>       keystone: ddr3: add ddr3.h to hold ddr3 API
>       ARM: keystone2: keystone_nav: make it dependent on keystone driver
>       k2hk: use common KS2_ prefix for all hardware definitions
>       ARM: keystone: clock: move K2HK SoC dependent code in separate file
>       keystone2: use CONFIG_SOC_KEYSTONE in common places
>       ARM: keystone2: spl: add K2E SoC support
> 
> Mugunthan V N (3):
>       drivers: net: cpsw: add support for using second port as ethernet
>       ARM: DRA7xx: Add cpsw second port pinmux
>       ARM: dra7_evm: Add Ethernet support for dra72x platform
> 
> Murali Karicheri (1):
>       keystone2: add env option to do unitrd dt fixup
> 
> Rajendra Nayak (1):
>       ARM: OMAP: Fix handling of errata i727
> 
> Stefan Roese (3):
>       ARM: omap: Fix GPMC init for OMAP3 platforms
>       ARM: omap: Remove unused arch/arm/cpu/armv7/omap3/mem.c
>       ARM: omap: tao3530: Convert to generic board
> 
> Tom Rini (3):
>       power/pmic.h: Add prototype for power_init_board.
>       tps65218/am43xx_evm: Add power framework support to TPS65218
>       am335x_evm / gumstix pepper: Correct DDR settings
> 
> pekon gupta (3):
>       ARM: omap: fix GPMC address-map size for NAND and NOR devices
>       ARM: omap: clean redundant PISMO_xx macros used in OMAP3
>       ARM: omap: move board specific NAND configs out from ti_armv7_common.h
> 
>  Makefile                                           |    6 +
>  arch/arm/cpu/armv7/keystone/Makefile               |    5 +-
>  arch/arm/cpu/armv7/keystone/clock-k2e.c            |  101 +++++++
>  arch/arm/cpu/armv7/keystone/clock-k2hk.c           |  113 ++++++++
>  arch/arm/cpu/armv7/keystone/clock.c                |  154 ++---------
>  arch/arm/cpu/armv7/keystone/cmd_clock.c            |   31 ++-
>  arch/arm/cpu/armv7/keystone/ddr3.c                 |   25 +-
>  arch/arm/cpu/armv7/keystone/init.c                 |   16 +-
>  arch/arm/cpu/armv7/keystone/keystone.c             |   87 +++++++
>  arch/arm/cpu/armv7/keystone/msmc.c                 |    6 +-
>  arch/arm/cpu/armv7/keystone/psc.c                  |   42 ++-
>  arch/arm/cpu/armv7/keystone/spl.c                  |    8 +
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    3 +-
>  arch/arm/cpu/armv7/omap-common/mem-common.c        |   15 +-
>  arch/arm/cpu/armv7/omap3/mem.c                     |  139 ----------
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    4 -
>  arch/arm/include/asm/arch-am33xx/mem.h             |    7 -
>  arch/arm/include/asm/arch-keystone/clock-k2e.h     |   68 +++++
>  arch/arm/include/asm/arch-keystone/clock-k2hk.h    |   23 +-
>  arch/arm/include/asm/arch-keystone/clock.h         |   32 +++
>  arch/arm/include/asm/arch-keystone/clock_defs.h    |    2 +-
>  arch/arm/include/asm/arch-keystone/ddr3.h          |   56 ++++
>  arch/arm/include/asm/arch-keystone/hardware-k2e.h  |   44 ++++
>  arch/arm/include/asm/arch-keystone/hardware-k2hk.h |  182 +++++--------
>  arch/arm/include/asm/arch-keystone/hardware.h      |  117 ++++++---
>  arch/arm/include/asm/arch-keystone/mon.h           |   15 ++
>  arch/arm/include/asm/arch-keystone/msmc.h          |   17 ++
>  arch/arm/include/asm/arch-omap3/cpu.h              |    1 -
>  arch/arm/include/asm/arch-omap3/mem.h              |   13 -
>  arch/arm/include/asm/omap_common.h                 |    8 +
>  board/gumstix/pepper/board.c                       |   30 +--
>  board/ti/am335x/board.c                            |   30 +--
>  board/ti/am43xx/board.c                            |   14 +
>  board/ti/dra7xx/evm.c                              |    7 +-
>  board/ti/dra7xx/mux_data.h                         |   12 +
>  board/ti/k2hk_evm/Makefile                         |    9 -
>  board/ti/k2hk_evm/ddr3.c                           |  268 -------------------
>  board/ti/ks2_evm/Makefile                          |   13 +
>  board/ti/{k2hk_evm/README => ks2_evm/README_K2HK}  |   28 +-
>  board/ti/{k2hk_evm => ks2_evm}/board.c             |  156 +++--------
>  board/ti/ks2_evm/board.h                           |   19 ++
>  board/ti/ks2_evm/board_k2e.c                       |   39 +++
>  board/ti/ks2_evm/board_k2hk.c                      |   81 ++++++
>  board/ti/ks2_evm/ddr3_cfg.c                        |  170 ++++++++++++
>  board/ti/ks2_evm/ddr3_cfg.h                        |   24 ++
>  board/ti/ks2_evm/ddr3_k2e.c                        |   55 ++++
>  board/ti/ks2_evm/ddr3_k2hk.c                       |   84 ++++++
>  boards.cfg                                         |    3 +-
>  common/image-fdt.c                                 |    2 +-
>  doc/README.nand                                    |   12 +
>  drivers/mtd/nand/davinci_nand.c                    |  196 ++++++++++++++
>  drivers/net/cpsw.c                                 |    8 +-
>  drivers/power/pmic/pmic_tps65218.c                 |   22 ++
>  drivers/serial/ns16550.c                           |    4 +-
>  include/configs/am335x_evm.h                       |    6 +
>  include/configs/am3517_crane.h                     |    7 +-
>  include/configs/am3517_evm.h                       |    7 +-
>  include/configs/am43xx_evm.h                       |    2 +
>  include/configs/cm_t335.h                          |    5 +
>  include/configs/cm_t35.h                           |    3 -
>  include/configs/devkit8000.h                       |    2 -
>  include/configs/dig297.h                           |    4 -
>  include/configs/k2e_evm.h                          |   37 +++
>  include/configs/k2hk_evm.h                         |  253 +-----------------
>  include/configs/ks2_evm.h                          |  275 ++++++++++++++++++++
>  include/configs/mcx.h                              |    4 -
>  include/configs/nokia_rx51.h                       |    2 -
>  include/configs/omap3_beagle.h                     |   13 +-
>  include/configs/omap3_evm_common.h                 |    7 +-
>  include/configs/omap3_igep00x0.h                   |   10 +-
>  include/configs/omap3_logic.h                      |    8 +-
>  include/configs/omap3_overo.h                      |   12 +-
>  include/configs/omap3_pandora.h                    |    7 +-
>  include/configs/omap3_zoom1.h                      |   13 +-
>  include/configs/pengwyn.h                          |    6 +
>  include/configs/tam3517-common.h                   |    4 -
>  include/configs/tao3530.h                          |    8 +-
>  include/configs/ti_armv7_common.h                  |    8 -
>  include/configs/tricorder.h                        |    4 +-
>  include/cpsw.h                                     |    1 +
>  include/power/pmic.h                               |    1 +
>  include/power/tps65218.h                           |    1 +
>  82 files changed, 2038 insertions(+), 1298 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/keystone/clock-k2e.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/clock-k2hk.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/keystone.c
>  delete mode 100644 arch/arm/cpu/armv7/omap3/mem.c
>  create mode 100644 arch/arm/include/asm/arch-keystone/clock-k2e.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/ddr3.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2e.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/mon.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/msmc.h
>  delete mode 100644 board/ti/k2hk_evm/Makefile
>  delete mode 100644 board/ti/k2hk_evm/ddr3.c
>  create mode 100644 board/ti/ks2_evm/Makefile
>  rename board/ti/{k2hk_evm/README => ks2_evm/README_K2HK} (80%)
>  rename board/ti/{k2hk_evm => ks2_evm}/board.c (65%)
>  create mode 100644 board/ti/ks2_evm/board.h
>  create mode 100644 board/ti/ks2_evm/board_k2e.c
>  create mode 100644 board/ti/ks2_evm/board_k2hk.c
>  create mode 100644 board/ti/ks2_evm/ddr3_cfg.c
>  create mode 100644 board/ti/ks2_evm/ddr3_cfg.h
>  create mode 100644 board/ti/ks2_evm/ddr3_k2e.c
>  create mode 100644 board/ti/ks2_evm/ddr3_k2hk.c
>  create mode 100644 include/configs/k2e_evm.h
>  create mode 100644 include/configs/ks2_evm.h
> 
> Note that this does break tricorder boards for now but it's due to
> fixing another bug in other boards and now we need to address moving the
> stack around and testing that on the tricorder boards.  I think we can
> just pick this up later.  Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-07-26  1:29 Tom Rini
  2014-07-29 11:55 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-07-26  1:29 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 23f23f23d509e8e873797884456070c8a47d72b2:

  socfpga: Relocate arch common functions away from board (2014-07-05 10:14:46 +0200)

are available in the git repository at:

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

for you to fetch changes up to 434f2cfcad9f70231ad5a096325ba72ef0d2a2cc:

  ARM: omap: move board specific NAND configs out from ti_armv7_common.h (2014-07-25 16:26:12 -0400)

----------------------------------------------------------------
Andreas Bie?mann (1):
      tricorder: convert to generic board

Hao Zhang (10):
      keystone2: ddr: add DDR3 PHY configs updated for PG 2.0
      keystone2: move cpu_to_bus() to keystone.c
      keystone2: add possibility to turn off all dsps
      ARM: keystone2: move K2HK board files to common KS2 board directory
      configs: k2hk_evm: config: add common EVM configuration header
      keystone: ddr3: move K2HK DDR3 configuration to a common file
      ARM: keystone2: add K2E SoC hardware definitions
      ARM: keystone2: clock: add K2E clock support
      ARM: keystone2: add MSMC cache coherency support for K2E SOC
      board: k2e-evm: add board support

Khoronzhuk, Ivan (10):
      mtd: nand: davinci: add opportunity to write keystone U-boot image
      keystone: add support for NAND gpheader image
      k2hk_evm: add script to automate NAND flash process
      ARM: keystone2: psc: use common PSC base
      keystone: ddr3: add ddr3.h to hold ddr3 API
      ARM: keystone2: keystone_nav: make it dependent on keystone driver
      k2hk: use common KS2_ prefix for all hardware definitions
      ARM: keystone: clock: move K2HK SoC dependent code in separate file
      keystone2: use CONFIG_SOC_KEYSTONE in common places
      ARM: keystone2: spl: add K2E SoC support

Mugunthan V N (3):
      drivers: net: cpsw: add support for using second port as ethernet
      ARM: DRA7xx: Add cpsw second port pinmux
      ARM: dra7_evm: Add Ethernet support for dra72x platform

Murali Karicheri (1):
      keystone2: add env option to do unitrd dt fixup

Rajendra Nayak (1):
      ARM: OMAP: Fix handling of errata i727

Stefan Roese (3):
      ARM: omap: Fix GPMC init for OMAP3 platforms
      ARM: omap: Remove unused arch/arm/cpu/armv7/omap3/mem.c
      ARM: omap: tao3530: Convert to generic board

Tom Rini (3):
      power/pmic.h: Add prototype for power_init_board.
      tps65218/am43xx_evm: Add power framework support to TPS65218
      am335x_evm / gumstix pepper: Correct DDR settings

pekon gupta (3):
      ARM: omap: fix GPMC address-map size for NAND and NOR devices
      ARM: omap: clean redundant PISMO_xx macros used in OMAP3
      ARM: omap: move board specific NAND configs out from ti_armv7_common.h

 Makefile                                           |    6 +
 arch/arm/cpu/armv7/keystone/Makefile               |    5 +-
 arch/arm/cpu/armv7/keystone/clock-k2e.c            |  101 +++++++
 arch/arm/cpu/armv7/keystone/clock-k2hk.c           |  113 ++++++++
 arch/arm/cpu/armv7/keystone/clock.c                |  154 ++---------
 arch/arm/cpu/armv7/keystone/cmd_clock.c            |   31 ++-
 arch/arm/cpu/armv7/keystone/ddr3.c                 |   25 +-
 arch/arm/cpu/armv7/keystone/init.c                 |   16 +-
 arch/arm/cpu/armv7/keystone/keystone.c             |   87 +++++++
 arch/arm/cpu/armv7/keystone/msmc.c                 |    6 +-
 arch/arm/cpu/armv7/keystone/psc.c                  |   42 ++-
 arch/arm/cpu/armv7/keystone/spl.c                  |    8 +
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    3 +-
 arch/arm/cpu/armv7/omap-common/mem-common.c        |   15 +-
 arch/arm/cpu/armv7/omap3/mem.c                     |  139 ----------
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    4 -
 arch/arm/include/asm/arch-am33xx/mem.h             |    7 -
 arch/arm/include/asm/arch-keystone/clock-k2e.h     |   68 +++++
 arch/arm/include/asm/arch-keystone/clock-k2hk.h    |   23 +-
 arch/arm/include/asm/arch-keystone/clock.h         |   32 +++
 arch/arm/include/asm/arch-keystone/clock_defs.h    |    2 +-
 arch/arm/include/asm/arch-keystone/ddr3.h          |   56 ++++
 arch/arm/include/asm/arch-keystone/hardware-k2e.h  |   44 ++++
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |  182 +++++--------
 arch/arm/include/asm/arch-keystone/hardware.h      |  117 ++++++---
 arch/arm/include/asm/arch-keystone/mon.h           |   15 ++
 arch/arm/include/asm/arch-keystone/msmc.h          |   17 ++
 arch/arm/include/asm/arch-omap3/cpu.h              |    1 -
 arch/arm/include/asm/arch-omap3/mem.h              |   13 -
 arch/arm/include/asm/omap_common.h                 |    8 +
 board/gumstix/pepper/board.c                       |   30 +--
 board/ti/am335x/board.c                            |   30 +--
 board/ti/am43xx/board.c                            |   14 +
 board/ti/dra7xx/evm.c                              |    7 +-
 board/ti/dra7xx/mux_data.h                         |   12 +
 board/ti/k2hk_evm/Makefile                         |    9 -
 board/ti/k2hk_evm/ddr3.c                           |  268 -------------------
 board/ti/ks2_evm/Makefile                          |   13 +
 board/ti/{k2hk_evm/README => ks2_evm/README_K2HK}  |   28 +-
 board/ti/{k2hk_evm => ks2_evm}/board.c             |  156 +++--------
 board/ti/ks2_evm/board.h                           |   19 ++
 board/ti/ks2_evm/board_k2e.c                       |   39 +++
 board/ti/ks2_evm/board_k2hk.c                      |   81 ++++++
 board/ti/ks2_evm/ddr3_cfg.c                        |  170 ++++++++++++
 board/ti/ks2_evm/ddr3_cfg.h                        |   24 ++
 board/ti/ks2_evm/ddr3_k2e.c                        |   55 ++++
 board/ti/ks2_evm/ddr3_k2hk.c                       |   84 ++++++
 boards.cfg                                         |    3 +-
 common/image-fdt.c                                 |    2 +-
 doc/README.nand                                    |   12 +
 drivers/mtd/nand/davinci_nand.c                    |  196 ++++++++++++++
 drivers/net/cpsw.c                                 |    8 +-
 drivers/power/pmic/pmic_tps65218.c                 |   22 ++
 drivers/serial/ns16550.c                           |    4 +-
 include/configs/am335x_evm.h                       |    6 +
 include/configs/am3517_crane.h                     |    7 +-
 include/configs/am3517_evm.h                       |    7 +-
 include/configs/am43xx_evm.h                       |    2 +
 include/configs/cm_t335.h                          |    5 +
 include/configs/cm_t35.h                           |    3 -
 include/configs/devkit8000.h                       |    2 -
 include/configs/dig297.h                           |    4 -
 include/configs/k2e_evm.h                          |   37 +++
 include/configs/k2hk_evm.h                         |  253 +-----------------
 include/configs/ks2_evm.h                          |  275 ++++++++++++++++++++
 include/configs/mcx.h                              |    4 -
 include/configs/nokia_rx51.h                       |    2 -
 include/configs/omap3_beagle.h                     |   13 +-
 include/configs/omap3_evm_common.h                 |    7 +-
 include/configs/omap3_igep00x0.h                   |   10 +-
 include/configs/omap3_logic.h                      |    8 +-
 include/configs/omap3_overo.h                      |   12 +-
 include/configs/omap3_pandora.h                    |    7 +-
 include/configs/omap3_zoom1.h                      |   13 +-
 include/configs/pengwyn.h                          |    6 +
 include/configs/tam3517-common.h                   |    4 -
 include/configs/tao3530.h                          |    8 +-
 include/configs/ti_armv7_common.h                  |    8 -
 include/configs/tricorder.h                        |    4 +-
 include/cpsw.h                                     |    1 +
 include/power/pmic.h                               |    1 +
 include/power/tps65218.h                           |    1 +
 82 files changed, 2038 insertions(+), 1298 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/keystone/clock-k2e.c
 create mode 100644 arch/arm/cpu/armv7/keystone/clock-k2hk.c
 create mode 100644 arch/arm/cpu/armv7/keystone/keystone.c
 delete mode 100644 arch/arm/cpu/armv7/omap3/mem.c
 create mode 100644 arch/arm/include/asm/arch-keystone/clock-k2e.h
 create mode 100644 arch/arm/include/asm/arch-keystone/ddr3.h
 create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2e.h
 create mode 100644 arch/arm/include/asm/arch-keystone/mon.h
 create mode 100644 arch/arm/include/asm/arch-keystone/msmc.h
 delete mode 100644 board/ti/k2hk_evm/Makefile
 delete mode 100644 board/ti/k2hk_evm/ddr3.c
 create mode 100644 board/ti/ks2_evm/Makefile
 rename board/ti/{k2hk_evm/README => ks2_evm/README_K2HK} (80%)
 rename board/ti/{k2hk_evm => ks2_evm}/board.c (65%)
 create mode 100644 board/ti/ks2_evm/board.h
 create mode 100644 board/ti/ks2_evm/board_k2e.c
 create mode 100644 board/ti/ks2_evm/board_k2hk.c
 create mode 100644 board/ti/ks2_evm/ddr3_cfg.c
 create mode 100644 board/ti/ks2_evm/ddr3_cfg.h
 create mode 100644 board/ti/ks2_evm/ddr3_k2e.c
 create mode 100644 board/ti/ks2_evm/ddr3_k2hk.c
 create mode 100644 include/configs/k2e_evm.h
 create mode 100644 include/configs/ks2_evm.h

Note that this does break tricorder boards for now but it's due to
fixing another bug in other boards and now we need to address moving the
stack around and testing that on the tricorder boards.  I think we can
just pick this up later.  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/20140725/5404de8d/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-06-19 22:03 Tom Rini
@ 2014-07-01 13:43 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-07-01 13:43 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 19 Jun 2014 18:03:25 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 0a26e1d6c394aacbf1153977b7348d1dff85db3f:
> 
>   arm: fix a double-definition error of _start symbol (2014-06-09 10:36:40 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 12cc54376768461533b55ada1b0b6d4979f40579:
> 
>   omap3: overo: Select fdtfile for expansion board (2014-06-19 17:53:59 -0400)
> 
> ----------------------------------------------------------------
> Ash Charles (3):
>       omap: Don't enable GPMC CS0 with nothing attached
>       omap4: duovero: Correct name of default device tree
>       omap3: overo: Select fdtfile for expansion board
> 
> Axel Lin (1):
>       spi: davinci: Fix register address for SPI1_BUS
> 
> Felipe Balbi (5):
>       board: ti: am43xx: print unsupported board name
>       cpu: armv7: am33x: ddr: write emif ref_ctrl_shadow register
>       board: ti: am43xx: add support for AM43xx Starter Kit
>       board: ti: am43xx: add AM437x SK PHY Address
>       board: ti: am43xx: enable QSPI and Gbit Ethernet on AM437x SK
> 
> Jeroen Hofstee (1):
>       omap3: board: trivial: add void for no args
> 
> Khoronzhuk, Ivan (2):
>       mtd: nand: davinci: add header file for driver definitions
>       ARM: keystone: aemif: move aemif driver to drivers/memory/ti-aemif.c
> 
> Stefano Babic (1):
>       OMAP: disable gpmc timeout safely for reenabling
> 
>  arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    2 +-
>  arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |    1 +
>  arch/arm/cpu/armv7/am33xx/ddr.c                    |    1 +
>  arch/arm/cpu/armv7/keystone/Makefile               |    1 -
>  arch/arm/cpu/armv7/omap-common/mem-common.c        |    6 +-
>  arch/arm/cpu/armv7/omap3/board.c                   |    4 +-
>  arch/arm/include/asm/arch-davinci/emif_defs.h      |   72 ------------------
>  arch/arm/include/asm/arch-davinci/hardware.h       |    1 -
>  arch/arm/include/asm/arch-davinci/nand_defs.h      |   38 ----------
>  arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    7 --
>  arch/arm/include/asm/arch-keystone/hardware.h      |   30 +-------
>  arch/arm/include/asm/arch-keystone/nand_defs.h     |   23 ------
>  arch/arm/include/asm/arch-tnetv107x/emif_defs.h    |    1 -
>  arch/arm/include/asm/arch-tnetv107x/hardware.h     |    2 +
>  arch/arm/include/asm/arch-tnetv107x/nand_defs.h    |   23 ------
>  .../emif_defs.h => ti-common/davinci_nand.h}       |   55 ++++++++++----
>  arch/arm/include/asm/ti-common/ti-aemif.h          |   39 ++++++++++
>  board/Barix/ipam390/ipam390.c                      |    2 +-
>  board/ait/cam_enc_4xx/cam_enc_4xx.c                |    2 +-
>  board/davinci/da8xxevm/da830evm.c                  |    3 +-
>  board/davinci/da8xxevm/da850evm.c                  |    2 +-
>  board/davinci/dm355evm/dm355evm.c                  |    3 +-
>  board/davinci/dm355leopard/dm355leopard.c          |    2 +-
>  board/davinci/dm365evm/dm365evm.c                  |    3 +-
>  board/davinci/dm6467evm/dm6467evm.c                |    3 +-
>  board/davinci/ea20/ea20.c                          |    2 +-
>  board/davinci/sonata/sonata.c                      |    2 +-
>  board/enbw/enbw_cmc/enbw_cmc.c                     |    2 +-
>  board/omicron/calimain/calimain.c                  |    2 +-
>  board/overo/overo.c                                |   14 ++++
>  board/ti/am43xx/board.c                            |   79 +++++++++++++++++++-
>  board/ti/am43xx/board.h                            |    5 ++
>  board/ti/am43xx/mux.c                              |    3 +
>  board/ti/k2hk_evm/board.c                          |   10 +--
>  board/ti/tnetv107xevm/sdb_board.c                  |    2 +-
>  drivers/Makefile                                   |    1 +
>  drivers/memory/Makefile                            |    1 +
>  .../keystone/aemif.c => drivers/memory/ti-aemif.c  |   37 +++++----
>  drivers/mtd/nand/davinci_nand.c                    |    3 +-
>  drivers/spi/davinci_spi.c                          |    2 +-
>  include/configs/am43xx_evm.h                       |    2 +
>  include/configs/davinci_dm6467evm.h                |    2 +
>  include/configs/k2hk_evm.h                         |    6 ++
>  include/configs/omap3_overo.h                      |   10 +--
>  include/configs/ti_omap4_common.h                  |    2 +-
>  45 files changed, 255 insertions(+), 258 deletions(-)
>  delete mode 100644 arch/arm/include/asm/arch-davinci/emif_defs.h
>  delete mode 100644 arch/arm/include/asm/arch-davinci/nand_defs.h
>  delete mode 100644 arch/arm/include/asm/arch-keystone/nand_defs.h
>  delete mode 100644 arch/arm/include/asm/arch-tnetv107x/emif_defs.h
>  delete mode 100644 arch/arm/include/asm/arch-tnetv107x/nand_defs.h
>  rename arch/arm/include/asm/{arch-keystone/emif_defs.h => ti-common/davinci_nand.h} (56%)
>  create mode 100644 arch/arm/include/asm/ti-common/ti-aemif.h
>  create mode 100644 drivers/memory/Makefile
>  rename arch/arm/cpu/armv7/keystone/aemif.c => drivers/memory/ti-aemif.c (63%)
> 

Applied to u-boot-arm/master, thanks -- and apologies for having missed
it!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-06-19 22:03 Tom Rini
  2014-07-01 13:43 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-06-19 22:03 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 0a26e1d6c394aacbf1153977b7348d1dff85db3f:

  arm: fix a double-definition error of _start symbol (2014-06-09 10:36:40 +0200)

are available in the git repository at:

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

for you to fetch changes up to 12cc54376768461533b55ada1b0b6d4979f40579:

  omap3: overo: Select fdtfile for expansion board (2014-06-19 17:53:59 -0400)

----------------------------------------------------------------
Ash Charles (3):
      omap: Don't enable GPMC CS0 with nothing attached
      omap4: duovero: Correct name of default device tree
      omap3: overo: Select fdtfile for expansion board

Axel Lin (1):
      spi: davinci: Fix register address for SPI1_BUS

Felipe Balbi (5):
      board: ti: am43xx: print unsupported board name
      cpu: armv7: am33x: ddr: write emif ref_ctrl_shadow register
      board: ti: am43xx: add support for AM43xx Starter Kit
      board: ti: am43xx: add AM437x SK PHY Address
      board: ti: am43xx: enable QSPI and Gbit Ethernet on AM437x SK

Jeroen Hofstee (1):
      omap3: board: trivial: add void for no args

Khoronzhuk, Ivan (2):
      mtd: nand: davinci: add header file for driver definitions
      ARM: keystone: aemif: move aemif driver to drivers/memory/ti-aemif.c

Stefano Babic (1):
      OMAP: disable gpmc timeout safely for reenabling

 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    2 +-
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |    1 +
 arch/arm/cpu/armv7/am33xx/ddr.c                    |    1 +
 arch/arm/cpu/armv7/keystone/Makefile               |    1 -
 arch/arm/cpu/armv7/omap-common/mem-common.c        |    6 +-
 arch/arm/cpu/armv7/omap3/board.c                   |    4 +-
 arch/arm/include/asm/arch-davinci/emif_defs.h      |   72 ------------------
 arch/arm/include/asm/arch-davinci/hardware.h       |    1 -
 arch/arm/include/asm/arch-davinci/nand_defs.h      |   38 ----------
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    7 --
 arch/arm/include/asm/arch-keystone/hardware.h      |   30 +-------
 arch/arm/include/asm/arch-keystone/nand_defs.h     |   23 ------
 arch/arm/include/asm/arch-tnetv107x/emif_defs.h    |    1 -
 arch/arm/include/asm/arch-tnetv107x/hardware.h     |    2 +
 arch/arm/include/asm/arch-tnetv107x/nand_defs.h    |   23 ------
 .../emif_defs.h => ti-common/davinci_nand.h}       |   55 ++++++++++----
 arch/arm/include/asm/ti-common/ti-aemif.h          |   39 ++++++++++
 board/Barix/ipam390/ipam390.c                      |    2 +-
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |    2 +-
 board/davinci/da8xxevm/da830evm.c                  |    3 +-
 board/davinci/da8xxevm/da850evm.c                  |    2 +-
 board/davinci/dm355evm/dm355evm.c                  |    3 +-
 board/davinci/dm355leopard/dm355leopard.c          |    2 +-
 board/davinci/dm365evm/dm365evm.c                  |    3 +-
 board/davinci/dm6467evm/dm6467evm.c                |    3 +-
 board/davinci/ea20/ea20.c                          |    2 +-
 board/davinci/sonata/sonata.c                      |    2 +-
 board/enbw/enbw_cmc/enbw_cmc.c                     |    2 +-
 board/omicron/calimain/calimain.c                  |    2 +-
 board/overo/overo.c                                |   14 ++++
 board/ti/am43xx/board.c                            |   79 +++++++++++++++++++-
 board/ti/am43xx/board.h                            |    5 ++
 board/ti/am43xx/mux.c                              |    3 +
 board/ti/k2hk_evm/board.c                          |   10 +--
 board/ti/tnetv107xevm/sdb_board.c                  |    2 +-
 drivers/Makefile                                   |    1 +
 drivers/memory/Makefile                            |    1 +
 .../keystone/aemif.c => drivers/memory/ti-aemif.c  |   37 +++++----
 drivers/mtd/nand/davinci_nand.c                    |    3 +-
 drivers/spi/davinci_spi.c                          |    2 +-
 include/configs/am43xx_evm.h                       |    2 +
 include/configs/davinci_dm6467evm.h                |    2 +
 include/configs/k2hk_evm.h                         |    6 ++
 include/configs/omap3_overo.h                      |   10 +--
 include/configs/ti_omap4_common.h                  |    2 +-
 45 files changed, 255 insertions(+), 258 deletions(-)
 delete mode 100644 arch/arm/include/asm/arch-davinci/emif_defs.h
 delete mode 100644 arch/arm/include/asm/arch-davinci/nand_defs.h
 delete mode 100644 arch/arm/include/asm/arch-keystone/nand_defs.h
 delete mode 100644 arch/arm/include/asm/arch-tnetv107x/emif_defs.h
 delete mode 100644 arch/arm/include/asm/arch-tnetv107x/nand_defs.h
 rename arch/arm/include/asm/{arch-keystone/emif_defs.h => ti-common/davinci_nand.h} (56%)
 create mode 100644 arch/arm/include/asm/ti-common/ti-aemif.h
 create mode 100644 drivers/memory/Makefile
 rename arch/arm/cpu/armv7/keystone/aemif.c => drivers/memory/ti-aemif.c (63%)

-- 
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/20140619/d621a554/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-06-06 21:56 Tom Rini
@ 2014-06-08  7:45 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-06-08  7:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 6 Jun 2014 17:56:51 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit cc49da249cf2f380d2fed5571fad65ce6494fc95:
> 
>   Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-06-02 08:43:48 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 83bad1026b9e3a4f6b7783cc1cbb434c1bbd3fa2:
> 
>   arm:am43xx: Add TPS65218 support to scale voltages up (2014-06-06 17:46:16 -0400)
> 
> ----------------------------------------------------------------
> Brian Norris (2):
>       mtd: nand: don't use read_buf for 8-bit ONFI transfers
>       mtd: nand: force NAND_CMD_READID onto 8-bit bus
> 
> David Mosberger (1):
>       mtd: nand: fix GET/SET_FEATURES address on 16-bit devices
> 
> Hannes Petermaier (6):
>       arch-am33xx: Add defines for timer0-7
>       board/BuR/common: introduce usage of CONFIG_SYS_GENERIC_BOARD
>       board/BuR/tseries: Add support for using 8-bit on eMMC
>       board/BuR/tseries: only run gpmc_init(...) in NAND-build
>       board/BuR/common: Add CONFIG_CMD_I2C
>       board/BuR/tseries: cosmetic changes
> 
> Jeroen Hofstee (1):
>       tam3517: fix NAND detection
> 
> Lokesh Vutla (2):
>       ARM: AM43xx: Fix mmcboot command in EXTRA_ENV_SETTINGS
>       ARM: AM43xx: Fix UART clocks enabling
> 
> Murali Karicheri (1):
>       keystone: init: enable UART1 to be able use it from kernel
> 
> Sourav Poddar (2):
>       am43xx_evm: Add qspiboot target
>       ti: qspi: populate slave device to set flash quad bit.
> 
> Tom Rini (6):
>       arm:am33xx: Make dram_init call sdram_init() in some contexts
>       arm:am33xx: Rework s_init and add board_early_init_f
>       am43xx: Only read the MPU frequency bits of CTRL_DEV_ATTR
>       arm:am33xx: Add a scale_vcores() hook
>       power: Add support for the TPS65218 PMIC
>       arm:am43xx: Add TPS65218 support to scale voltages up
> 
> WingMan Kwok (1):
>       keystone: k2hk: enable support of nand ecclayout command
> 
> pekon gupta (12):
>       mtd: nand: omap_elm: remove #include omap_gpmc.h
>       mtd: nand: omap_elm: use bch_type instead of nibble count to differentiate between BCH4/BCH8/BCH16
>       mtd: nand: omap_elm: use macros for register definitions
>       mtd: nand: omap_gpmc: remove unused members of 'struct nand_bch_priv'
>       mtd: nand: omap_gpmc: rename struct nand_bch_priv to struct omap_nand_info
>       mtd: nand: omap_gpmc: minor cleanup of omap_correct_data_bch
>       mtd: nand: omap: fix error-codes returned from omap-elm driver
>       mtd: nand: omap: add CONFIG_SYS_NAND_BUSWIDTH_16BIT to indicate NAND device bus-width
>       omap3: remove remnant macros GPMC_NAND_ECC_LP_x8_LAYOUT and GPMC_NAND_ECC_LP_x16_LAYOUT
>       mtd: nand: omap_gpmc: use macro for register definitions
>       mtd: nand: omap: add support for BCH16_ECC - NAND driver updates
>       am335x: update README for BCH16
> 
>  arch/arm/cpu/armv7/am33xx/board.c                  |   20 +-
>  arch/arm/cpu/armv7/am33xx/clock.c                  |   11 ++
>  arch/arm/cpu/armv7/am33xx/clock_am43xx.c           |    9 +
>  arch/arm/cpu/armv7/am33xx/emif4.c                  |    4 +
>  arch/arm/cpu/armv7/keystone/init.c                 |    9 +
>  arch/arm/cpu/armv7/omap3/mem.c                     |   12 --
>  arch/arm/include/asm/arch-am33xx/clock.h           |    1 +
>  arch/arm/include/asm/arch-am33xx/cpu.h             |   35 +++-
>  arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    2 -
>  arch/arm/include/asm/arch-keystone/hardware.h      |    3 +
>  arch/arm/include/asm/arch-omap3/mem.h              |    8 -
>  board/BuR/tseries/board.c                          |    2 +
>  board/BuR/tseries/mux.c                            |    9 +-
>  board/compulab/cm_t35/cm_t35.c                     |   12 +-
>  board/ti/am43xx/Makefile                           |    2 +-
>  board/ti/am43xx/board.c                            |   55 +++++-
>  boards.cfg                                         |    1 +
>  doc/README.nand                                    |   60 ++++++
>  drivers/mtd/nand/am335x_spl_bch.c                  |    2 +-
>  drivers/mtd/nand/atmel_nand.c                      |    2 +-
>  drivers/mtd/nand/nand_base.c                       |   11 +-
>  drivers/mtd/nand/nand_spl_simple.c                 |    2 +-
>  drivers/mtd/nand/omap_elm.c                        |   28 ++-
>  drivers/mtd/nand/omap_gpmc.c                       |  193 +++++++++++++-------
>  drivers/power/pmic/Makefile                        |    1 +
>  drivers/power/pmic/pmic_tps65218.c                 |   97 ++++++++++
>  drivers/spi/ti_qspi.c                              |    1 +
>  include/configs/am3517_crane.h                     |    1 +
>  include/configs/am43xx_evm.h                       |   45 ++++-
>  include/configs/bur_am335x_common.h                |    4 +-
>  include/configs/cm_t335.h                          |    1 -
>  include/configs/cm_t35.h                           |    1 -
>  include/configs/devkit8000.h                       |    1 +
>  include/configs/dig297.h                           |    1 +
>  include/configs/k2hk_evm.h                         |    4 +-
>  include/configs/omap3_beagle.h                     |    1 +
>  include/configs/omap3_evm_common.h                 |    2 +-
>  include/configs/omap3_igep00x0.h                   |    1 +
>  include/configs/omap3_logic.h                      |    1 +
>  include/configs/omap3_overo.h                      |    1 +
>  include/configs/omap3_zoom1.h                      |    1 +
>  include/configs/pengwyn.h                          |    1 -
>  include/configs/tam3517-common.h                   |    2 +
>  include/configs/tao3530.h                          |    2 +-
>  include/configs/ti_am335x_common.h                 |    9 +
>  include/configs/ti_armv7_common.h                  |    3 +-
>  include/configs/tseries.h                          |    1 -
>  include/linux/mtd/nand.h                           |   19 ++
>  include/linux/mtd/omap_elm.h                       |   11 +-
>  include/linux/mtd/omap_gpmc.h                      |   11 +-
>  include/power/tps65218.h                           |   63 +++++++
>  51 files changed, 624 insertions(+), 155 deletions(-)
>  create mode 100644 drivers/power/pmic/pmic_tps65218.c
>  create mode 100644 include/power/tps65218.h
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-06-06 21:56 Tom Rini
  2014-06-08  7:45 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-06-06 21:56 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit cc49da249cf2f380d2fed5571fad65ce6494fc95:

  Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-06-02 08:43:48 +0200)

are available in the git repository at:


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

for you to fetch changes up to 83bad1026b9e3a4f6b7783cc1cbb434c1bbd3fa2:

  arm:am43xx: Add TPS65218 support to scale voltages up (2014-06-06 17:46:16 -0400)

----------------------------------------------------------------
Brian Norris (2):
      mtd: nand: don't use read_buf for 8-bit ONFI transfers
      mtd: nand: force NAND_CMD_READID onto 8-bit bus

David Mosberger (1):
      mtd: nand: fix GET/SET_FEATURES address on 16-bit devices

Hannes Petermaier (6):
      arch-am33xx: Add defines for timer0-7
      board/BuR/common: introduce usage of CONFIG_SYS_GENERIC_BOARD
      board/BuR/tseries: Add support for using 8-bit on eMMC
      board/BuR/tseries: only run gpmc_init(...) in NAND-build
      board/BuR/common: Add CONFIG_CMD_I2C
      board/BuR/tseries: cosmetic changes

Jeroen Hofstee (1):
      tam3517: fix NAND detection

Lokesh Vutla (2):
      ARM: AM43xx: Fix mmcboot command in EXTRA_ENV_SETTINGS
      ARM: AM43xx: Fix UART clocks enabling

Murali Karicheri (1):
      keystone: init: enable UART1 to be able use it from kernel

Sourav Poddar (2):
      am43xx_evm: Add qspiboot target
      ti: qspi: populate slave device to set flash quad bit.

Tom Rini (6):
      arm:am33xx: Make dram_init call sdram_init() in some contexts
      arm:am33xx: Rework s_init and add board_early_init_f
      am43xx: Only read the MPU frequency bits of CTRL_DEV_ATTR
      arm:am33xx: Add a scale_vcores() hook
      power: Add support for the TPS65218 PMIC
      arm:am43xx: Add TPS65218 support to scale voltages up

WingMan Kwok (1):
      keystone: k2hk: enable support of nand ecclayout command

pekon gupta (12):
      mtd: nand: omap_elm: remove #include omap_gpmc.h
      mtd: nand: omap_elm: use bch_type instead of nibble count to differentiate between BCH4/BCH8/BCH16
      mtd: nand: omap_elm: use macros for register definitions
      mtd: nand: omap_gpmc: remove unused members of 'struct nand_bch_priv'
      mtd: nand: omap_gpmc: rename struct nand_bch_priv to struct omap_nand_info
      mtd: nand: omap_gpmc: minor cleanup of omap_correct_data_bch
      mtd: nand: omap: fix error-codes returned from omap-elm driver
      mtd: nand: omap: add CONFIG_SYS_NAND_BUSWIDTH_16BIT to indicate NAND device bus-width
      omap3: remove remnant macros GPMC_NAND_ECC_LP_x8_LAYOUT and GPMC_NAND_ECC_LP_x16_LAYOUT
      mtd: nand: omap_gpmc: use macro for register definitions
      mtd: nand: omap: add support for BCH16_ECC - NAND driver updates
      am335x: update README for BCH16

 arch/arm/cpu/armv7/am33xx/board.c                  |   20 +-
 arch/arm/cpu/armv7/am33xx/clock.c                  |   11 ++
 arch/arm/cpu/armv7/am33xx/clock_am43xx.c           |    9 +
 arch/arm/cpu/armv7/am33xx/emif4.c                  |    4 +
 arch/arm/cpu/armv7/keystone/init.c                 |    9 +
 arch/arm/cpu/armv7/omap3/mem.c                     |   12 --
 arch/arm/include/asm/arch-am33xx/clock.h           |    1 +
 arch/arm/include/asm/arch-am33xx/cpu.h             |   35 +++-
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    2 -
 arch/arm/include/asm/arch-keystone/hardware.h      |    3 +
 arch/arm/include/asm/arch-omap3/mem.h              |    8 -
 board/BuR/tseries/board.c                          |    2 +
 board/BuR/tseries/mux.c                            |    9 +-
 board/compulab/cm_t35/cm_t35.c                     |   12 +-
 board/ti/am43xx/Makefile                           |    2 +-
 board/ti/am43xx/board.c                            |   55 +++++-
 boards.cfg                                         |    1 +
 doc/README.nand                                    |   60 ++++++
 drivers/mtd/nand/am335x_spl_bch.c                  |    2 +-
 drivers/mtd/nand/atmel_nand.c                      |    2 +-
 drivers/mtd/nand/nand_base.c                       |   11 +-
 drivers/mtd/nand/nand_spl_simple.c                 |    2 +-
 drivers/mtd/nand/omap_elm.c                        |   28 ++-
 drivers/mtd/nand/omap_gpmc.c                       |  193 +++++++++++++-------
 drivers/power/pmic/Makefile                        |    1 +
 drivers/power/pmic/pmic_tps65218.c                 |   97 ++++++++++
 drivers/spi/ti_qspi.c                              |    1 +
 include/configs/am3517_crane.h                     |    1 +
 include/configs/am43xx_evm.h                       |   45 ++++-
 include/configs/bur_am335x_common.h                |    4 +-
 include/configs/cm_t335.h                          |    1 -
 include/configs/cm_t35.h                           |    1 -
 include/configs/devkit8000.h                       |    1 +
 include/configs/dig297.h                           |    1 +
 include/configs/k2hk_evm.h                         |    4 +-
 include/configs/omap3_beagle.h                     |    1 +
 include/configs/omap3_evm_common.h                 |    2 +-
 include/configs/omap3_igep00x0.h                   |    1 +
 include/configs/omap3_logic.h                      |    1 +
 include/configs/omap3_overo.h                      |    1 +
 include/configs/omap3_zoom1.h                      |    1 +
 include/configs/pengwyn.h                          |    1 -
 include/configs/tam3517-common.h                   |    2 +
 include/configs/tao3530.h                          |    2 +-
 include/configs/ti_am335x_common.h                 |    9 +
 include/configs/ti_armv7_common.h                  |    3 +-
 include/configs/tseries.h                          |    1 -
 include/linux/mtd/nand.h                           |   19 ++
 include/linux/mtd/omap_elm.h                       |   11 +-
 include/linux/mtd/omap_gpmc.h                      |   11 +-
 include/power/tps65218.h                           |   63 +++++++
 51 files changed, 624 insertions(+), 155 deletions(-)
 create mode 100644 drivers/power/pmic/pmic_tps65218.c
 create mode 100644 include/power/tps65218.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/20140606/7135b27d/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-05-23 23:52 Tom Rini
@ 2014-05-24  8:39 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-05-24  8:39 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 23 May 2014 19:52:11 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 05d134b084590684bcf4d832c0035952727b7cd9:
> 
>   Merge remote-tracking branch 'u-boot/master' (2014-05-20 10:05:42 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 39338a30fab2ce7d80dfe0d457071573727f499f:
> 
>   compulab: eeprom: enable any i2c driver (2014-05-23 19:40:39 -0400)
> 
> ----------------------------------------------------------------
> Ash Charles (9):
>       omap: overo: allow the use of a plain text env file instead boot scripts
>       OMAP3: overo: add command support for mtd and ubi
>       OMAP3: overo: eliminate hard-coded partition offsets
>       arm: omap3: Fix omap3_overo SPL boot hangup
>       Add Board Revision for Wireless chip
>       OMAP3: overo: add some Gumstix expansion boards
>       Allow overo to boot with device tree
>       omap3: overo: Use common configurations for Overo
>       omap4: duovero: Add Gumstix DuoVero machine.
> 
> Dmitry Lifshitz (3):
>       cm-t54: add cm-t54 board support
>       cm-t54: add EEPROM support and MAC address handling
>       cm-t54: add environment partition runtime detection
> 
> Heiko Schocher (1):
>       arm, am33xx: Enable CONFIG_SYS_GENERIC_BOARD for siemens boards
> 
> Igor Grinberg (1):
>       compulab: eeprom: add default eeprom address
> 
> Ilya Ledvich (1):
>       compulab: eeprom: enable any i2c driver
> 
> Keerthy (1):
>       ARM: DRA72x: volt: Update the pmic offsets
> 
> Lokesh Vutla (5):
>       ARM: DRA72x: Add Silicon ID support
>       ARM: DRA72x: clocks: Update the hwdata
>       ARM: DRA72x: Update EMIF data
>       ARM: DRA7xx: ctrl: Fix efuse register addresses
>       ARM: OMAP: Fix omap_sdram_size calculation
> 
> Peter A. Bigot (1):
>       OMAP3: overo: increase linux partition to 8 MiB
> 
> Sergey Alyoshin (1):
>       am33xx: report silicon revision instead of code
> 
> Tom Rini (1):
>       armv7:TI: Add <asm/ti-common/sys_proto.h> and migrate omap_hw_init_context
> 
> pekon gupta (3):
>       ARM: omap4: add platform specific info for GPMC and ELM controllers
>       ARM: omap5: add platform specific info for GPMC and ELM controllers
>       ARM: omap: merge GPMC initialization code for all platform
> 
>  arch/arm/cpu/armv7/am33xx/Makefile             |    1 -
>  arch/arm/cpu/armv7/am33xx/mem.c                |   98 --------
>  arch/arm/cpu/armv7/am33xx/sys_info.c           |   41 ++--
>  arch/arm/cpu/armv7/omap-common/Makefile        |    4 -
>  arch/arm/cpu/armv7/omap-common/emif-common.c   |    6 +-
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c |   15 +-
>  arch/arm/cpu/armv7/omap-common/mem-common.c    |  117 +++++++++-
>  arch/arm/cpu/armv7/omap3/Makefile              |    1 -
>  arch/arm/cpu/armv7/omap5/hw_data.c             |   40 ++++
>  arch/arm/cpu/armv7/omap5/hwinit.c              |    3 +
>  arch/arm/cpu/armv7/omap5/prcm-regs.c           |    8 +-
>  arch/arm/cpu/armv7/omap5/sdram.c               |   19 +-
>  arch/arm/include/asm/arch-am33xx/sys_proto.h   |    1 +
>  arch/arm/include/asm/arch-omap3/mem.h          |    1 +
>  arch/arm/include/asm/arch-omap4/cpu.h          |    5 +-
>  arch/arm/include/asm/arch-omap4/hardware.h     |   26 +++
>  arch/arm/include/asm/arch-omap4/mem.h          |   62 +++++
>  arch/arm/include/asm/arch-omap4/omap.h         |    3 -
>  arch/arm/include/asm/arch-omap4/sys_proto.h    |   51 +---
>  arch/arm/include/asm/arch-omap5/cpu.h          |    5 +-
>  arch/arm/include/asm/arch-omap5/hardware.h     |   26 +++
>  arch/arm/include/asm/arch-omap5/mem.h          |   62 +++++
>  arch/arm/include/asm/arch-omap5/omap.h         |    9 +-
>  arch/arm/include/asm/arch-omap5/sys_proto.h    |   50 +---
>  arch/arm/include/asm/omap_common.h             |    7 +-
>  arch/arm/include/asm/ti-common/sys_proto.h     |   72 ++++++
>  board/compulab/cm_t54/Makefile                 |   10 +
>  board/compulab/cm_t54/cm_t54.c                 |  262 +++++++++++++++++++++
>  board/compulab/cm_t54/mux.c                    |   94 ++++++++
>  board/compulab/cm_t54/spl.c                    |   66 ++++++
>  board/compulab/common/Makefile                 |    2 +-
>  board/compulab/common/eeprom.c                 |    5 +
>  board/compulab/common/eeprom.h                 |    2 +-
>  board/gumstix/duovero/Makefile                 |    8 +
>  board/gumstix/duovero/duovero.c                |  264 +++++++++++++++++++++
>  board/gumstix/duovero/duovero_mux_data.h       |  199 ++++++++++++++++
>  board/overo/overo.c                            |   43 +++-
>  board/overo/overo.h                            |   17 ++
>  boards.cfg                                     |    2 +
>  include/configs/cm_t54.h                       |  149 ++++++++++++
>  include/configs/duovero.h                      |   62 +++++
>  include/configs/omap3_overo.h                  |  296 ++++++++----------------
>  include/configs/siemens-am33x-common.h         |    2 +
>  include/configs/ti_omap4_common.h              |    9 +
>  44 files changed, 1757 insertions(+), 468 deletions(-)
>  delete mode 100644 arch/arm/cpu/armv7/am33xx/mem.c
>  create mode 100644 arch/arm/include/asm/arch-omap4/hardware.h
>  create mode 100644 arch/arm/include/asm/arch-omap4/mem.h
>  create mode 100644 arch/arm/include/asm/arch-omap5/hardware.h
>  create mode 100644 arch/arm/include/asm/arch-omap5/mem.h
>  create mode 100644 arch/arm/include/asm/ti-common/sys_proto.h
>  create mode 100644 board/compulab/cm_t54/Makefile
>  create mode 100644 board/compulab/cm_t54/cm_t54.c
>  create mode 100644 board/compulab/cm_t54/mux.c
>  create mode 100644 board/compulab/cm_t54/spl.c
>  create mode 100644 board/gumstix/duovero/Makefile
>  create mode 100644 board/gumstix/duovero/duovero.c
>  create mode 100644 board/gumstix/duovero/duovero_mux_data.h
>  create mode 100644 include/configs/cm_t54.h
>  create mode 100644 include/configs/duovero.h
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-05-23 23:52 Tom Rini
  2014-05-24  8:39 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-05-23 23:52 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 05d134b084590684bcf4d832c0035952727b7cd9:

  Merge remote-tracking branch 'u-boot/master' (2014-05-20 10:05:42 +0200)

are available in the git repository at:


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

for you to fetch changes up to 39338a30fab2ce7d80dfe0d457071573727f499f:

  compulab: eeprom: enable any i2c driver (2014-05-23 19:40:39 -0400)

----------------------------------------------------------------
Ash Charles (9):
      omap: overo: allow the use of a plain text env file instead boot scripts
      OMAP3: overo: add command support for mtd and ubi
      OMAP3: overo: eliminate hard-coded partition offsets
      arm: omap3: Fix omap3_overo SPL boot hangup
      Add Board Revision for Wireless chip
      OMAP3: overo: add some Gumstix expansion boards
      Allow overo to boot with device tree
      omap3: overo: Use common configurations for Overo
      omap4: duovero: Add Gumstix DuoVero machine.

Dmitry Lifshitz (3):
      cm-t54: add cm-t54 board support
      cm-t54: add EEPROM support and MAC address handling
      cm-t54: add environment partition runtime detection

Heiko Schocher (1):
      arm, am33xx: Enable CONFIG_SYS_GENERIC_BOARD for siemens boards

Igor Grinberg (1):
      compulab: eeprom: add default eeprom address

Ilya Ledvich (1):
      compulab: eeprom: enable any i2c driver

Keerthy (1):
      ARM: DRA72x: volt: Update the pmic offsets

Lokesh Vutla (5):
      ARM: DRA72x: Add Silicon ID support
      ARM: DRA72x: clocks: Update the hwdata
      ARM: DRA72x: Update EMIF data
      ARM: DRA7xx: ctrl: Fix efuse register addresses
      ARM: OMAP: Fix omap_sdram_size calculation

Peter A. Bigot (1):
      OMAP3: overo: increase linux partition to 8 MiB

Sergey Alyoshin (1):
      am33xx: report silicon revision instead of code

Tom Rini (1):
      armv7:TI: Add <asm/ti-common/sys_proto.h> and migrate omap_hw_init_context

pekon gupta (3):
      ARM: omap4: add platform specific info for GPMC and ELM controllers
      ARM: omap5: add platform specific info for GPMC and ELM controllers
      ARM: omap: merge GPMC initialization code for all platform

 arch/arm/cpu/armv7/am33xx/Makefile             |    1 -
 arch/arm/cpu/armv7/am33xx/mem.c                |   98 --------
 arch/arm/cpu/armv7/am33xx/sys_info.c           |   41 ++--
 arch/arm/cpu/armv7/omap-common/Makefile        |    4 -
 arch/arm/cpu/armv7/omap-common/emif-common.c   |    6 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c |   15 +-
 arch/arm/cpu/armv7/omap-common/mem-common.c    |  117 +++++++++-
 arch/arm/cpu/armv7/omap3/Makefile              |    1 -
 arch/arm/cpu/armv7/omap5/hw_data.c             |   40 ++++
 arch/arm/cpu/armv7/omap5/hwinit.c              |    3 +
 arch/arm/cpu/armv7/omap5/prcm-regs.c           |    8 +-
 arch/arm/cpu/armv7/omap5/sdram.c               |   19 +-
 arch/arm/include/asm/arch-am33xx/sys_proto.h   |    1 +
 arch/arm/include/asm/arch-omap3/mem.h          |    1 +
 arch/arm/include/asm/arch-omap4/cpu.h          |    5 +-
 arch/arm/include/asm/arch-omap4/hardware.h     |   26 +++
 arch/arm/include/asm/arch-omap4/mem.h          |   62 +++++
 arch/arm/include/asm/arch-omap4/omap.h         |    3 -
 arch/arm/include/asm/arch-omap4/sys_proto.h    |   51 +---
 arch/arm/include/asm/arch-omap5/cpu.h          |    5 +-
 arch/arm/include/asm/arch-omap5/hardware.h     |   26 +++
 arch/arm/include/asm/arch-omap5/mem.h          |   62 +++++
 arch/arm/include/asm/arch-omap5/omap.h         |    9 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h    |   50 +---
 arch/arm/include/asm/omap_common.h             |    7 +-
 arch/arm/include/asm/ti-common/sys_proto.h     |   72 ++++++
 board/compulab/cm_t54/Makefile                 |   10 +
 board/compulab/cm_t54/cm_t54.c                 |  262 +++++++++++++++++++++
 board/compulab/cm_t54/mux.c                    |   94 ++++++++
 board/compulab/cm_t54/spl.c                    |   66 ++++++
 board/compulab/common/Makefile                 |    2 +-
 board/compulab/common/eeprom.c                 |    5 +
 board/compulab/common/eeprom.h                 |    2 +-
 board/gumstix/duovero/Makefile                 |    8 +
 board/gumstix/duovero/duovero.c                |  264 +++++++++++++++++++++
 board/gumstix/duovero/duovero_mux_data.h       |  199 ++++++++++++++++
 board/overo/overo.c                            |   43 +++-
 board/overo/overo.h                            |   17 ++
 boards.cfg                                     |    2 +
 include/configs/cm_t54.h                       |  149 ++++++++++++
 include/configs/duovero.h                      |   62 +++++
 include/configs/omap3_overo.h                  |  296 ++++++++----------------
 include/configs/siemens-am33x-common.h         |    2 +
 include/configs/ti_omap4_common.h              |    9 +
 44 files changed, 1757 insertions(+), 468 deletions(-)
 delete mode 100644 arch/arm/cpu/armv7/am33xx/mem.c
 create mode 100644 arch/arm/include/asm/arch-omap4/hardware.h
 create mode 100644 arch/arm/include/asm/arch-omap4/mem.h
 create mode 100644 arch/arm/include/asm/arch-omap5/hardware.h
 create mode 100644 arch/arm/include/asm/arch-omap5/mem.h
 create mode 100644 arch/arm/include/asm/ti-common/sys_proto.h
 create mode 100644 board/compulab/cm_t54/Makefile
 create mode 100644 board/compulab/cm_t54/cm_t54.c
 create mode 100644 board/compulab/cm_t54/mux.c
 create mode 100644 board/compulab/cm_t54/spl.c
 create mode 100644 board/gumstix/duovero/Makefile
 create mode 100644 board/gumstix/duovero/duovero.c
 create mode 100644 board/gumstix/duovero/duovero_mux_data.h
 create mode 100644 include/configs/cm_t54.h
 create mode 100644 include/configs/duovero.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/20140523/2ad7672e/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-05-14  1:36 Tom Rini
@ 2014-05-16 15:20 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-05-16 15:20 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 13 May 2014 21:36:51 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit d2a3e911390f9fc4d8c0ee4b3c7fc75f4fd3fd19:
> 
>   Merge branch 'u-boot/master' (2014-05-09 11:50:14 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 97eeae1a0735fc17351f10b9978e966392badedc:
> 
>   mtd: nand: omap_gpmc: Fix update of read_ecc in oob (2014-05-13 19:48:17 -0400)
> 
> ----------------------------------------------------------------
> Ash Charles (1):
>       am335x: pepper: Add Gumstix Pepper AM335x-based machine
> 
> Belisko Marek (1):
>       mtd: nand: omap_gpmc: Fix update of read_ecc in oob
> 
> Christian Riesch (1):
>       arm, davinci: Use CONFIG_SPL_PAD_TO for padding the SPL in an ais image
> 
> Dmitry Lifshitz (3):
>       ARM: OMAP5: add UART4 support
>       ARM: OMAP5: Power: add LDO2 support for Palmas driver
>       ARM: OMAP5: add CKO buffer control mask
> 
> Egli, Samuel (7):
>       siemens: cosmetic: remove unused and rename defines
>       siemens: update DDR3 parameters for dxr2
>       siemens: add led cmd for flexible LED control
>       siemens: change LED indication in DFU mode
>       siemens: cosmetic: rename project_dir
>       siemens:cosmetic, dxr2: rename dxr2 to draco
>       siemens, draco: add new target
> 
> Khoronzhuk, Ivan (1):
>       config: k2hk_evm: Add generic board support
> 
> Robert Nelson (2):
>       omap3_beagle: use omap3-beagle-xm-ab.dtb for the xM AB revision
>       omap3_beagle: xM A/B validate new dtb exits in file system
> 
> Yegor Yefremov (1):
>       am33xx: add SSC enable macro
> 
>  Makefile                                 |    2 +-
>  arch/arm/include/asm/arch-am33xx/clock.h |    2 +
>  arch/arm/include/asm/arch-omap5/clock.h  |    3 +
>  arch/arm/include/asm/arch-omap5/omap.h   |    1 +
>  board/gumstix/pepper/Makefile            |   13 ++
>  board/gumstix/pepper/board.c             |  226 ++++++++++++++++++++++++++++++
>  board/gumstix/pepper/board.h             |   19 +++
>  board/gumstix/pepper/mux.c               |   78 +++++++++++
>  board/siemens/common/board.c             |   46 +++++-
>  board/siemens/{dxr2 => draco}/Makefile   |    0
>  board/siemens/{dxr2 => draco}/board.c    |  112 ++++++++-------
>  board/siemens/{dxr2 => draco}/board.h    |   26 ++--
>  board/siemens/{dxr2 => draco}/mux.c      |    2 +-
>  board/siemens/pxm2/board.c               |   10 +-
>  board/siemens/rut/board.c                |    2 +-
>  boards.cfg                               |    4 +-
>  drivers/mtd/nand/omap_gpmc.c             |    2 +-
>  include/configs/da850evm.h               |    1 +
>  include/configs/draco.h                  |   92 ++++++++++++
>  include/configs/dxr2.h                   |    4 +-
>  include/configs/k2hk_evm.h               |    1 +
>  include/configs/omap3_beagle.h           |   10 +-
>  include/configs/pepper.h                 |   99 +++++++++++++
>  include/configs/pxm2.h                   |    2 +-
>  include/configs/siemens-am33x-common.h   |    8 +-
>  include/palmas.h                         |    4 +
>  26 files changed, 686 insertions(+), 83 deletions(-)
>  create mode 100644 board/gumstix/pepper/Makefile
>  create mode 100644 board/gumstix/pepper/board.c
>  create mode 100644 board/gumstix/pepper/board.h
>  create mode 100644 board/gumstix/pepper/mux.c
>  rename board/siemens/{dxr2 => draco}/Makefile (100%)
>  rename board/siemens/{dxr2 => draco}/board.c (63%)
>  rename board/siemens/{dxr2 => draco}/board.h (71%)
>  rename board/siemens/{dxr2 => draco}/mux.c (99%)
>  create mode 100644 include/configs/draco.h
>  create mode 100644 include/configs/pepper.h
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-05-14  1:36 Tom Rini
  2014-05-16 15:20 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-05-14  1:36 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit d2a3e911390f9fc4d8c0ee4b3c7fc75f4fd3fd19:

  Merge branch 'u-boot/master' (2014-05-09 11:50:14 +0200)

are available in the git repository at:


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

for you to fetch changes up to 97eeae1a0735fc17351f10b9978e966392badedc:

  mtd: nand: omap_gpmc: Fix update of read_ecc in oob (2014-05-13 19:48:17 -0400)

----------------------------------------------------------------
Ash Charles (1):
      am335x: pepper: Add Gumstix Pepper AM335x-based machine

Belisko Marek (1):
      mtd: nand: omap_gpmc: Fix update of read_ecc in oob

Christian Riesch (1):
      arm, davinci: Use CONFIG_SPL_PAD_TO for padding the SPL in an ais image

Dmitry Lifshitz (3):
      ARM: OMAP5: add UART4 support
      ARM: OMAP5: Power: add LDO2 support for Palmas driver
      ARM: OMAP5: add CKO buffer control mask

Egli, Samuel (7):
      siemens: cosmetic: remove unused and rename defines
      siemens: update DDR3 parameters for dxr2
      siemens: add led cmd for flexible LED control
      siemens: change LED indication in DFU mode
      siemens: cosmetic: rename project_dir
      siemens:cosmetic, dxr2: rename dxr2 to draco
      siemens, draco: add new target

Khoronzhuk, Ivan (1):
      config: k2hk_evm: Add generic board support

Robert Nelson (2):
      omap3_beagle: use omap3-beagle-xm-ab.dtb for the xM AB revision
      omap3_beagle: xM A/B validate new dtb exits in file system

Yegor Yefremov (1):
      am33xx: add SSC enable macro

 Makefile                                 |    2 +-
 arch/arm/include/asm/arch-am33xx/clock.h |    2 +
 arch/arm/include/asm/arch-omap5/clock.h  |    3 +
 arch/arm/include/asm/arch-omap5/omap.h   |    1 +
 board/gumstix/pepper/Makefile            |   13 ++
 board/gumstix/pepper/board.c             |  226 ++++++++++++++++++++++++++++++
 board/gumstix/pepper/board.h             |   19 +++
 board/gumstix/pepper/mux.c               |   78 +++++++++++
 board/siemens/common/board.c             |   46 +++++-
 board/siemens/{dxr2 => draco}/Makefile   |    0
 board/siemens/{dxr2 => draco}/board.c    |  112 ++++++++-------
 board/siemens/{dxr2 => draco}/board.h    |   26 ++--
 board/siemens/{dxr2 => draco}/mux.c      |    2 +-
 board/siemens/pxm2/board.c               |   10 +-
 board/siemens/rut/board.c                |    2 +-
 boards.cfg                               |    4 +-
 drivers/mtd/nand/omap_gpmc.c             |    2 +-
 include/configs/da850evm.h               |    1 +
 include/configs/draco.h                  |   92 ++++++++++++
 include/configs/dxr2.h                   |    4 +-
 include/configs/k2hk_evm.h               |    1 +
 include/configs/omap3_beagle.h           |   10 +-
 include/configs/pepper.h                 |   99 +++++++++++++
 include/configs/pxm2.h                   |    2 +-
 include/configs/siemens-am33x-common.h   |    8 +-
 include/palmas.h                         |    4 +
 26 files changed, 686 insertions(+), 83 deletions(-)
 create mode 100644 board/gumstix/pepper/Makefile
 create mode 100644 board/gumstix/pepper/board.c
 create mode 100644 board/gumstix/pepper/board.h
 create mode 100644 board/gumstix/pepper/mux.c
 rename board/siemens/{dxr2 => draco}/Makefile (100%)
 rename board/siemens/{dxr2 => draco}/board.c (63%)
 rename board/siemens/{dxr2 => draco}/board.h (71%)
 rename board/siemens/{dxr2 => draco}/mux.c (99%)
 create mode 100644 include/configs/draco.h
 create mode 100644 include/configs/pepper.h

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/20140513/bee0d0b9/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-04-18 13:24 Tom Rini
  2014-04-21 16:54 ` Karicheri, Muralidharan
@ 2014-04-21 19:32 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-04-21 19:32 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 18 Apr 2014 09:24:36 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 1b82491ee6ee1e986e5521b33692a00e1f38fe75:
> 
>   board:tricorder: fixup SPL OOB layout (2014-04-11 10:08:42 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 2e8f5dc16ad360cc15ea402a1dc4d421a04adbbd:
> 
>   am43xx_evm: Drop SPI SPL (2014-04-17 17:40:15 -0400)
> 
> ----------------------------------------------------------------
> Karicheri, Muralidharan (6):
>       tools: mkimage: add support for gpimage format
>       NAND: DaVinci: allow forced disable of subpage writes
>       i2c, davinci: move i2c_defs.h to the drivers/i2c directory
>       spi: davinci: add support for multiple bus and chip select
>       k2hk-evm: add configuration for spi1 and spi2 support
>       keystone2: net: add keystone ethernet driver
> 
> Manish Badarkhe (1):
>       arm, da850: staticize funtions
> 
> Nishanth Menon (11):
>       OMAP: common: consolidate fake USB ethernet MAC address creation
>       omap3/sys_info: provide interface to read die id
>       OMAP3: beagle-xm: generate fake USB ethernet MAC address from dieid
>       omap3: zoom1: enable CONFIG_SYS_GENERIC_BOARD
>       OMAP3: zoom1: Configure GPMC for Ethernet
>       OMAP3: zoom1: enable LAN9211
>       omap3: zoom1: enable common network commands
>       omap3: zoom1: disable JFFS2 and enable FS_GENERIC
>       omap3: zoom1: enable bootz
>       omap3: zoom1: fix default console
>       omap3: zoom1: switch to generic ti_omap3_common config header
> 
> Poddar, Sourav (1):
>       spi: ti_qspi: Add delay for successful bulk erase.
> 
> Tom Rini (22):
>       fw_env.c: Switch get_config to use '%ms' in sscanf
>       env_mmc.c: Allow environment to be used within SPL
>       env_mmc.c: Remove NULL check on tmp_env1/2
>       mtd: Add a CONFIG_SPL_MTD_SUPPORT for a more full NAND subsystem in SPL
>       mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL
>       am335x_evm: Make SPL_OS also check the boot_os variable for falcon mode
>       README: Add CONFIG_SPL_OS_BOOT to README
>       README.falcon: Document environment variables for falcon mode
>       a3m071: Make spl_start_uboot test like getenv_yesno does
>       spl_mmc/CONFIG_SPL_OS_BOOT: Allow environment to determine what to boot
>       TI: Add, use a DEFAULT_LINUX_BOOT_ENV environment string
>       am335x_evm: Update the ramdisk args, we pass things in just fine via DT
>       am43xx_evm: Update the ramdisk args, we pass things in just fine via DT
>       TI:omap5: Move CONFIG_ENV_SIZE to board config files
>       TI:armv7: Change Falcon Mode DT load address
>       am335x_evm: Drop SPI SPL support from the default build
>       SPL:SPI: Add Falcon Mode support
>       dra7xx_evm: Add QSPI_4 support, qspiboot build target
>       TI:armv7: Switch to CONFIG_SYS_BOARD_GENERIC
>       TI:omap3: Convert omap3_beagle to ti_omap3_common.h
>       am335x: Switch to CONFIG_SKIP_LOWLEVEL_INIT from guarding SPL or NOR_BOOT
>       am43xx_evm: Drop SPI SPL
> 
> Vitaly Andrianov (5):
>       fdt: call ft_board_setup_ex() at the end of image_setup_libfdt()
>       arm: add support for arch timer
>       i2c, davinci: convert driver to new mutlibus/mutliadapter framework
>       k2hk: add support for k2hk SOC and EVM
>       keystone2: add keystone multicore navigator driver
> 
> Wolfgang Denk (3):
>       ARM: OMAP: remove sr32() from OMAP board code
>       ARM: OMAP: hide custom bit manipulation function sr32()
>       ARM: OMAP: replace custom sr32() by standard I/O accessors
> 
>  Makefile                                           |   10 +
>  README                                             |   13 +
>  arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    6 +-
>  arch/arm/cpu/arm926ejs/davinci/dm355.c             |    2 +-
>  arch/arm/cpu/arm926ejs/davinci/dm365.c             |    2 +-
>  arch/arm/cpu/arm926ejs/davinci/dm644x.c            |    2 +-
>  arch/arm/cpu/arm926ejs/davinci/dm646x.c            |    2 +-
>  arch/arm/cpu/armv7/Makefile                        |    1 +
>  arch/arm/cpu/armv7/am33xx/board.c                  |    4 +-
>  arch/arm/cpu/armv7/am33xx/emif4.c                  |    2 +-
>  arch/arm/cpu/armv7/arch_timer.c                    |   58 ++
>  arch/arm/cpu/armv7/keystone/Makefile               |   17 +
>  arch/arm/cpu/armv7/keystone/aemif.c                |   71 ++
>  arch/arm/cpu/armv7/keystone/clock.c                |  318 +++++++++
>  arch/arm/cpu/armv7/keystone/cmd_clock.c            |  124 ++++
>  arch/arm/cpu/armv7/keystone/cmd_mon.c              |  131 ++++
>  arch/arm/cpu/armv7/keystone/ddr3.c                 |   69 ++
>  arch/arm/cpu/armv7/keystone/init.c                 |   56 ++
>  arch/arm/cpu/armv7/keystone/keystone_nav.c         |  376 ++++++++++
>  arch/arm/cpu/armv7/keystone/msmc.c                 |   68 ++
>  arch/arm/cpu/armv7/keystone/psc.c                  |  237 +++++++
>  arch/arm/cpu/armv7/keystone/spl.c                  |   45 ++
>  arch/arm/cpu/armv7/omap-common/boot-common.c       |   11 +
>  arch/arm/cpu/armv7/omap-common/utils.c             |   21 +
>  arch/arm/cpu/armv7/omap3/board.c                   |    4 +-
>  arch/arm/cpu/armv7/omap3/clock.c                   |  355 ++++++----
>  arch/arm/cpu/armv7/omap3/sys_info.c                |   19 +-
>  arch/arm/cpu/armv7/syslib.c                        |   13 -
>  arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    3 -
>  arch/arm/include/asm/arch-davinci/i2c_defs.h       |   71 +-
>  arch/arm/include/asm/arch-keystone/clock-k2hk.h    |  109 +++
>  arch/arm/include/asm/arch-keystone/clock.h         |   17 +
>  arch/arm/include/asm/arch-keystone/clock_defs.h    |  111 +++
>  arch/arm/include/asm/arch-keystone/emac_defs.h     |  240 +++++++
>  arch/arm/include/asm/arch-keystone/emif_defs.h     |   73 ++
>  arch/arm/include/asm/arch-keystone/hardware-k2hk.h |  150 ++++
>  arch/arm/include/asm/arch-keystone/hardware.h      |  175 +++++
>  arch/arm/include/asm/arch-keystone/i2c_defs.h      |   17 +
>  arch/arm/include/asm/arch-keystone/keystone_nav.h  |  193 ++++++
>  arch/arm/include/asm/arch-keystone/nand_defs.h     |   23 +
>  arch/arm/include/asm/arch-keystone/psc_defs.h      |   90 +++
>  arch/arm/include/asm/arch-keystone/spl.h           |   12 +
>  arch/arm/include/asm/arch-omap3/sys_proto.h        |    3 +-
>  arch/arm/include/asm/arch-omap4/sys_proto.h        |    1 -
>  arch/arm/include/asm/arch-omap5/sys_proto.h        |    1 -
>  arch/arm/include/asm/omap_common.h                 |    2 +
>  board/a3m071/a3m071.c                              |    3 +-
>  board/logicpd/zoom1/config.mk                      |    1 -
>  board/logicpd/zoom1/zoom1.c                        |   38 +-
>  board/logicpd/zoom1/zoom1.h                        |   19 +-
>  board/silica/pengwyn/Makefile                      |    2 +-
>  board/ti/am335x/Makefile                           |    2 +-
>  board/ti/am335x/board.c                            |   15 +-
>  board/ti/beagle/beagle.c                           |   11 +
>  board/ti/dra7xx/evm.c                              |   19 +
>  board/ti/k2hk_evm/Makefile                         |    9 +
>  board/ti/k2hk_evm/README                           |  122 ++++
>  board/ti/k2hk_evm/board.c                          |  301 ++++++++
>  board/ti/k2hk_evm/ddr3.c                           |  268 ++++++++
>  board/ti/omap5_uevm/evm.c                          |   25 +-
>  board/ti/panda/panda.c                             |   23 +-
>  boards.cfg                                         |    4 +-
>  common/env_mmc.c                                   |   49 +-
>  common/image-fdt.c                                 |    5 +
>  common/image.c                                     |    1 +
>  common/spl/spl_fat.c                               |   27 +
>  doc/README.falcon                                  |   13 +
>  drivers/i2c/Makefile                               |    2 +-
>  drivers/i2c/davinci_i2c.c                          |  402 ++++++-----
>  drivers/i2c/davinci_i2c.h                          |   78 +++
>  drivers/mtd/nand/Makefile                          |    3 +
>  drivers/mtd/nand/am335x_spl_bch.c                  |   54 +-
>  drivers/mtd/nand/davinci_nand.c                    |    3 +
>  drivers/mtd/spi/spi_spl_load.c                     |   46 +-
>  drivers/net/Makefile                               |    1 +
>  drivers/net/keystone_net.c                         |  716 ++++++++++++++++++++
>  drivers/serial/ns16550.c                           |    8 +
>  drivers/spi/davinci_spi.c                          |   49 +-
>  drivers/spi/davinci_spi.h                          |   33 +
>  drivers/spi/ti_qspi.c                              |    3 +
>  include/configs/am335x_evm.h                       |   25 +-
>  include/configs/am43xx_evm.h                       |   17 +-
>  include/configs/cam_enc_4xx.h                      |    8 +-
>  include/configs/da830evm.h                         |    8 +-
>  include/configs/da850evm.h                         |    8 +-
>  include/configs/davinci_dm355evm.h                 |    8 +-
>  include/configs/davinci_dm355leopard.h             |    8 +-
>  include/configs/davinci_dm365evm.h                 |    8 +-
>  include/configs/davinci_dm6467evm.h                |    8 +-
>  include/configs/davinci_dvevm.h                    |    8 +-
>  include/configs/davinci_schmoogie.h                |    8 +-
>  include/configs/davinci_sffsdr.h                   |    8 +-
>  include/configs/davinci_sonata.h                   |    8 +-
>  include/configs/dra7xx_evm.h                       |   38 +-
>  include/configs/ea20.h                             |    7 +-
>  include/configs/enbw_cmc.h                         |    8 +-
>  include/configs/k2hk_evm.h                         |  256 +++++++
>  include/configs/omap3_beagle.h                     |  184 +----
>  include/configs/omap3_zoom1.h                      |  167 ++---
>  include/configs/omap5_uevm.h                       |    1 +
>  include/configs/ti_am335x_common.h                 |    2 +
>  include/configs/ti_armv7_common.h                  |   34 +-
>  include/configs/ti_omap3_common.h                  |    4 +
>  include/configs/ti_omap4_common.h                  |    6 +-
>  include/configs/ti_omap5_common.h                  |    9 +-
>  include/fdt_support.h                              |    7 +
>  include/image.h                                    |    1 +
>  spl/Makefile                                       |    1 +
>  tools/Makefile                                     |    2 +
>  tools/env/fw_env.c                                 |   13 +-
>  tools/gpheader.h                                   |   40 ++
>  tools/gpimage-common.c                             |   80 +++
>  tools/gpimage.c                                    |   77 +++
>  tools/imagetool.c                                  |    2 +
>  tools/imagetool.h                                  |    1 +
>  tools/omapimage.c                                  |  104 +--
>  tools/omapimage.h                                  |    5 -
>  117 files changed, 5866 insertions(+), 996 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/arch_timer.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/Makefile
>  create mode 100644 arch/arm/cpu/armv7/keystone/aemif.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/clock.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/cmd_clock.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/cmd_mon.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/ddr3.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/init.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/keystone_nav.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/msmc.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/psc.c
>  create mode 100644 arch/arm/cpu/armv7/keystone/spl.c
>  create mode 100644 arch/arm/include/asm/arch-keystone/clock-k2hk.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/clock.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/clock_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/emac_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/emif_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2hk.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/hardware.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/i2c_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/keystone_nav.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/nand_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/psc_defs.h
>  create mode 100644 arch/arm/include/asm/arch-keystone/spl.h
>  create mode 100644 board/ti/k2hk_evm/Makefile
>  create mode 100644 board/ti/k2hk_evm/README
>  create mode 100644 board/ti/k2hk_evm/board.c
>  create mode 100644 board/ti/k2hk_evm/ddr3.c
>  create mode 100644 drivers/i2c/davinci_i2c.h
>  create mode 100644 drivers/net/keystone_net.c
>  create mode 100644 include/configs/k2hk_evm.h
>  create mode 100644 tools/gpheader.h
>  create mode 100644 tools/gpimage-common.c
>  create mode 100644 tools/gpimage.c
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2014-04-18 13:24 Tom Rini
@ 2014-04-21 16:54 ` Karicheri, Muralidharan
  2014-04-21 19:32 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Karicheri, Muralidharan @ 2014-04-21 16:54 UTC (permalink / raw)
  To: u-boot

>-----Original Message-----
From: u-boot-bounces@lists.denx.de [mailto:u-boot-bounces at lists.denx.de] On Behalf Of
>Rini, Tom
>Sent: Friday, April 18, 2014 9:25 AM
>To: Albert Aribaud; u-boot at lists.denx.de
>Subject: [U-Boot] Please pull u-boot-ti/master
>
>Hey,
>
>The following changes since commit 1b82491ee6ee1e986e5521b33692a00e1f38fe75:
>
>  board:tricorder: fixup SPL OOB layout (2014-04-11 10:08:42 -0400)
>
>are available in the git repository at:
>
>  git://git.denx.de/u-boot-ti.git master
>
>for you to fetch changes up to 2e8f5dc16ad360cc15ea402a1dc4d421a04adbbd:
>
>  am43xx_evm: Drop SPI SPL (2014-04-17 17:40:15 -0400)
>
>----------------------------------------------------------------
>Karicheri, Muralidharan (6):
>      tools: mkimage: add support for gpimage format
>      NAND: DaVinci: allow forced disable of subpage writes
>      i2c, davinci: move i2c_defs.h to the drivers/i2c directory
>      spi: davinci: add support for multiple bus and chip select
>      k2hk-evm: add configuration for spi1 and spi2 support
>      keystone2: net: add keystone ethernet driver
>
>Manish Badarkhe (1):
>      arm, da850: staticize funtions
>
>Nishanth Menon (11):
>      OMAP: common: consolidate fake USB ethernet MAC address creation
>      omap3/sys_info: provide interface to read die id
>      OMAP3: beagle-xm: generate fake USB ethernet MAC address from dieid
>      omap3: zoom1: enable CONFIG_SYS_GENERIC_BOARD
>      OMAP3: zoom1: Configure GPMC for Ethernet
>      OMAP3: zoom1: enable LAN9211
>      omap3: zoom1: enable common network commands
>      omap3: zoom1: disable JFFS2 and enable FS_GENERIC
>      omap3: zoom1: enable bootz
>      omap3: zoom1: fix default console
>      omap3: zoom1: switch to generic ti_omap3_common config header
>
>Poddar, Sourav (1):
>      spi: ti_qspi: Add delay for successful bulk erase.
>
>Tom Rini (22):
>      fw_env.c: Switch get_config to use '%ms' in sscanf
>      env_mmc.c: Allow environment to be used within SPL
>      env_mmc.c: Remove NULL check on tmp_env1/2
>      mtd: Add a CONFIG_SPL_MTD_SUPPORT for a more full NAND subsystem in SPL
>      mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL
>      am335x_evm: Make SPL_OS also check the boot_os variable for falcon mode
>      README: Add CONFIG_SPL_OS_BOOT to README
>      README.falcon: Document environment variables for falcon mode
>      a3m071: Make spl_start_uboot test like getenv_yesno does
>      spl_mmc/CONFIG_SPL_OS_BOOT: Allow environment to determine what to boot
>      TI: Add, use a DEFAULT_LINUX_BOOT_ENV environment string
>      am335x_evm: Update the ramdisk args, we pass things in just fine via DT
>      am43xx_evm: Update the ramdisk args, we pass things in just fine via DT
>      TI:omap5: Move CONFIG_ENV_SIZE to board config files
>      TI:armv7: Change Falcon Mode DT load address
>      am335x_evm: Drop SPI SPL support from the default build
>      SPL:SPI: Add Falcon Mode support
>      dra7xx_evm: Add QSPI_4 support, qspiboot build target
>      TI:armv7: Switch to CONFIG_SYS_BOARD_GENERIC
>      TI:omap3: Convert omap3_beagle to ti_omap3_common.h
>      am335x: Switch to CONFIG_SKIP_LOWLEVEL_INIT from guarding SPL or NOR_BOOT
>      am43xx_evm: Drop SPI SPL
>
>Vitaly Andrianov (5):
>      fdt: call ft_board_setup_ex() at the end of image_setup_libfdt()
>      arm: add support for arch timer
>      i2c, davinci: convert driver to new mutlibus/mutliadapter framework
>      k2hk: add support for k2hk SOC and EVM
>      keystone2: add keystone multicore navigator driver
>
>Wolfgang Denk (3):
>      ARM: OMAP: remove sr32() from OMAP board code
>      ARM: OMAP: hide custom bit manipulation function sr32()
>      ARM: OMAP: replace custom sr32() by standard I/O accessors
>
> Makefile                                           |   10 +
> README                                             |   13 +
> arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    6 +-
> arch/arm/cpu/arm926ejs/davinci/dm355.c             |    2 +-
> arch/arm/cpu/arm926ejs/davinci/dm365.c             |    2 +-
> arch/arm/cpu/arm926ejs/davinci/dm644x.c            |    2 +-
> arch/arm/cpu/arm926ejs/davinci/dm646x.c            |    2 +-
> arch/arm/cpu/armv7/Makefile                        |    1 +
> arch/arm/cpu/armv7/am33xx/board.c                  |    4 +-
> arch/arm/cpu/armv7/am33xx/emif4.c                  |    2 +-
> arch/arm/cpu/armv7/arch_timer.c                    |   58 ++
> arch/arm/cpu/armv7/keystone/Makefile               |   17 +
> arch/arm/cpu/armv7/keystone/aemif.c                |   71 ++
> arch/arm/cpu/armv7/keystone/clock.c                |  318 +++++++++
> arch/arm/cpu/armv7/keystone/cmd_clock.c            |  124 ++++
> arch/arm/cpu/armv7/keystone/cmd_mon.c              |  131 ++++
> arch/arm/cpu/armv7/keystone/ddr3.c                 |   69 ++
> arch/arm/cpu/armv7/keystone/init.c                 |   56 ++
> arch/arm/cpu/armv7/keystone/keystone_nav.c         |  376 ++++++++++
> arch/arm/cpu/armv7/keystone/msmc.c                 |   68 ++
> arch/arm/cpu/armv7/keystone/psc.c                  |  237 +++++++
> arch/arm/cpu/armv7/keystone/spl.c                  |   45 ++
> arch/arm/cpu/armv7/omap-common/boot-common.c       |   11 +
> arch/arm/cpu/armv7/omap-common/utils.c             |   21 +
> arch/arm/cpu/armv7/omap3/board.c                   |    4 +-
> arch/arm/cpu/armv7/omap3/clock.c                   |  355 ++++++----
> arch/arm/cpu/armv7/omap3/sys_info.c                |   19 +-
> arch/arm/cpu/armv7/syslib.c                        |   13 -
> arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    3 -
> arch/arm/include/asm/arch-davinci/i2c_defs.h       |   71 +-
> arch/arm/include/asm/arch-keystone/clock-k2hk.h    |  109 +++
> arch/arm/include/asm/arch-keystone/clock.h         |   17 +
> arch/arm/include/asm/arch-keystone/clock_defs.h    |  111 +++
> arch/arm/include/asm/arch-keystone/emac_defs.h     |  240 +++++++
> arch/arm/include/asm/arch-keystone/emif_defs.h     |   73 ++
> arch/arm/include/asm/arch-keystone/hardware-k2hk.h |  150 ++++
> arch/arm/include/asm/arch-keystone/hardware.h      |  175 +++++
> arch/arm/include/asm/arch-keystone/i2c_defs.h      |   17 +
> arch/arm/include/asm/arch-keystone/keystone_nav.h  |  193 ++++++
> arch/arm/include/asm/arch-keystone/nand_defs.h     |   23 +
> arch/arm/include/asm/arch-keystone/psc_defs.h      |   90 +++
> arch/arm/include/asm/arch-keystone/spl.h           |   12 +
> arch/arm/include/asm/arch-omap3/sys_proto.h        |    3 +-
> arch/arm/include/asm/arch-omap4/sys_proto.h        |    1 -
> arch/arm/include/asm/arch-omap5/sys_proto.h        |    1 -
> arch/arm/include/asm/omap_common.h                 |    2 +
> board/a3m071/a3m071.c                              |    3 +-
> board/logicpd/zoom1/config.mk                      |    1 -
> board/logicpd/zoom1/zoom1.c                        |   38 +-
> board/logicpd/zoom1/zoom1.h                        |   19 +-
> board/silica/pengwyn/Makefile                      |    2 +-
> board/ti/am335x/Makefile                           |    2 +-
> board/ti/am335x/board.c                            |   15 +-
> board/ti/beagle/beagle.c                           |   11 +
> board/ti/dra7xx/evm.c                              |   19 +
> board/ti/k2hk_evm/Makefile                         |    9 +
> board/ti/k2hk_evm/README                           |  122 ++++
> board/ti/k2hk_evm/board.c                          |  301 ++++++++
> board/ti/k2hk_evm/ddr3.c                           |  268 ++++++++
> board/ti/omap5_uevm/evm.c                          |   25 +-
> board/ti/panda/panda.c                             |   23 +-
> boards.cfg                                         |    4 +-
> common/env_mmc.c                                   |   49 +-
> common/image-fdt.c                                 |    5 +
> common/image.c                                     |    1 +
> common/spl/spl_fat.c                               |   27 +
> doc/README.falcon                                  |   13 +
> drivers/i2c/Makefile                               |    2 +-
> drivers/i2c/davinci_i2c.c                          |  402 ++++++-----
> drivers/i2c/davinci_i2c.h                          |   78 +++
> drivers/mtd/nand/Makefile                          |    3 +
> drivers/mtd/nand/am335x_spl_bch.c                  |   54 +-
> drivers/mtd/nand/davinci_nand.c                    |    3 +
> drivers/mtd/spi/spi_spl_load.c                     |   46 +-
> drivers/net/Makefile                               |    1 +
> drivers/net/keystone_net.c                         |  716 ++++++++++++++++++++
> drivers/serial/ns16550.c                           |    8 +
> drivers/spi/davinci_spi.c                          |   49 +-
> drivers/spi/davinci_spi.h                          |   33 +
> drivers/spi/ti_qspi.c                              |    3 +
> include/configs/am335x_evm.h                       |   25 +-
> include/configs/am43xx_evm.h                       |   17 +-
> include/configs/cam_enc_4xx.h                      |    8 +-
> include/configs/da830evm.h                         |    8 +-
> include/configs/da850evm.h                         |    8 +-
> include/configs/davinci_dm355evm.h                 |    8 +-
> include/configs/davinci_dm355leopard.h             |    8 +-
> include/configs/davinci_dm365evm.h                 |    8 +-
> include/configs/davinci_dm6467evm.h                |    8 +-
> include/configs/davinci_dvevm.h                    |    8 +-
> include/configs/davinci_schmoogie.h                |    8 +-
> include/configs/davinci_sffsdr.h                   |    8 +-
> include/configs/davinci_sonata.h                   |    8 +-
> include/configs/dra7xx_evm.h                       |   38 +-
> include/configs/ea20.h                             |    7 +-
> include/configs/enbw_cmc.h                         |    8 +-
> include/configs/k2hk_evm.h                         |  256 +++++++
> include/configs/omap3_beagle.h                     |  184 +----
> include/configs/omap3_zoom1.h                      |  167 ++---
> include/configs/omap5_uevm.h                       |    1 +
> include/configs/ti_am335x_common.h                 |    2 +
> include/configs/ti_armv7_common.h                  |   34 +-
> include/configs/ti_omap3_common.h                  |    4 +
> include/configs/ti_omap4_common.h                  |    6 +-
> include/configs/ti_omap5_common.h                  |    9 +-
> include/fdt_support.h                              |    7 +
> include/image.h                                    |    1 +
> spl/Makefile                                       |    1 +
> tools/Makefile                                     |    2 +
> tools/env/fw_env.c                                 |   13 +-
> tools/gpheader.h                                   |   40 ++
> tools/gpimage-common.c                             |   80 +++
> tools/gpimage.c                                    |   77 +++
> tools/imagetool.c                                  |    2 +
> tools/imagetool.h                                  |    1 +
> tools/omapimage.c                                  |  104 +--
> tools/omapimage.h                                  |    5 -
> 117 files changed, 5866 insertions(+), 996 deletions(-)  create mode 100644
>arch/arm/cpu/armv7/arch_timer.c  create mode 100644
>arch/arm/cpu/armv7/keystone/Makefile
> create mode 100644 arch/arm/cpu/armv7/keystone/aemif.c
> create mode 100644 arch/arm/cpu/armv7/keystone/clock.c
> create mode 100644 arch/arm/cpu/armv7/keystone/cmd_clock.c
> create mode 100644 arch/arm/cpu/armv7/keystone/cmd_mon.c
> create mode 100644 arch/arm/cpu/armv7/keystone/ddr3.c
> create mode 100644 arch/arm/cpu/armv7/keystone/init.c
> create mode 100644 arch/arm/cpu/armv7/keystone/keystone_nav.c
> create mode 100644 arch/arm/cpu/armv7/keystone/msmc.c
> create mode 100644 arch/arm/cpu/armv7/keystone/psc.c  create mode 100644
>arch/arm/cpu/armv7/keystone/spl.c  create mode 100644 arch/arm/include/asm/arch-
>keystone/clock-k2hk.h
> create mode 100644 arch/arm/include/asm/arch-keystone/clock.h
> create mode 100644 arch/arm/include/asm/arch-keystone/clock_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/emac_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/emif_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2hk.h
> create mode 100644 arch/arm/include/asm/arch-keystone/hardware.h
> create mode 100644 arch/arm/include/asm/arch-keystone/i2c_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/keystone_nav.h
> create mode 100644 arch/arm/include/asm/arch-keystone/nand_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/psc_defs.h
> create mode 100644 arch/arm/include/asm/arch-keystone/spl.h
> create mode 100644 board/ti/k2hk_evm/Makefile  create mode 100644
>board/ti/k2hk_evm/README  create mode 100644 board/ti/k2hk_evm/board.c  create
>mode 100644 board/ti/k2hk_evm/ddr3.c  create mode 100644 drivers/i2c/davinci_i2c.h
>create mode 100644 drivers/net/keystone_net.c  create mode 100644
>include/configs/k2hk_evm.h  create mode 100644 tools/gpheader.h  create mode 100644
>tools/gpimage-common.c  create mode 100644 tools/gpimage.c
>
>Thanks!
>
>--
>Tom

Tom,

Thanks for pulling this in.

With best regards,

Murali

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-04-18 13:24 Tom Rini
  2014-04-21 16:54 ` Karicheri, Muralidharan
  2014-04-21 19:32 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2014-04-18 13:24 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 1b82491ee6ee1e986e5521b33692a00e1f38fe75:

  board:tricorder: fixup SPL OOB layout (2014-04-11 10:08:42 -0400)

are available in the git repository at:

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

for you to fetch changes up to 2e8f5dc16ad360cc15ea402a1dc4d421a04adbbd:

  am43xx_evm: Drop SPI SPL (2014-04-17 17:40:15 -0400)

----------------------------------------------------------------
Karicheri, Muralidharan (6):
      tools: mkimage: add support for gpimage format
      NAND: DaVinci: allow forced disable of subpage writes
      i2c, davinci: move i2c_defs.h to the drivers/i2c directory
      spi: davinci: add support for multiple bus and chip select
      k2hk-evm: add configuration for spi1 and spi2 support
      keystone2: net: add keystone ethernet driver

Manish Badarkhe (1):
      arm, da850: staticize funtions

Nishanth Menon (11):
      OMAP: common: consolidate fake USB ethernet MAC address creation
      omap3/sys_info: provide interface to read die id
      OMAP3: beagle-xm: generate fake USB ethernet MAC address from dieid
      omap3: zoom1: enable CONFIG_SYS_GENERIC_BOARD
      OMAP3: zoom1: Configure GPMC for Ethernet
      OMAP3: zoom1: enable LAN9211
      omap3: zoom1: enable common network commands
      omap3: zoom1: disable JFFS2 and enable FS_GENERIC
      omap3: zoom1: enable bootz
      omap3: zoom1: fix default console
      omap3: zoom1: switch to generic ti_omap3_common config header

Poddar, Sourav (1):
      spi: ti_qspi: Add delay for successful bulk erase.

Tom Rini (22):
      fw_env.c: Switch get_config to use '%ms' in sscanf
      env_mmc.c: Allow environment to be used within SPL
      env_mmc.c: Remove NULL check on tmp_env1/2
      mtd: Add a CONFIG_SPL_MTD_SUPPORT for a more full NAND subsystem in SPL
      mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL
      am335x_evm: Make SPL_OS also check the boot_os variable for falcon mode
      README: Add CONFIG_SPL_OS_BOOT to README
      README.falcon: Document environment variables for falcon mode
      a3m071: Make spl_start_uboot test like getenv_yesno does
      spl_mmc/CONFIG_SPL_OS_BOOT: Allow environment to determine what to boot
      TI: Add, use a DEFAULT_LINUX_BOOT_ENV environment string
      am335x_evm: Update the ramdisk args, we pass things in just fine via DT
      am43xx_evm: Update the ramdisk args, we pass things in just fine via DT
      TI:omap5: Move CONFIG_ENV_SIZE to board config files
      TI:armv7: Change Falcon Mode DT load address
      am335x_evm: Drop SPI SPL support from the default build
      SPL:SPI: Add Falcon Mode support
      dra7xx_evm: Add QSPI_4 support, qspiboot build target
      TI:armv7: Switch to CONFIG_SYS_BOARD_GENERIC
      TI:omap3: Convert omap3_beagle to ti_omap3_common.h
      am335x: Switch to CONFIG_SKIP_LOWLEVEL_INIT from guarding SPL or NOR_BOOT
      am43xx_evm: Drop SPI SPL

Vitaly Andrianov (5):
      fdt: call ft_board_setup_ex() at the end of image_setup_libfdt()
      arm: add support for arch timer
      i2c, davinci: convert driver to new mutlibus/mutliadapter framework
      k2hk: add support for k2hk SOC and EVM
      keystone2: add keystone multicore navigator driver

Wolfgang Denk (3):
      ARM: OMAP: remove sr32() from OMAP board code
      ARM: OMAP: hide custom bit manipulation function sr32()
      ARM: OMAP: replace custom sr32() by standard I/O accessors

 Makefile                                           |   10 +
 README                                             |   13 +
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    6 +-
 arch/arm/cpu/arm926ejs/davinci/dm355.c             |    2 +-
 arch/arm/cpu/arm926ejs/davinci/dm365.c             |    2 +-
 arch/arm/cpu/arm926ejs/davinci/dm644x.c            |    2 +-
 arch/arm/cpu/arm926ejs/davinci/dm646x.c            |    2 +-
 arch/arm/cpu/armv7/Makefile                        |    1 +
 arch/arm/cpu/armv7/am33xx/board.c                  |    4 +-
 arch/arm/cpu/armv7/am33xx/emif4.c                  |    2 +-
 arch/arm/cpu/armv7/arch_timer.c                    |   58 ++
 arch/arm/cpu/armv7/keystone/Makefile               |   17 +
 arch/arm/cpu/armv7/keystone/aemif.c                |   71 ++
 arch/arm/cpu/armv7/keystone/clock.c                |  318 +++++++++
 arch/arm/cpu/armv7/keystone/cmd_clock.c            |  124 ++++
 arch/arm/cpu/armv7/keystone/cmd_mon.c              |  131 ++++
 arch/arm/cpu/armv7/keystone/ddr3.c                 |   69 ++
 arch/arm/cpu/armv7/keystone/init.c                 |   56 ++
 arch/arm/cpu/armv7/keystone/keystone_nav.c         |  376 ++++++++++
 arch/arm/cpu/armv7/keystone/msmc.c                 |   68 ++
 arch/arm/cpu/armv7/keystone/psc.c                  |  237 +++++++
 arch/arm/cpu/armv7/keystone/spl.c                  |   45 ++
 arch/arm/cpu/armv7/omap-common/boot-common.c       |   11 +
 arch/arm/cpu/armv7/omap-common/utils.c             |   21 +
 arch/arm/cpu/armv7/omap3/board.c                   |    4 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |  355 ++++++----
 arch/arm/cpu/armv7/omap3/sys_info.c                |   19 +-
 arch/arm/cpu/armv7/syslib.c                        |   13 -
 arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    3 -
 arch/arm/include/asm/arch-davinci/i2c_defs.h       |   71 +-
 arch/arm/include/asm/arch-keystone/clock-k2hk.h    |  109 +++
 arch/arm/include/asm/arch-keystone/clock.h         |   17 +
 arch/arm/include/asm/arch-keystone/clock_defs.h    |  111 +++
 arch/arm/include/asm/arch-keystone/emac_defs.h     |  240 +++++++
 arch/arm/include/asm/arch-keystone/emif_defs.h     |   73 ++
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |  150 ++++
 arch/arm/include/asm/arch-keystone/hardware.h      |  175 +++++
 arch/arm/include/asm/arch-keystone/i2c_defs.h      |   17 +
 arch/arm/include/asm/arch-keystone/keystone_nav.h  |  193 ++++++
 arch/arm/include/asm/arch-keystone/nand_defs.h     |   23 +
 arch/arm/include/asm/arch-keystone/psc_defs.h      |   90 +++
 arch/arm/include/asm/arch-keystone/spl.h           |   12 +
 arch/arm/include/asm/arch-omap3/sys_proto.h        |    3 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    1 -
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    1 -
 arch/arm/include/asm/omap_common.h                 |    2 +
 board/a3m071/a3m071.c                              |    3 +-
 board/logicpd/zoom1/config.mk                      |    1 -
 board/logicpd/zoom1/zoom1.c                        |   38 +-
 board/logicpd/zoom1/zoom1.h                        |   19 +-
 board/silica/pengwyn/Makefile                      |    2 +-
 board/ti/am335x/Makefile                           |    2 +-
 board/ti/am335x/board.c                            |   15 +-
 board/ti/beagle/beagle.c                           |   11 +
 board/ti/dra7xx/evm.c                              |   19 +
 board/ti/k2hk_evm/Makefile                         |    9 +
 board/ti/k2hk_evm/README                           |  122 ++++
 board/ti/k2hk_evm/board.c                          |  301 ++++++++
 board/ti/k2hk_evm/ddr3.c                           |  268 ++++++++
 board/ti/omap5_uevm/evm.c                          |   25 +-
 board/ti/panda/panda.c                             |   23 +-
 boards.cfg                                         |    4 +-
 common/env_mmc.c                                   |   49 +-
 common/image-fdt.c                                 |    5 +
 common/image.c                                     |    1 +
 common/spl/spl_fat.c                               |   27 +
 doc/README.falcon                                  |   13 +
 drivers/i2c/Makefile                               |    2 +-
 drivers/i2c/davinci_i2c.c                          |  402 ++++++-----
 drivers/i2c/davinci_i2c.h                          |   78 +++
 drivers/mtd/nand/Makefile                          |    3 +
 drivers/mtd/nand/am335x_spl_bch.c                  |   54 +-
 drivers/mtd/nand/davinci_nand.c                    |    3 +
 drivers/mtd/spi/spi_spl_load.c                     |   46 +-
 drivers/net/Makefile                               |    1 +
 drivers/net/keystone_net.c                         |  716 ++++++++++++++++++++
 drivers/serial/ns16550.c                           |    8 +
 drivers/spi/davinci_spi.c                          |   49 +-
 drivers/spi/davinci_spi.h                          |   33 +
 drivers/spi/ti_qspi.c                              |    3 +
 include/configs/am335x_evm.h                       |   25 +-
 include/configs/am43xx_evm.h                       |   17 +-
 include/configs/cam_enc_4xx.h                      |    8 +-
 include/configs/da830evm.h                         |    8 +-
 include/configs/da850evm.h                         |    8 +-
 include/configs/davinci_dm355evm.h                 |    8 +-
 include/configs/davinci_dm355leopard.h             |    8 +-
 include/configs/davinci_dm365evm.h                 |    8 +-
 include/configs/davinci_dm6467evm.h                |    8 +-
 include/configs/davinci_dvevm.h                    |    8 +-
 include/configs/davinci_schmoogie.h                |    8 +-
 include/configs/davinci_sffsdr.h                   |    8 +-
 include/configs/davinci_sonata.h                   |    8 +-
 include/configs/dra7xx_evm.h                       |   38 +-
 include/configs/ea20.h                             |    7 +-
 include/configs/enbw_cmc.h                         |    8 +-
 include/configs/k2hk_evm.h                         |  256 +++++++
 include/configs/omap3_beagle.h                     |  184 +----
 include/configs/omap3_zoom1.h                      |  167 ++---
 include/configs/omap5_uevm.h                       |    1 +
 include/configs/ti_am335x_common.h                 |    2 +
 include/configs/ti_armv7_common.h                  |   34 +-
 include/configs/ti_omap3_common.h                  |    4 +
 include/configs/ti_omap4_common.h                  |    6 +-
 include/configs/ti_omap5_common.h                  |    9 +-
 include/fdt_support.h                              |    7 +
 include/image.h                                    |    1 +
 spl/Makefile                                       |    1 +
 tools/Makefile                                     |    2 +
 tools/env/fw_env.c                                 |   13 +-
 tools/gpheader.h                                   |   40 ++
 tools/gpimage-common.c                             |   80 +++
 tools/gpimage.c                                    |   77 +++
 tools/imagetool.c                                  |    2 +
 tools/imagetool.h                                  |    1 +
 tools/omapimage.c                                  |  104 +--
 tools/omapimage.h                                  |    5 -
 117 files changed, 5866 insertions(+), 996 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/arch_timer.c
 create mode 100644 arch/arm/cpu/armv7/keystone/Makefile
 create mode 100644 arch/arm/cpu/armv7/keystone/aemif.c
 create mode 100644 arch/arm/cpu/armv7/keystone/clock.c
 create mode 100644 arch/arm/cpu/armv7/keystone/cmd_clock.c
 create mode 100644 arch/arm/cpu/armv7/keystone/cmd_mon.c
 create mode 100644 arch/arm/cpu/armv7/keystone/ddr3.c
 create mode 100644 arch/arm/cpu/armv7/keystone/init.c
 create mode 100644 arch/arm/cpu/armv7/keystone/keystone_nav.c
 create mode 100644 arch/arm/cpu/armv7/keystone/msmc.c
 create mode 100644 arch/arm/cpu/armv7/keystone/psc.c
 create mode 100644 arch/arm/cpu/armv7/keystone/spl.c
 create mode 100644 arch/arm/include/asm/arch-keystone/clock-k2hk.h
 create mode 100644 arch/arm/include/asm/arch-keystone/clock.h
 create mode 100644 arch/arm/include/asm/arch-keystone/clock_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/emac_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/emif_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/hardware-k2hk.h
 create mode 100644 arch/arm/include/asm/arch-keystone/hardware.h
 create mode 100644 arch/arm/include/asm/arch-keystone/i2c_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/keystone_nav.h
 create mode 100644 arch/arm/include/asm/arch-keystone/nand_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/psc_defs.h
 create mode 100644 arch/arm/include/asm/arch-keystone/spl.h
 create mode 100644 board/ti/k2hk_evm/Makefile
 create mode 100644 board/ti/k2hk_evm/README
 create mode 100644 board/ti/k2hk_evm/board.c
 create mode 100644 board/ti/k2hk_evm/ddr3.c
 create mode 100644 drivers/i2c/davinci_i2c.h
 create mode 100644 drivers/net/keystone_net.c
 create mode 100644 include/configs/k2hk_evm.h
 create mode 100644 tools/gpheader.h
 create mode 100644 tools/gpimage-common.c
 create mode 100644 tools/gpimage.c

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/20140418/c7127d96/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-31 15:21 Tom Rini
@ 2014-04-02  5:12 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-04-02  5:12 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 31 Mar 2014 11:21:08 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit ab6423cae0323e8db2c8fdd0a99138d93fde2137:
> 
>   Merge branch 'u-boot/master' into 'u-boot-arm/master' (2014-03-25 10:53:15 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 96de041ed9d91f87e59a1bf55dfa35d5caec8b26:
> 
>   board: enable 32kHz RTC OSC at B&R boards (2014-03-31 11:19:41 -0400)
> 
> ----------------------------------------------------------------
> Hannes Petermaier (1):
>       board: enable 32kHz RTC OSC at B&R boards
> 
>  include/configs/bur_am335x_common.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-03-31 15:21 Tom Rini
  2014-04-02  5:12 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-03-31 15:21 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit ab6423cae0323e8db2c8fdd0a99138d93fde2137:

  Merge branch 'u-boot/master' into 'u-boot-arm/master' (2014-03-25 10:53:15 +0100)

are available in the git repository at:


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

for you to fetch changes up to 96de041ed9d91f87e59a1bf55dfa35d5caec8b26:

  board: enable 32kHz RTC OSC at B&R boards (2014-03-31 11:19:41 -0400)

----------------------------------------------------------------
Hannes Petermaier (1):
      board: enable 32kHz RTC OSC at B&R boards

 include/configs/bur_am335x_common.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
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/20140331/5d4cda28/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-12 20:23 ` Tom Rini
@ 2014-03-13 15:56   ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-03-13 15:56 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Wed, 12 Mar 2014 16:23:11 -0400, Tom Rini <trini@ti.com> wrote:

> On Wed, Mar 12, 2014 at 04:05:05PM -0400, Tom Rini wrote:
> 
> > Hey,
> > 
> > The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb:
> > 
> >   Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400)
> > 
> > are available in the git repository at:
> > 
> >   git://git.denx.de/u-boot-ti.git master
> > 
> > for you to fetch changes up to d157776388b2b6cb819e76a56d3c63e604d8b291:
> > 
> >   arm: am335x: DXR2: Move unconditional LAN9303 reset into command (2014-03-12 14:51:45 -0400)
> 
> Ooops, updated as..
> 
> 
> The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb:
> 
>   Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to aadf3192f83a55dbbdb0d395ee5af88b6560edcb:
> 
>   board/BuR/kwb: fix usage of 'i2c_set_bus_speed' (2014-03-12 16:22:16 -0400)
> 
> ----------------------------------------------------------------
> Hannes Petermaier (1):
>       board/BuR/kwb: fix usage of 'i2c_set_bus_speed'
> 
> Ilya Ledvich (1):
>       drivers: net: cpsw: init phy with gigabit features
> 
> Stefan Roese (2):
>       arm: omap: cm_t35: Fix: Re-add GPMC_NAND_ECC_LP_x8_LAYOUT
>       arm: am335x: DXR2: Move unconditional LAN9303 reset into command
> 
> Tom Rini (2):
>       am33xx: Rework #ifdef's around s_init for clarity
>       am335x_evm: Remove SPI SPL from NOR support target
> 
> Vasili Galka (1):
>       drivers/spi/omap3: Bug fix of premature write transfer completion
> 
>  arch/arm/cpu/armv7/am33xx/board.c |    8 +++-----
>  board/BuR/kwb/board.c             |    4 ++--
>  board/siemens/dxr2/board.c        |   26 +++++++++++++++++++-------
>  drivers/net/cpsw.c                |    6 +-----
>  drivers/spi/omap3_spi.c           |    5 +++--
>  include/configs/am335x_evm.h      |    2 ++
>  include/configs/cm_t35.h          |    2 ++
>  7 files changed, 32 insertions(+), 21 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-12 20:05 Tom Rini
@ 2014-03-12 20:23 ` Tom Rini
  2014-03-13 15:56   ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-03-12 20:23 UTC (permalink / raw)
  To: u-boot

On Wed, Mar 12, 2014 at 04:05:05PM -0400, Tom Rini wrote:

> Hey,
> 
> The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb:
> 
>   Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to d157776388b2b6cb819e76a56d3c63e604d8b291:
> 
>   arm: am335x: DXR2: Move unconditional LAN9303 reset into command (2014-03-12 14:51:45 -0400)

Ooops, updated as..


The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb:

  Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400)

are available in the git repository at:

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

for you to fetch changes up to aadf3192f83a55dbbdb0d395ee5af88b6560edcb:

  board/BuR/kwb: fix usage of 'i2c_set_bus_speed' (2014-03-12 16:22:16 -0400)

----------------------------------------------------------------
Hannes Petermaier (1):
      board/BuR/kwb: fix usage of 'i2c_set_bus_speed'

Ilya Ledvich (1):
      drivers: net: cpsw: init phy with gigabit features

Stefan Roese (2):
      arm: omap: cm_t35: Fix: Re-add GPMC_NAND_ECC_LP_x8_LAYOUT
      arm: am335x: DXR2: Move unconditional LAN9303 reset into command

Tom Rini (2):
      am33xx: Rework #ifdef's around s_init for clarity
      am335x_evm: Remove SPI SPL from NOR support target

Vasili Galka (1):
      drivers/spi/omap3: Bug fix of premature write transfer completion

 arch/arm/cpu/armv7/am33xx/board.c |    8 +++-----
 board/BuR/kwb/board.c             |    4 ++--
 board/siemens/dxr2/board.c        |   26 +++++++++++++++++++-------
 drivers/net/cpsw.c                |    6 +-----
 drivers/spi/omap3_spi.c           |    5 +++--
 include/configs/am335x_evm.h      |    2 ++
 include/configs/cm_t35.h          |    2 ++
 7 files changed, 32 insertions(+), 21 deletions(-)

-- 
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/20140312/77dc2a8b/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-03-12 20:05 Tom Rini
  2014-03-12 20:23 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-03-12 20:05 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb:

  Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400)

are available in the git repository at:

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

for you to fetch changes up to d157776388b2b6cb819e76a56d3c63e604d8b291:

  arm: am335x: DXR2: Move unconditional LAN9303 reset into command (2014-03-12 14:51:45 -0400)

----------------------------------------------------------------
Hannes Petermaier (1):
      board/BuR/kwb: fix usage of 'i2c_set_bus_speed'

Ilya Ledvich (1):
      drivers: net: cpsw: init phy with gigabit features

Stefan Roese (2):
      arm: omap: cm_t35: Fix: Re-add GPMC_NAND_ECC_LP_x8_LAYOUT
      arm: am335x: DXR2: Move unconditional LAN9303 reset into command

Tom Rini (2):
      am33xx: Rework #ifdef's around s_init for clarity
      am335x_evm: Remove SPI SPL from NOR support target

Vasili Galka (1):
      drivers/spi/omap3: Bug fix of premature write transfer completion

 arch/arm/cpu/armv7/am33xx/board.c |    8 +++-----
 board/BuR/kwb/board.c             |    4 ++--
 board/siemens/dxr2/board.c        |   26 +++++++++++++++++++-------
 drivers/net/cpsw.c                |    6 +-----
 drivers/spi/omap3_spi.c           |    5 +++--
 include/configs/am335x_evm.h      |    2 ++
 include/configs/cm_t35.h          |    2 ++
 7 files changed, 32 insertions(+), 21 deletions(-)

-- 
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/20140312/d1fb8b43/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-06 16:22 ` Tom Rini
@ 2014-03-07 13:24   ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-03-07 13:24 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 6 Mar 2014 11:22:16 -0500, Tom Rini <trini@ti.com> wrote:

> On Thu, Mar 06, 2014 at 10:45:22AM -0500, Tom Rini wrote:
> 
> > Hey,
> > 
> > The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:
> > 
> >   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
> > 
> > are available in the git repository at:
> > 
> >   git://git.denx.de/u-boot-ti.git master
> > 
> > for you to fetch changes up to 4b75fd510076f2261c5e21b9b8cf75c9f01ded3c:
> > 
> >   board/BuR/common: fix phy addresses (2014-03-06 10:43:50 -0500)
> > 
> > ----------------------------------------------------------------
> > Hannes Petermaier (1):
> >       board/BuR/common: fix phy addresses
> > 
> >  board/BuR/common/common.c |    4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> This has been updated as:
> 
> The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:
> 
>   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to dd1e8583ee533a349c03ed4d75446898fe8dbac6:
> 
>   OMAP3: igep00x0: Enable required clocks for GPIO that are used. (2014-03-06 11:21:37 -0500)
> 
> ----------------------------------------------------------------
> Enric Balletbo i Serra (1):
>       OMAP3: igep00x0: Enable required clocks for GPIO that are used.
> 
> Hannes Petermaier (1):
>       board/BuR/common: fix phy addresses
> 
>  board/BuR/common/common.c        |    4 ++--
>  include/configs/omap3_igep00x0.h |    5 +++++
>  2 files changed, 7 insertions(+), 2 deletions(-)
> 
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-06 16:05 ` Enric Balletbo Serra
@ 2014-03-06 16:24   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2014-03-06 16:24 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 06, 2014 at 05:05:42PM +0100, Enric Balletbo Serra wrote:
> Hi Tom,
> 
> 2014-03-06 16:45 GMT+01:00 Tom Rini <trini@ti.com>:
> > Hey,
> >
> > The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:
> >
> >   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
> >
> > are available in the git repository at:
> >
> >   git://git.denx.de/u-boot-ti.git master
> >
> > for you to fetch changes up to 4b75fd510076f2261c5e21b9b8cf75c9f01ded3c:
> >
> >   board/BuR/common: fix phy addresses (2014-03-06 10:43:50 -0500)
> >
> > ----------------------------------------------------------------
> > Hannes Petermaier (1):
> >       board/BuR/common: fix phy addresses
> >
> >  board/BuR/common/common.c |    4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > Thanks!
> >
> > --
> > Tom
> >
> 
> Would be possible add the following fix in next pull request ?
> 
>     http://lists.denx.de/pipermail/u-boot/2014-January/171884.html
> 
> I sent some time ago and after various pull request was not included.
> It's ok or I need to change something ?

Patchwork didn't pick it up (I've sent Jeremy a copy off-list) which is
how I missed it, sorry!  Applied and updated the PR.

-- 
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/20140306/8f378717/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-06 15:45 Tom Rini
  2014-03-06 16:05 ` Enric Balletbo Serra
@ 2014-03-06 16:22 ` Tom Rini
  2014-03-07 13:24   ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-03-06 16:22 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 06, 2014 at 10:45:22AM -0500, Tom Rini wrote:

> Hey,
> 
> The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:
> 
>   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 4b75fd510076f2261c5e21b9b8cf75c9f01ded3c:
> 
>   board/BuR/common: fix phy addresses (2014-03-06 10:43:50 -0500)
> 
> ----------------------------------------------------------------
> Hannes Petermaier (1):
>       board/BuR/common: fix phy addresses
> 
>  board/BuR/common/common.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

This has been updated as:

The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:

  arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)

are available in the git repository at:

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

for you to fetch changes up to dd1e8583ee533a349c03ed4d75446898fe8dbac6:

  OMAP3: igep00x0: Enable required clocks for GPIO that are used. (2014-03-06 11:21:37 -0500)

----------------------------------------------------------------
Enric Balletbo i Serra (1):
      OMAP3: igep00x0: Enable required clocks for GPIO that are used.

Hannes Petermaier (1):
      board/BuR/common: fix phy addresses

 board/BuR/common/common.c        |    4 ++--
 include/configs/omap3_igep00x0.h |    5 +++++
 2 files changed, 7 insertions(+), 2 deletions(-)


-- 
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/20140306/b15844a0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-06 15:45 Tom Rini
@ 2014-03-06 16:05 ` Enric Balletbo Serra
  2014-03-06 16:24   ` Tom Rini
  2014-03-06 16:22 ` Tom Rini
  1 sibling, 1 reply; 324+ messages in thread
From: Enric Balletbo Serra @ 2014-03-06 16:05 UTC (permalink / raw)
  To: u-boot

Hi Tom,

2014-03-06 16:45 GMT+01:00 Tom Rini <trini@ti.com>:
> Hey,
>
> The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:
>
>   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 4b75fd510076f2261c5e21b9b8cf75c9f01ded3c:
>
>   board/BuR/common: fix phy addresses (2014-03-06 10:43:50 -0500)
>
> ----------------------------------------------------------------
> Hannes Petermaier (1):
>       board/BuR/common: fix phy addresses
>
>  board/BuR/common/common.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> Thanks!
>
> --
> Tom
>

Would be possible add the following fix in next pull request ?

    http://lists.denx.de/pipermail/u-boot/2014-January/171884.html

I sent some time ago and after various pull request was not included.
It's ok or I need to change something ?

Thanks,
   Enric


> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-03-06 15:45 Tom Rini
  2014-03-06 16:05 ` Enric Balletbo Serra
  2014-03-06 16:22 ` Tom Rini
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2014-03-06 15:45 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f:

  arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)

are available in the git repository at:

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

for you to fetch changes up to 4b75fd510076f2261c5e21b9b8cf75c9f01ded3c:

  board/BuR/common: fix phy addresses (2014-03-06 10:43:50 -0500)

----------------------------------------------------------------
Hannes Petermaier (1):
      board/BuR/common: fix phy addresses

 board/BuR/common/common.c |    4 ++--
 1 file changed, 2 insertions(+), 2 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/20140306/ab092fa2/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-03-04 19:19 Tom Rini
@ 2014-03-05  8:51 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-03-05  8:51 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 4 Mar 2014 14:19:47 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit eeb72e67619b98d2502fe634a3a5d9953de92ad0:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-02-26 16:49:58 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to cc07294bc704694ae33db75b25ac557e5917a83f:
> 
>   arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)
> 
> ----------------------------------------------------------------
> Dave Gerlach (3):
>       ARM: AM43xx: EMIF: configure self-refresh entry delay
>       ARM: AM43xx: Write sdram_config to secure_emif_sdram_config
>       ARM: AM43xx: Change DDR3 Reset Value
> 
> Lokesh Vutla (1):
>       ARM: AM4372: Update EMIF registers for DDR3
> 
> Mugunthan V N (6):
>       drivers: net: cpsw: add support to have phy address from cpsw platform data
>       ARM: AM43xx: clocks: Enable CPGMAC clock control
>       ARM: AM43xx: Add CPSW support to AM43xx EPOS and GP EVM
>       ARM: AM335x: add support for reading cpsw 2nd mac address from efuse
>       ARM: DRA7xx: add support for reading cpsw 2nd mac from efuse
>       ARM: AM43xx: Add Ethernet boot support to SPL
> 
> Stefan Roese (1):
>       arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup
> 
>  arch/arm/cpu/armv7/am33xx/clock_am43xx.c |    1 +
>  arch/arm/cpu/armv7/am33xx/ddr.c          |    5 +-
>  arch/arm/cpu/armv7/am33xx/emif4.c        |    2 +-
>  board/BuR/common/common.c                |    4 +-
>  board/compulab/cm_t335/cm_t335.c         |    2 +-
>  board/isee/igep0033/board.c              |    2 +-
>  board/phytec/pcm051/board.c              |    4 +-
>  board/siemens/dxr2/board.c               |    9 ++-
>  board/siemens/dxr2/mux.c                 |    2 +
>  board/siemens/pxm2/board.c               |    4 +-
>  board/siemens/rut/board.c                |    4 +-
>  board/silica/pengwyn/board.c             |    4 +-
>  board/ti/am335x/board.c                  |   19 +++++-
>  board/ti/am43xx/board.c                  |  100 +++++++++++++++++++++++++++++-
>  board/ti/am43xx/mux.c                    |   44 ++++++++++++-
>  board/ti/dra7xx/evm.c                    |   19 +++++-
>  board/ti/ti814x/evm.c                    |    4 +-
>  drivers/net/cpsw.c                       |    4 +-
>  include/configs/am335x_evm.h             |    1 -
>  include/configs/am335x_igep0033.h        |    1 -
>  include/configs/am43xx_evm.h             |   26 ++++++++
>  include/configs/bur_am335x_common.h      |    1 -
>  include/configs/cm_t335.h                |    1 -
>  include/configs/dra7xx_evm.h             |    1 -
>  include/configs/dxr2.h                   |    2 +-
>  include/configs/pcm051.h                 |    1 -
>  include/configs/pengwyn.h                |    1 -
>  include/configs/pxm2.h                   |    1 -
>  include/configs/rut.h                    |    1 -
>  include/configs/ti814x_evm.h             |    1 -
>  include/configs/ti_am335x_common.h       |    1 +
>  include/cpsw.h                           |    2 +-
>  32 files changed, 235 insertions(+), 39 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-03-04 19:19 Tom Rini
  2014-03-05  8:51 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-03-04 19:19 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit eeb72e67619b98d2502fe634a3a5d9953de92ad0:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-02-26 16:49:58 -0500)

are available in the git repository at:


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

for you to fetch changes up to cc07294bc704694ae33db75b25ac557e5917a83f:

  arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup (2014-03-04 09:42:07 -0500)

----------------------------------------------------------------
Dave Gerlach (3):
      ARM: AM43xx: EMIF: configure self-refresh entry delay
      ARM: AM43xx: Write sdram_config to secure_emif_sdram_config
      ARM: AM43xx: Change DDR3 Reset Value

Lokesh Vutla (1):
      ARM: AM4372: Update EMIF registers for DDR3

Mugunthan V N (6):
      drivers: net: cpsw: add support to have phy address from cpsw platform data
      ARM: AM43xx: clocks: Enable CPGMAC clock control
      ARM: AM43xx: Add CPSW support to AM43xx EPOS and GP EVM
      ARM: AM335x: add support for reading cpsw 2nd mac address from efuse
      ARM: DRA7xx: add support for reading cpsw 2nd mac from efuse
      ARM: AM43xx: Add Ethernet boot support to SPL

Stefan Roese (1):
      arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup

 arch/arm/cpu/armv7/am33xx/clock_am43xx.c |    1 +
 arch/arm/cpu/armv7/am33xx/ddr.c          |    5 +-
 arch/arm/cpu/armv7/am33xx/emif4.c        |    2 +-
 board/BuR/common/common.c                |    4 +-
 board/compulab/cm_t335/cm_t335.c         |    2 +-
 board/isee/igep0033/board.c              |    2 +-
 board/phytec/pcm051/board.c              |    4 +-
 board/siemens/dxr2/board.c               |    9 ++-
 board/siemens/dxr2/mux.c                 |    2 +
 board/siemens/pxm2/board.c               |    4 +-
 board/siemens/rut/board.c                |    4 +-
 board/silica/pengwyn/board.c             |    4 +-
 board/ti/am335x/board.c                  |   19 +++++-
 board/ti/am43xx/board.c                  |  100 +++++++++++++++++++++++++++++-
 board/ti/am43xx/mux.c                    |   44 ++++++++++++-
 board/ti/dra7xx/evm.c                    |   19 +++++-
 board/ti/ti814x/evm.c                    |    4 +-
 drivers/net/cpsw.c                       |    4 +-
 include/configs/am335x_evm.h             |    1 -
 include/configs/am335x_igep0033.h        |    1 -
 include/configs/am43xx_evm.h             |   26 ++++++++
 include/configs/bur_am335x_common.h      |    1 -
 include/configs/cm_t335.h                |    1 -
 include/configs/dra7xx_evm.h             |    1 -
 include/configs/dxr2.h                   |    2 +-
 include/configs/pcm051.h                 |    1 -
 include/configs/pengwyn.h                |    1 -
 include/configs/pxm2.h                   |    1 -
 include/configs/rut.h                    |    1 -
 include/configs/ti814x_evm.h             |    1 -
 include/configs/ti_am335x_common.h       |    1 +
 include/cpsw.h                           |    2 +-
 32 files changed, 235 insertions(+), 39 deletions(-)

-- 
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/20140304/61553f34/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-02-21 19:16 Tom Rini
@ 2014-02-24 12:29 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-02-24 12:29 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 21 Feb 2014 14:16:45 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 3e11350255d9c5d4bd03c2a65769da84c05d3294:
> 
>   Merge branch 'u-boot/master' into 'u-boot-arm/master' (2014-02-20 13:16:05 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 11f296870659e1375e7116a859458b254cc3156f:
> 
>   ti814x: Fix illegal use of FP ops in clock_ti814x.c (2014-02-21 14:03:44 -0500)
> 
> ----------------------------------------------------------------
> Dave Gerlach (1):
>       ARM: AM43xx: GP-EVM: Correct GPIO used for VTT regulator control
> 
> Hannes Petermaier (2):
>       board: Add support for B&R T-Series Motherboard
>       Add support for B&R KWB Motherboard
> 
> Janne Grunau (1):
>       ARM: OMAP4: fix DDR timings for OMAP4430 ES2.0
> 
> Lothar Felten (1):
>       am335x: Initial support for Silica Pengwyn board
> 
> M?ns Rullg?rd (1):
>       ti814x: Fix illegal use of FP ops in clock_ti814x.c
> 
> Nishanth Menon (2):
>       DRA7: fix ABB efuse offset for OPP_NOM
>       omap4_common: config: remove I2C for SPL mode
> 
> Stefan Roese (2):
>       arm: omap3: Fix tao3530/omap3_ha SPL boot hangup (GPIO clocks not enabled)
>       arm: omap: cm_t35: Remove CONFIG_SYS_BOOTMAPSZ to fix FDT Linux booting
> 
> Stefano Babic (3):
>       OMAP3: add missing gpio clock init and fix NAND SPL for mcx board
>       omap3: fix pinmux for mcx board
>       OMAP3: fix default environment for mcx board
> 
> Tom Rini (3):
>       am335x_evm: Enable GPT commands
>       am43xx_evm: Enable GPT commands
>       dra7xx_evm: Enable GPT commands
> 
>  arch/arm/cpu/armv7/am33xx/board.c           |    6 +-
>  arch/arm/cpu/armv7/am33xx/clock_am43xx.c    |    2 +
>  arch/arm/cpu/armv7/am33xx/clock_ti814x.c    |    5 +-
>  arch/arm/cpu/armv7/omap4/hw_data.c          |   18 ++
>  arch/arm/cpu/armv7/omap5/prcm-regs.c        |    2 +-
>  arch/arm/include/asm/arch-am33xx/cpu.h      |   12 +-
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h |   16 ++
>  arch/arm/include/asm/arch-am33xx/gpio.h     |    4 +-
>  board/BuR/common/bur_common.h               |   22 +++
>  board/BuR/common/common.c                   |  216 ++++++++++++++++++++++
>  board/BuR/kwb/Makefile                      |   12 ++
>  board/BuR/kwb/board.c                       |  240 ++++++++++++++++++++++++
>  board/BuR/kwb/mux.c                         |  195 ++++++++++++++++++++
>  board/BuR/tseries/Makefile                  |   14 ++
>  board/BuR/tseries/board.c                   |  147 +++++++++++++++
>  board/BuR/tseries/mux.c                     |  225 +++++++++++++++++++++++
>  board/htkw/mcx/mcx.h                        |    2 -
>  board/silica/pengwyn/Makefile               |   13 ++
>  board/silica/pengwyn/board.c                |  207 +++++++++++++++++++++
>  board/silica/pengwyn/board.h                |   15 ++
>  board/silica/pengwyn/mux.c                  |   98 ++++++++++
>  board/ti/am43xx/board.c                     |   16 +-
>  board/ti/am43xx/mux.c                       |    6 +-
>  boards.cfg                                  |    5 +
>  include/configs/am335x_evm.h                |   13 ++
>  include/configs/am43xx_evm.h                |    9 +
>  include/configs/bur_am335x_common.h         |  197 ++++++++++++++++++++
>  include/configs/cm_t35.h                    |    7 -
>  include/configs/dra7xx_evm.h                |   11 ++
>  include/configs/kwb.h                       |  128 +++++++++++++
>  include/configs/mcx.h                       |    9 +-
>  include/configs/pengwyn.h                   |  208 +++++++++++++++++++++
>  include/configs/tao3530.h                   |    7 +
>  include/configs/ti_am335x_common.h          |    1 -
>  include/configs/ti_omap4_common.h           |    6 +
>  include/configs/tseries.h                   |  265 +++++++++++++++++++++++++++
>  36 files changed, 2323 insertions(+), 36 deletions(-)
>  create mode 100644 board/BuR/common/bur_common.h
>  create mode 100644 board/BuR/common/common.c
>  create mode 100644 board/BuR/kwb/Makefile
>  create mode 100644 board/BuR/kwb/board.c
>  create mode 100644 board/BuR/kwb/mux.c
>  create mode 100644 board/BuR/tseries/Makefile
>  create mode 100644 board/BuR/tseries/board.c
>  create mode 100644 board/BuR/tseries/mux.c
>  create mode 100644 board/silica/pengwyn/Makefile
>  create mode 100644 board/silica/pengwyn/board.c
>  create mode 100644 board/silica/pengwyn/board.h
>  create mode 100644 board/silica/pengwyn/mux.c
>  create mode 100644 include/configs/bur_am335x_common.h
>  create mode 100644 include/configs/kwb.h
>  create mode 100644 include/configs/pengwyn.h
>  create mode 100644 include/configs/tseries.h
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-02-21 19:16 Tom Rini
  2014-02-24 12:29 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-02-21 19:16 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 3e11350255d9c5d4bd03c2a65769da84c05d3294:

  Merge branch 'u-boot/master' into 'u-boot-arm/master' (2014-02-20 13:16:05 +0100)

are available in the git repository at:


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

for you to fetch changes up to 11f296870659e1375e7116a859458b254cc3156f:

  ti814x: Fix illegal use of FP ops in clock_ti814x.c (2014-02-21 14:03:44 -0500)

----------------------------------------------------------------
Dave Gerlach (1):
      ARM: AM43xx: GP-EVM: Correct GPIO used for VTT regulator control

Hannes Petermaier (2):
      board: Add support for B&R T-Series Motherboard
      Add support for B&R KWB Motherboard

Janne Grunau (1):
      ARM: OMAP4: fix DDR timings for OMAP4430 ES2.0

Lothar Felten (1):
      am335x: Initial support for Silica Pengwyn board

M?ns Rullg?rd (1):
      ti814x: Fix illegal use of FP ops in clock_ti814x.c

Nishanth Menon (2):
      DRA7: fix ABB efuse offset for OPP_NOM
      omap4_common: config: remove I2C for SPL mode

Stefan Roese (2):
      arm: omap3: Fix tao3530/omap3_ha SPL boot hangup (GPIO clocks not enabled)
      arm: omap: cm_t35: Remove CONFIG_SYS_BOOTMAPSZ to fix FDT Linux booting

Stefano Babic (3):
      OMAP3: add missing gpio clock init and fix NAND SPL for mcx board
      omap3: fix pinmux for mcx board
      OMAP3: fix default environment for mcx board

Tom Rini (3):
      am335x_evm: Enable GPT commands
      am43xx_evm: Enable GPT commands
      dra7xx_evm: Enable GPT commands

 arch/arm/cpu/armv7/am33xx/board.c           |    6 +-
 arch/arm/cpu/armv7/am33xx/clock_am43xx.c    |    2 +
 arch/arm/cpu/armv7/am33xx/clock_ti814x.c    |    5 +-
 arch/arm/cpu/armv7/omap4/hw_data.c          |   18 ++
 arch/arm/cpu/armv7/omap5/prcm-regs.c        |    2 +-
 arch/arm/include/asm/arch-am33xx/cpu.h      |   12 +-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h |   16 ++
 arch/arm/include/asm/arch-am33xx/gpio.h     |    4 +-
 board/BuR/common/bur_common.h               |   22 +++
 board/BuR/common/common.c                   |  216 ++++++++++++++++++++++
 board/BuR/kwb/Makefile                      |   12 ++
 board/BuR/kwb/board.c                       |  240 ++++++++++++++++++++++++
 board/BuR/kwb/mux.c                         |  195 ++++++++++++++++++++
 board/BuR/tseries/Makefile                  |   14 ++
 board/BuR/tseries/board.c                   |  147 +++++++++++++++
 board/BuR/tseries/mux.c                     |  225 +++++++++++++++++++++++
 board/htkw/mcx/mcx.h                        |    2 -
 board/silica/pengwyn/Makefile               |   13 ++
 board/silica/pengwyn/board.c                |  207 +++++++++++++++++++++
 board/silica/pengwyn/board.h                |   15 ++
 board/silica/pengwyn/mux.c                  |   98 ++++++++++
 board/ti/am43xx/board.c                     |   16 +-
 board/ti/am43xx/mux.c                       |    6 +-
 boards.cfg                                  |    5 +
 include/configs/am335x_evm.h                |   13 ++
 include/configs/am43xx_evm.h                |    9 +
 include/configs/bur_am335x_common.h         |  197 ++++++++++++++++++++
 include/configs/cm_t35.h                    |    7 -
 include/configs/dra7xx_evm.h                |   11 ++
 include/configs/kwb.h                       |  128 +++++++++++++
 include/configs/mcx.h                       |    9 +-
 include/configs/pengwyn.h                   |  208 +++++++++++++++++++++
 include/configs/tao3530.h                   |    7 +
 include/configs/ti_am335x_common.h          |    1 -
 include/configs/ti_omap4_common.h           |    6 +
 include/configs/tseries.h                   |  265 +++++++++++++++++++++++++++
 36 files changed, 2323 insertions(+), 36 deletions(-)
 create mode 100644 board/BuR/common/bur_common.h
 create mode 100644 board/BuR/common/common.c
 create mode 100644 board/BuR/kwb/Makefile
 create mode 100644 board/BuR/kwb/board.c
 create mode 100644 board/BuR/kwb/mux.c
 create mode 100644 board/BuR/tseries/Makefile
 create mode 100644 board/BuR/tseries/board.c
 create mode 100644 board/BuR/tseries/mux.c
 create mode 100644 board/silica/pengwyn/Makefile
 create mode 100644 board/silica/pengwyn/board.c
 create mode 100644 board/silica/pengwyn/board.h
 create mode 100644 board/silica/pengwyn/mux.c
 create mode 100644 include/configs/bur_am335x_common.h
 create mode 100644 include/configs/kwb.h
 create mode 100644 include/configs/pengwyn.h
 create mode 100644 include/configs/tseries.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/20140221/b545c6c8/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-01-24 20:20 Tom Rini
  2014-01-29 13:07 ` Albert ARIBAUD
@ 2014-01-29 15:07 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-01-29 15:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 24 Jan 2014 15:20:25 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit c71b4dd2da0dcddabd7c29e6c3dc8a495d4bd928:
> 
>   arm: koelsch: Add support QSPI device and enable boot from SPI flash (2014-01-16 08:07:20 +0900)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to b1cde7e21f950e05d18c102976c3b7d232b65e13:
> 
>   am43xx_evm.h: Correct SPL max size (2014-01-24 11:41:17 -0500)
> 
> ----------------------------------------------------------------
> Enric Balletb? i Serra (7):
>       ARM: OMAP4: Rename to ti_omap4_common.h
>       ARM: OMAP5: Rename to ti_omap5_common.h
>       TI: armv7: Move ELM support to SoC configuration file.
>       TI: armv7: Do not define the number DRAM banks if is already defined.
>       ARM: OMAP3: Rename OMAP3_PUBLIC_SRAM_* to NON_SECURE_SRAM_*
>       TI: OMAP3: Create common config files for TI OMAP3 platforms.
>       OMAP3: igep00x0: Convert to ti_omap3_common.h.
> 
> Jassi Brar (2):
>       ARM: OMAP4/5: Remove dead code against CONFIG_SYS_CLOCKS_ENABLE_ALL
>       ARM: OMAP4/5: Remove dead code against CONFIG_SYS_ENABLE_PADS_ALL
> 
> Lokesh Vutla (1):
>       ARM: AM43xx: Enable DDR dynamic IO power down for DDR3
> 
> Nishanth Menon (2):
>       DRA7: Add support for ES1.1 silicon ID code
>       DRA7: add ABB setup for MPU voltage domain
> 
> Satyanarayana, Sandhya (1):
>       ARM: AM335x: Enable DDR dynamic IO power down
> 
> Tom Rini (2):
>       feature-removal-schedule.txt: Drop  CONFIG_SYS_ENABLE_PADS_ALL/CLOCKS_ENABLE_ALL
>       am43xx_evm.h: Correct SPL max size
> 
>  arch/arm/cpu/armv7/omap-common/clocks-common.c     |   53 -----
>  arch/arm/cpu/armv7/omap-common/emif-common.c       |    5 +-
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    6 -
>  arch/arm/cpu/armv7/omap4/hw_data.c                 |   85 -------
>  arch/arm/cpu/armv7/omap5/abb.c                     |   13 +-
>  arch/arm/cpu/armv7/omap5/hw_data.c                 |   90 +-------
>  arch/arm/cpu/armv7/omap5/hwinit.c                  |    3 +
>  arch/arm/cpu/armv7/omap5/prcm-regs.c               |    8 +
>  arch/arm/cpu/armv7/omap5/sdram.c                   |    4 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    8 +-
>  arch/arm/include/asm/arch-omap3/omap3.h            |    6 +-
>  arch/arm/include/asm/arch-omap4/sys_proto.h        |    1 -
>  arch/arm/include/asm/arch-omap5/omap.h             |    3 +
>  arch/arm/include/asm/arch-omap5/sys_proto.h        |    1 -
>  arch/arm/include/asm/omap_common.h                 |    2 +-
>  board/ti/am43xx/board.c                            |    2 +-
>  board/ti/omap5_uevm/evm.c                          |   13 --
>  board/ti/omap5_uevm/mux_data.h                     |  234 --------------------
>  board/ti/panda/panda.c                             |   30 ---
>  board/ti/panda/panda_mux_data.h                    |  186 ----------------
>  board/ti/sdp4430/sdp.c                             |   20 --
>  board/ti/sdp4430/sdp4430_mux_data.h                |  197 ----------------
>  doc/feature-removal-schedule.txt                   |   16 --
>  include/configs/am43xx_evm.h                       |    2 +-
>  include/configs/dra7xx_evm.h                       |    4 +-
>  include/configs/omap3_igep00x0.h                   |  189 +---------------
>  include/configs/omap4_panda.h                      |    4 +-
>  include/configs/omap4_sdp4430.h                    |    4 +-
>  include/configs/omap5_uevm.h                       |    4 +-
>  include/configs/ti_am335x_common.h                 |    4 +
>  include/configs/ti_armv7_common.h                  |   11 +-
>  include/configs/ti_omap3_common.h                  |   73 ++++++
>  .../configs/{omap4_common.h => ti_omap4_common.h}  |   10 +-
>  .../configs/{omap5_common.h => ti_omap5_common.h}  |   10 +-
>  34 files changed, 157 insertions(+), 1144 deletions(-)
>  create mode 100644 include/configs/ti_omap3_common.h
>  rename include/configs/{omap4_common.h => ti_omap4_common.h} (95%)
>  rename include/configs/{omap5_common.h => ti_omap5_common.h} (95%)
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2014-01-24 20:20 Tom Rini
@ 2014-01-29 13:07 ` Albert ARIBAUD
  2014-01-29 15:07 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-01-29 13:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 24 Jan 2014 15:20:25 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit c71b4dd2da0dcddabd7c29e6c3dc8a495d4bd928:
> 
>   arm: koelsch: Add support QSPI device and enable boot from SPI flash (2014-01-16 08:07:20 +0900)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to b1cde7e21f950e05d18c102976c3b7d232b65e13:
> 
>   am43xx_evm.h: Correct SPL max size (2014-01-24 11:41:17 -0500)

On it right now, sorry for the delay.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-01-24 20:20 Tom Rini
  2014-01-29 13:07 ` Albert ARIBAUD
  2014-01-29 15:07 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2014-01-24 20:20 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit c71b4dd2da0dcddabd7c29e6c3dc8a495d4bd928:

  arm: koelsch: Add support QSPI device and enable boot from SPI flash (2014-01-16 08:07:20 +0900)

are available in the git repository at:

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

for you to fetch changes up to b1cde7e21f950e05d18c102976c3b7d232b65e13:

  am43xx_evm.h: Correct SPL max size (2014-01-24 11:41:17 -0500)

----------------------------------------------------------------
Enric Balletb? i Serra (7):
      ARM: OMAP4: Rename to ti_omap4_common.h
      ARM: OMAP5: Rename to ti_omap5_common.h
      TI: armv7: Move ELM support to SoC configuration file.
      TI: armv7: Do not define the number DRAM banks if is already defined.
      ARM: OMAP3: Rename OMAP3_PUBLIC_SRAM_* to NON_SECURE_SRAM_*
      TI: OMAP3: Create common config files for TI OMAP3 platforms.
      OMAP3: igep00x0: Convert to ti_omap3_common.h.

Jassi Brar (2):
      ARM: OMAP4/5: Remove dead code against CONFIG_SYS_CLOCKS_ENABLE_ALL
      ARM: OMAP4/5: Remove dead code against CONFIG_SYS_ENABLE_PADS_ALL

Lokesh Vutla (1):
      ARM: AM43xx: Enable DDR dynamic IO power down for DDR3

Nishanth Menon (2):
      DRA7: Add support for ES1.1 silicon ID code
      DRA7: add ABB setup for MPU voltage domain

Satyanarayana, Sandhya (1):
      ARM: AM335x: Enable DDR dynamic IO power down

Tom Rini (2):
      feature-removal-schedule.txt: Drop  CONFIG_SYS_ENABLE_PADS_ALL/CLOCKS_ENABLE_ALL
      am43xx_evm.h: Correct SPL max size

 arch/arm/cpu/armv7/omap-common/clocks-common.c     |   53 -----
 arch/arm/cpu/armv7/omap-common/emif-common.c       |    5 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    6 -
 arch/arm/cpu/armv7/omap4/hw_data.c                 |   85 -------
 arch/arm/cpu/armv7/omap5/abb.c                     |   13 +-
 arch/arm/cpu/armv7/omap5/hw_data.c                 |   90 +-------
 arch/arm/cpu/armv7/omap5/hwinit.c                  |    3 +
 arch/arm/cpu/armv7/omap5/prcm-regs.c               |    8 +
 arch/arm/cpu/armv7/omap5/sdram.c                   |    4 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |    8 +-
 arch/arm/include/asm/arch-omap3/omap3.h            |    6 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    1 -
 arch/arm/include/asm/arch-omap5/omap.h             |    3 +
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    1 -
 arch/arm/include/asm/omap_common.h                 |    2 +-
 board/ti/am43xx/board.c                            |    2 +-
 board/ti/omap5_uevm/evm.c                          |   13 --
 board/ti/omap5_uevm/mux_data.h                     |  234 --------------------
 board/ti/panda/panda.c                             |   30 ---
 board/ti/panda/panda_mux_data.h                    |  186 ----------------
 board/ti/sdp4430/sdp.c                             |   20 --
 board/ti/sdp4430/sdp4430_mux_data.h                |  197 ----------------
 doc/feature-removal-schedule.txt                   |   16 --
 include/configs/am43xx_evm.h                       |    2 +-
 include/configs/dra7xx_evm.h                       |    4 +-
 include/configs/omap3_igep00x0.h                   |  189 +---------------
 include/configs/omap4_panda.h                      |    4 +-
 include/configs/omap4_sdp4430.h                    |    4 +-
 include/configs/omap5_uevm.h                       |    4 +-
 include/configs/ti_am335x_common.h                 |    4 +
 include/configs/ti_armv7_common.h                  |   11 +-
 include/configs/ti_omap3_common.h                  |   73 ++++++
 .../configs/{omap4_common.h => ti_omap4_common.h}  |   10 +-
 .../configs/{omap5_common.h => ti_omap5_common.h}  |   10 +-
 34 files changed, 157 insertions(+), 1144 deletions(-)
 create mode 100644 include/configs/ti_omap3_common.h
 rename include/configs/{omap4_common.h => ti_omap4_common.h} (95%)
 rename include/configs/{omap5_common.h => ti_omap5_common.h} (95%)

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/20140124/639e2230/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2014-01-08 13:33 Tom Rini
@ 2014-01-08 22:06 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2014-01-08 22:06 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Wed, 8 Jan 2014 08:33:58 -0500, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 4b0561d84198f8d696fd51cfc27aeac8c7482a8c:
> 
>   Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-01-06 09:32:42 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to e0a1d598ef0155f31589c42db17ff4784e84ca67:
> 
>   ARM: dra7_evm: read mac address properly from e-fuse (2014-01-07 16:41:12 -0500)
> 
> ----------------------------------------------------------------
> Jeroen Hofstee (2):
>       ARM: tam3517-common: fix nand spl boot
>       ARM: twister: add missing gpio clock init
> 
> Mugunthan V N (1):
>       ARM: dra7_evm: read mac address properly from e-fuse
> 
> Nikita Kiryanov (1):
>       arm: omap: cm_t35: enable gpio bank 5 clocks explicitly
> 
> Tom Rini (2):
>       cam_enc_4xx: Set CONFIG_SYS_NAND_MAX_OOBFREE / CONFIG_SYS_NAND_MAX_ECCPOS
>       TI:omap3: Drop omap3_zoom2
> 
>  board/logicpd/zoom2/Makefile       |   11 --
>  board/logicpd/zoom2/config.mk      |   17 ---
>  board/logicpd/zoom2/debug_board.c  |   44 -------
>  board/logicpd/zoom2/led.c          |  116 ------------------
>  board/logicpd/zoom2/zoom2.c        |  183 ----------------------------
>  board/logicpd/zoom2/zoom2.h        |  142 ---------------------
>  board/logicpd/zoom2/zoom2_serial.c |  130 --------------------
>  board/logicpd/zoom2/zoom2_serial.h |   59 ---------
>  board/ti/dra7xx/evm.c              |    8 +-
>  boards.cfg                         |    1 -
>  drivers/serial/ns16550.c           |    5 +-
>  include/configs/cam_enc_4xx.h      |    2 +
>  include/configs/cm_t35.h           |    1 +
>  include/configs/omap3_zoom2.h      |  237 ------------------------------------
>  include/configs/tam3517-common.h   |    1 +
>  include/configs/twister.h          |    3 +
>  16 files changed, 13 insertions(+), 947 deletions(-)
>  delete mode 100644 board/logicpd/zoom2/Makefile
>  delete mode 100644 board/logicpd/zoom2/config.mk
>  delete mode 100644 board/logicpd/zoom2/debug_board.c
>  delete mode 100644 board/logicpd/zoom2/led.c
>  delete mode 100644 board/logicpd/zoom2/zoom2.c
>  delete mode 100644 board/logicpd/zoom2/zoom2.h
>  delete mode 100644 board/logicpd/zoom2/zoom2_serial.c
>  delete mode 100644 board/logicpd/zoom2/zoom2_serial.h
>  delete mode 100644 include/configs/omap3_zoom2.h
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2014-01-08 13:33 Tom Rini
  2014-01-08 22:06 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2014-01-08 13:33 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 4b0561d84198f8d696fd51cfc27aeac8c7482a8c:

  Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-01-06 09:32:42 +0100)

are available in the git repository at:


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

for you to fetch changes up to e0a1d598ef0155f31589c42db17ff4784e84ca67:

  ARM: dra7_evm: read mac address properly from e-fuse (2014-01-07 16:41:12 -0500)

----------------------------------------------------------------
Jeroen Hofstee (2):
      ARM: tam3517-common: fix nand spl boot
      ARM: twister: add missing gpio clock init

Mugunthan V N (1):
      ARM: dra7_evm: read mac address properly from e-fuse

Nikita Kiryanov (1):
      arm: omap: cm_t35: enable gpio bank 5 clocks explicitly

Tom Rini (2):
      cam_enc_4xx: Set CONFIG_SYS_NAND_MAX_OOBFREE / CONFIG_SYS_NAND_MAX_ECCPOS
      TI:omap3: Drop omap3_zoom2

 board/logicpd/zoom2/Makefile       |   11 --
 board/logicpd/zoom2/config.mk      |   17 ---
 board/logicpd/zoom2/debug_board.c  |   44 -------
 board/logicpd/zoom2/led.c          |  116 ------------------
 board/logicpd/zoom2/zoom2.c        |  183 ----------------------------
 board/logicpd/zoom2/zoom2.h        |  142 ---------------------
 board/logicpd/zoom2/zoom2_serial.c |  130 --------------------
 board/logicpd/zoom2/zoom2_serial.h |   59 ---------
 board/ti/dra7xx/evm.c              |    8 +-
 boards.cfg                         |    1 -
 drivers/serial/ns16550.c           |    5 +-
 include/configs/cam_enc_4xx.h      |    2 +
 include/configs/cm_t35.h           |    1 +
 include/configs/omap3_zoom2.h      |  237 ------------------------------------
 include/configs/tam3517-common.h   |    1 +
 include/configs/twister.h          |    3 +
 16 files changed, 13 insertions(+), 947 deletions(-)
 delete mode 100644 board/logicpd/zoom2/Makefile
 delete mode 100644 board/logicpd/zoom2/config.mk
 delete mode 100644 board/logicpd/zoom2/debug_board.c
 delete mode 100644 board/logicpd/zoom2/led.c
 delete mode 100644 board/logicpd/zoom2/zoom2.c
 delete mode 100644 board/logicpd/zoom2/zoom2.h
 delete mode 100644 board/logicpd/zoom2/zoom2_serial.c
 delete mode 100644 board/logicpd/zoom2/zoom2_serial.h
 delete mode 100644 include/configs/omap3_zoom2.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/20140108/3ae27ccf/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-19 13:14 ` Dan Murphy
@ 2013-12-19 14:23   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-12-19 14:23 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 12/19/2013 08:14 AM, Dan Murphy wrote:
> 
> Tom
> 
> On 12/18/2013 02:07 PM, Tom Rini wrote:
>> Hey,
>>
>> The following changes since commit d2c7074b9593d822e2359a09c21747248fdf5fac:
>>
>>   ARM: OMAP5: clocks: Update MPU settings for OPP_NOM (2013-12-12 17:43:39 -0500)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> for you to fetch changes up to b65391f99393ce43a8fe2bbcd9e9663dea41682f:
>>
>>   ARM: am437x: Adapt to common CONFIG_BOOTCMD (2013-12-18 10:49:32 -0500)
>>
>> ----------------------------------------------------------------
>> Dan Murphy (1):
>>       ARM: am437x: Adapt to common CONFIG_BOOTCMD
> 
> This is not ready yet until we pull in the common config patches for the
> ti_armv7_common.h

Oh that's right.  V2 shortly.

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJSswFtAAoJENk4IS6UOR1WhqoQAKSKtHIaqJUdk8zf4K7wvBaO
GjVdc/8i1wRJxqTxpxgTmjBv9gnjRtJruU2SF+xD9aohvl8MHpA13LPqJsAI30Rw
XkQMAgN1kCvI95qJ2eDfRr0Md0vVxm1JQre0VZgiXV1caQ/yy1k9QW3u3lcx8MEs
oR5fK/9gKESKeTtltXw/G4InZ8UhIcTb3dgb0siTC4P7RgHh+VNu2WQAgLk37aSm
YkutlRjZldg4UHvh+hUSS8LmkgJZAohSkIQ+92j/mV+zE6MnyiRW/vOfOqN7/qB1
J1nXTGp3lu3kmWV8Ih965AnI+Tl2OgRaNWoFRiaETsyB8bqXTkvJb3TCRtRnYjFg
+XSK8y3qEm9nBoIUCxfNeEDyMdHLLBuzFqn1eupHyseBt8v+mr+b9X/G+YsBu3qv
P7l12sSzYu6p6ubP2Xx/e+EL8bqBIJiiueNMNTDDtU+/Xz3wbZhRk04IfOTyMC/T
6fIj1yDl5t+NEVaVR9vX4wu9Bsgc9+yF0VqzYM+QYOXBTbVYJIMSWibu/V1KkAZq
6qYKmuUg3Nu26ynMmBaeX+lUPv8GlHJnn4ZU5eH0oJo6lgsQSLifptT5O77+jTLe
rPwbUUvgJKYnuLtAfuwP01l3u35wKRGOJD17SqN0Dcr06rlaTTIn+KOViG0XV4QU
rnZSi9JlE3VZdvFwugTF
=K9qV
-----END PGP SIGNATURE-----

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-18 20:07 Tom Rini
@ 2013-12-19 13:14 ` Dan Murphy
  2013-12-19 14:23   ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Dan Murphy @ 2013-12-19 13:14 UTC (permalink / raw)
  To: u-boot


Tom

On 12/18/2013 02:07 PM, Tom Rini wrote:
> Hey,
>
> The following changes since commit d2c7074b9593d822e2359a09c21747248fdf5fac:
>
>   ARM: OMAP5: clocks: Update MPU settings for OPP_NOM (2013-12-12 17:43:39 -0500)
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to b65391f99393ce43a8fe2bbcd9e9663dea41682f:
>
>   ARM: am437x: Adapt to common CONFIG_BOOTCMD (2013-12-18 10:49:32 -0500)
>
> ----------------------------------------------------------------
> Dan Murphy (1):
>       ARM: am437x: Adapt to common CONFIG_BOOTCMD

This is not ready yet until we pull in the common config patches for the ti_armv7_common.h

Dan

> 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/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                       |  218 ++++++------
>  include/configs/omap3_beagle.h                     |    3 +
>  32 files changed, 1010 insertions(+), 181 deletions(-)
>
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot


-- 
------------------
Dan Murphy

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-12-18 20:07 Tom Rini
  2013-12-19 13:14 ` Dan Murphy
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-12-18 20:07 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit d2c7074b9593d822e2359a09c21747248fdf5fac:

  ARM: OMAP5: clocks: Update MPU settings for OPP_NOM (2013-12-12 17:43:39 -0500)

are available in the git repository at:

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

for you to fetch changes up to b65391f99393ce43a8fe2bbcd9e9663dea41682f:

  ARM: am437x: Adapt to common CONFIG_BOOTCMD (2013-12-18 10:49:32 -0500)

----------------------------------------------------------------
Dan Murphy (1):
      ARM: am437x: Adapt to common CONFIG_BOOTCMD

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/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                       |  218 ++++++------
 include/configs/omap3_beagle.h                     |    3 +
 32 files changed, 1010 insertions(+), 181 deletions(-)

-- 
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/20131218/c38e034f/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06 13:38         ` Stefan Roese
@ 2013-12-06 14:23           ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-12-06 14:23 UTC (permalink / raw)
  To: u-boot

Hi Stefan,

On Fri, 06 Dec 2013 14:38:58 +0100, Stefan Roese <sr@denx.de> wrote:

> Hi Albert,
> 
> On 06.12.2013 13:06, Albert ARIBAUD wrote:
> >> On 06.12.2013 10:20, Yegor Yefremov wrote:
> >>>> This causes am3517_evm to fail with warnings:
> >>>>
> >>>> am3517evm.c: In function 'misc_init_r':
> >>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> >>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
> >>>> am3517evm.c: In function 'misc_init_r':
> >>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> >>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
> >>>>
> >>>> These are trivial, but I'd like them fixed; lingering warnings are a
> >>>> pain to manage when doing large-scale test build.
> >>>>
> >>>> These ones come from commit ae98bbeb, that is :
> >>>>
> >>>>> Yegor Yefremov (1):
> >>>>>       am3517_evm: activate Ethernet PHY
> >>>>
> >>>> Yegor, can you fix this? Thanks.
> >>>
> >>> v2 sent. I've put those variables under if defined statement, so the
> >>> warning has gone.
> >>
> >> In general its preferred to use the __maybe_unused statement instead of
> >> adding more #ifdef's. Like this:
> >>
> >> +	__maybe_unused volatile unsigned int ctr;
> >> +	__maybe_unused u32 reset;
> >>
> >> Care to send a v3 for this patch?
> >>
> >> Thanks,
> >> Stefan
> >>
> > 
> > Hmm, if the variables are used under a clearly defined conditional, I
> > prefer them to be defined under than conditional too. This makes
> > it clearer what is affected when removing the conditional.
> 
> I personally still prefer the __maybe_unused version. And I have seen
> other U-Boot developers also using it lately more frequently. The
> removed #ifdef outweighs the added __maybe_unused for my taste.

I respect your preference. However, my own taste is for making explicit
rather than implicit the reason why a variable is marked possibly
unused, therefore I would prefer the declarations to be under the same
conditional as their use.

Note however that in case where one cannot readily see the conditions
under which the variable is unused (e.g. if the variable is an
argument to a macro which may or may not use it), I'm ok with using
the attribute 'maybe_unused'.

Note also that in the case at hand, a solution may be to declare the
variables inside a block under the existing conditional; that
block could enclose the three lines below the "ensure that the module is
out of reset" comment. The declarations would then require neither
conditionals or attributes (and would be topologically as close to the
use as possible).

> Thanks,
> Stefan

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06 12:06       ` Albert ARIBAUD
@ 2013-12-06 13:38         ` Stefan Roese
  2013-12-06 14:23           ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Stefan Roese @ 2013-12-06 13:38 UTC (permalink / raw)
  To: u-boot

Hi Albert,

On 06.12.2013 13:06, Albert ARIBAUD wrote:
>> On 06.12.2013 10:20, Yegor Yefremov wrote:
>>>> This causes am3517_evm to fail with warnings:
>>>>
>>>> am3517evm.c: In function 'misc_init_r':
>>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>>>> am3517evm.c: In function 'misc_init_r':
>>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>>>>
>>>> These are trivial, but I'd like them fixed; lingering warnings are a
>>>> pain to manage when doing large-scale test build.
>>>>
>>>> These ones come from commit ae98bbeb, that is :
>>>>
>>>>> Yegor Yefremov (1):
>>>>>       am3517_evm: activate Ethernet PHY
>>>>
>>>> Yegor, can you fix this? Thanks.
>>>
>>> v2 sent. I've put those variables under if defined statement, so the
>>> warning has gone.
>>
>> In general its preferred to use the __maybe_unused statement instead of
>> adding more #ifdef's. Like this:
>>
>> +	__maybe_unused volatile unsigned int ctr;
>> +	__maybe_unused u32 reset;
>>
>> Care to send a v3 for this patch?
>>
>> Thanks,
>> Stefan
>>
> 
> Hmm, if the variables are used under a clearly defined conditional, I
> prefer them to be defined under than conditional too. This makes
> it clearer what is affected when removing the conditional.

I personally still prefer the __maybe_unused version. And I have seen
other U-Boot developers also using it lately more frequently. The
removed #ifdef outweighs the added __maybe_unused for my taste.

Thanks,
Stefan

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06 10:08     ` Stefan Roese
  2013-12-06 10:11       ` Yegor Yefremov
@ 2013-12-06 12:06       ` Albert ARIBAUD
  2013-12-06 13:38         ` Stefan Roese
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-12-06 12:06 UTC (permalink / raw)
  To: u-boot

Hi Stefan,

On Fri, 06 Dec 2013 11:08:17 +0100, Stefan Roese <sr@denx.de> wrote:

> Hi Yegor,
> 
> On 06.12.2013 10:20, Yegor Yefremov wrote:
> >> This causes am3517_evm to fail with warnings:
> >>
> >> am3517evm.c: In function 'misc_init_r':
> >> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> >> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
> >> am3517evm.c: In function 'misc_init_r':
> >> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> >> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
> >>
> >> These are trivial, but I'd like them fixed; lingering warnings are a
> >> pain to manage when doing large-scale test build.
> >>
> >> These ones come from commit ae98bbeb, that is :
> >>
> >>> Yegor Yefremov (1):
> >>>       am3517_evm: activate Ethernet PHY
> >>
> >> Yegor, can you fix this? Thanks.
> > 
> > v2 sent. I've put those variables under if defined statement, so the
> > warning has gone.
> 
> In general its preferred to use the __maybe_unused statement instead of
> adding more #ifdef's. Like this:
> 
> +	__maybe_unused volatile unsigned int ctr;
> +	__maybe_unused u32 reset;
> 
> Care to send a v3 for this patch?
> 
> Thanks,
> Stefan
> 

Hmm, if the variables are used under a clearly defined conditional, I
prefer them to be defined under than conditional too. This makes
it clearer what is affected when removing the conditional.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06 10:08     ` Stefan Roese
@ 2013-12-06 10:11       ` Yegor Yefremov
  2013-12-06 12:06       ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Yegor Yefremov @ 2013-12-06 10:11 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 6, 2013 at 11:08 AM, Stefan Roese <sr@denx.de> wrote:
> Hi Yegor,
>
> On 06.12.2013 10:20, Yegor Yefremov wrote:
>>> This causes am3517_evm to fail with warnings:
>>>
>>> am3517evm.c: In function 'misc_init_r':
>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>>> am3517evm.c: In function 'misc_init_r':
>>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>>>
>>> These are trivial, but I'd like them fixed; lingering warnings are a
>>> pain to manage when doing large-scale test build.
>>>
>>> These ones come from commit ae98bbeb, that is :
>>>
>>>> Yegor Yefremov (1):
>>>>       am3517_evm: activate Ethernet PHY
>>>
>>> Yegor, can you fix this? Thanks.
>>
>> v2 sent. I've put those variables under if defined statement, so the
>> warning has gone.
>
> In general its preferred to use the __maybe_unused statement instead of
> adding more #ifdef's. Like this:
>
> +       __maybe_unused volatile unsigned int ctr;
> +       __maybe_unused u32 reset;
>
> Care to send a v3 for this patch?

Will do.

Yegor

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06  9:20   ` Yegor Yefremov
@ 2013-12-06 10:08     ` Stefan Roese
  2013-12-06 10:11       ` Yegor Yefremov
  2013-12-06 12:06       ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Stefan Roese @ 2013-12-06 10:08 UTC (permalink / raw)
  To: u-boot

Hi Yegor,

On 06.12.2013 10:20, Yegor Yefremov wrote:
>> This causes am3517_evm to fail with warnings:
>>
>> am3517evm.c: In function 'misc_init_r':
>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>> am3517evm.c: In function 'misc_init_r':
>> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
>> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>>
>> These are trivial, but I'd like them fixed; lingering warnings are a
>> pain to manage when doing large-scale test build.
>>
>> These ones come from commit ae98bbeb, that is :
>>
>>> Yegor Yefremov (1):
>>>       am3517_evm: activate Ethernet PHY
>>
>> Yegor, can you fix this? Thanks.
> 
> v2 sent. I've put those variables under if defined statement, so the
> warning has gone.

In general its preferred to use the __maybe_unused statement instead of
adding more #ifdef's. Like this:

+	__maybe_unused volatile unsigned int ctr;
+	__maybe_unused u32 reset;

Care to send a v3 for this patch?

Thanks,
Stefan

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-06  8:33 ` Albert ARIBAUD
@ 2013-12-06  9:20   ` Yegor Yefremov
  2013-12-06 10:08     ` Stefan Roese
  0 siblings, 1 reply; 324+ messages in thread
From: Yegor Yefremov @ 2013-12-06  9:20 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 6, 2013 at 9:33 AM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Tom,
>
> On Wed, 4 Dec 2013 17:06:30 -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 b06f8984959f51f4b99f9c77efa5267623c98957:
>>
>>   omap4_panda: Don't use ulpi_reset (2013-12-04 11:41:14 -0500)
>
> This causes am3517_evm to fail with warnings:
>
> am3517evm.c: In function 'misc_init_r':
> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
> am3517evm.c: In function 'misc_init_r':
> am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
> am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
>
> These are trivial, but I'd like them fixed; lingering warnings are a
> pain to manage when doing large-scale test build.
>
> These ones come from commit ae98bbeb, that is :
>
>> Yegor Yefremov (1):
>>       am3517_evm: activate Ethernet PHY
>
> Yegor, can you fix this? Thanks.

v2 sent. I've put those variables under if defined statement, so the
warning has gone.

Yegor

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

* [U-Boot] Please pull u-boot-ti/master
  2013-12-04 22:06 Tom Rini
@ 2013-12-06  8:33 ` Albert ARIBAUD
  2013-12-06  9:20   ` Yegor Yefremov
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-12-06  8:33 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Wed, 4 Dec 2013 17:06:30 -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 b06f8984959f51f4b99f9c77efa5267623c98957:
> 
>   omap4_panda: Don't use ulpi_reset (2013-12-04 11:41:14 -0500)

This causes am3517_evm to fail with warnings:

am3517evm.c: In function 'misc_init_r':
am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]
am3517evm.c: In function 'misc_init_r':
am3517evm.c:106:6: warning: unused variable 'reset' [-Wunused-variable]
am3517evm.c:105:24: warning: unused variable 'ctr' [-Wunused-variable]

These are trivial, but I'd like them fixed; lingering warnings are a
pain to manage when doing large-scale test build.

These ones come from commit ae98bbeb, that is :

> Yegor Yefremov (1):
>       am3517_evm: activate Ethernet PHY

Yegor, can you fix this? Thanks.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-12-04 22:06 Tom Rini
  2013-12-06  8:33 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-12-04 22:06 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 b06f8984959f51f4b99f9c77efa5267623c98957:

  omap4_panda: Don't use ulpi_reset (2013-12-04 11:41:14 -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 (2):
      am33xx: Stop modifying certain EMIF4D registers
      am335x_evm: Update nandboot to use partitions and DT

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

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

Yegor Yefremov (1):
      am3517_evm: activate Ethernet PHY

 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/logicpd/am3517evm/am3517evm.c          |   34 ++++
 board/logicpd/am3517evm/am3517evm.h          |    2 +-
 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/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 +++++
 54 files changed, 1768 insertions(+), 260 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

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/20131204/6987303f/attachment.pgp>

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

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

On Tue, Nov 12, 2013 at 09:50:43AM -0500, Tom Rini 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 79c5c08d7c560aef2d5706501557b7907c2829bb:
> 
>   omap730p2: Remove board (2013-11-11 12:17:48 -0500)
> 
> ----------------------------------------------------------------
> Andrew Bradford (1):
>       am335x_evm: Fix CONS_INDEX numbering
> 
> Heiko Schocher (2):
>       bootcount: store bootcount var in environment
>       arm, am33x: make RTC32K OSC enable 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
> 
> Tom Rini (2):
>       am33xx: Make SoC bootcount driver have its own symbol
>       omap730p2: Remove board

Oops, since u-boot-arm was updated, I have 2 more patches, new PR in a
second..

-- 
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/31124ce8/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-11-12 14:50 Tom Rini
  2013-11-12 15:03 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-11-12 14:50 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 79c5c08d7c560aef2d5706501557b7907c2829bb:

  omap730p2: Remove board (2013-11-11 12:17:48 -0500)

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

Heiko Schocher (2):
      bootcount: store bootcount var in environment
      arm, am33x: make RTC32K OSC enable 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

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/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 +++
 include/configs/am335x_evm.h          |    4 +
 include/configs/cm_t35.h              |    9 +-
 include/configs/h2_p2_dbg_board.h     |  120 ---------
 include/configs/omap730.h             |  246 ------------------
 include/configs/omap730p2.h           |  173 ------------
 include/configs/ti_am335x_common.h    |    5 +-
 21 files changed, 80 insertions(+), 1813 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/ce2f6859/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-10-07 11:44 Tom Rini
@ 2013-10-07 16:17 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-10-07 16:17 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 7 Oct 2013 07:44:56 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit e261c83aa04ce0396d57aaecf8dfe0970ffac03e:
> 
>   ARM: VExpress: enable ARMv7 virt support for VExpress A15 (2013-10-03 21:28:57 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to ddd025bb6e283744dc93d3653a0b6fbd5c35e904:
> 
>   usb: Fix error handling in musb_hcd.c (2013-10-07 07:43:46 -0400)
> 
> ----------------------------------------------------------------
> Andrew Murray (1):
>       usb: Fix error handling in musb_hcd.c
> 
> Enric Balletbo i Serra (1):
>       ARM: IGEP0033: Update timing to run DDR at 400MHz.
> 
> Lars Poeschel (1):
>       pcm051/igep0033: Supply bd_ram_ofs for cpsw driver
> 
> Tom Rini (1):
>       am335x_evm: Switch to zImage as default rather than uImage
> 
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h |   24 ++++++++++++------------
>  board/isee/igep0033/board.c                 |    5 +++--
>  board/phytec/pcm051/board.c                 |    1 +
>  drivers/usb/musb/musb_hcd.c                 |   10 +++++-----
>  include/configs/am335x_evm.h                |   22 +++++++++++-----------
>  5 files changed, 32 insertions(+), 30 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-10-07 11:44 Tom Rini
  2013-10-07 16:17 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-10-07 11:44 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit e261c83aa04ce0396d57aaecf8dfe0970ffac03e:

  ARM: VExpress: enable ARMv7 virt support for VExpress A15 (2013-10-03 21:28:57 +0200)

are available in the git repository at:

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

for you to fetch changes up to ddd025bb6e283744dc93d3653a0b6fbd5c35e904:

  usb: Fix error handling in musb_hcd.c (2013-10-07 07:43:46 -0400)

----------------------------------------------------------------
Andrew Murray (1):
      usb: Fix error handling in musb_hcd.c

Enric Balletbo i Serra (1):
      ARM: IGEP0033: Update timing to run DDR at 400MHz.

Lars Poeschel (1):
      pcm051/igep0033: Supply bd_ram_ofs for cpsw driver

Tom Rini (1):
      am335x_evm: Switch to zImage as default rather than uImage

 arch/arm/include/asm/arch-am33xx/ddr_defs.h |   24 ++++++++++++------------
 board/isee/igep0033/board.c                 |    5 +++--
 board/phytec/pcm051/board.c                 |    1 +
 drivers/usb/musb/musb_hcd.c                 |   10 +++++-----
 include/configs/am335x_evm.h                |   22 +++++++++++-----------
 5 files changed, 32 insertions(+), 30 deletions(-)

-- 
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/20131007/e76bf373/attachment.pgp>

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

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

Hi Tom,

On Sat, 21 Sep 2013 08:06:13 -0400, Tom Rini <trini@ti.com> wrote:

> Hey,
> 
> The following changes since commit 82cecfce3fd33e151ed8bc382ae31b19535765c5:
> 
>   drivers: s3c44b0_rtc: delete an unused driver (2013-09-19 09:52:08 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 827512fb1154c05c6eb1e2259e936df55c98a535:
> 
>   am335x_evm.h: If mmcdev and bootpart switch to mmcdev 1, so should mmcroot. (2013-09-20 16:57:40 -0400)
> 
> ----------------------------------------------------------------
> Greg Guyotte (1):
>       drivers/power/pmic: Add tps65217 driver
> 
> Heiko Schocher (1):
>       net, phy, cpsw: fix NULL pointer deference
> 
> Lokesh Vutla (2):
>       ARM: DRA7: Enable saveenv command
>       ARM: OMAP5: Avoid writing into LDO SRAM bits
> 
> Philip, Avinash (1):
>       drivers/power/pmic: Add tps65910 driver
> 
> Robert P. J. Day (1):
>       am335x_evm.h: If mmcdev and bootpart switch to mmcdev 1, so should mmcroot.
> 
> Steve Kipisz (1):
>       am335x:Handle worst case scenario for Errata 1.0.24
> 
> Tom Rini (4):
>       spl/Makefile: Add drivers/power/pmic/libpmic to CONFIG_SPL_POWER_SUPPORT
>       am33xx: Add am33xx_spl_board_init function, call
>       am33xx: Add the efuse_sma CONTROL_MODULE register
>       am335x_evm: am33xx_spl_board_init function and scale core frequency
> 
>  arch/arm/cpu/armv7/am33xx/board.c                |   11 ++
>  arch/arm/cpu/armv7/am33xx/clock_am33xx.c         |    8 +-
>  arch/arm/cpu/armv7/am33xx/sys_info.c             |   57 +++++++++
>  arch/arm/cpu/armv7/omap-common/boot-common.c     |    3 +
>  arch/arm/cpu/armv7/omap-common/clocks-common.c   |    7 --
>  arch/arm/cpu/armv7/omap5/prcm-regs.c             |   12 --
>  arch/arm/include/asm/arch-am33xx/clocks_am33xx.h |   12 +-
>  arch/arm/include/asm/arch-am33xx/cpu.h           |   12 ++
>  arch/arm/include/asm/arch-am33xx/sys_proto.h     |    4 +
>  arch/arm/include/asm/omap_common.h               |    6 -
>  board/ti/am335x/board.c                          |  146 ++++++++++++++++++++++
>  drivers/net/cpsw.c                               |   10 +-
>  drivers/power/pmic/Makefile                      |    2 +
>  drivers/power/pmic/pmic_tps65217.c               |  109 ++++++++++++++++
>  drivers/power/pmic/pmic_tps65910.c               |   83 ++++++++++++
>  include/configs/am335x_evm.h                     |    6 +
>  include/configs/dra7xx_evm.h                     |    8 +-
>  include/configs/pcm051.h                         |    1 +
>  include/power/tps65217.h                         |   83 ++++++++++++
>  include/power/tps65910.h                         |   77 ++++++++++++
>  spl/Makefile                                     |    3 +-
>  21 files changed, 629 insertions(+), 31 deletions(-)
>  create mode 100644 drivers/power/pmic/pmic_tps65217.c
>  create mode 100644 drivers/power/pmic/pmic_tps65910.c
>  create mode 100644 include/power/tps65217.h
>  create mode 100644 include/power/tps65910.h
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

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

Hey,

The following changes since commit 82cecfce3fd33e151ed8bc382ae31b19535765c5:

  drivers: s3c44b0_rtc: delete an unused driver (2013-09-19 09:52:08 +0200)

are available in the git repository at:

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

for you to fetch changes up to 827512fb1154c05c6eb1e2259e936df55c98a535:

  am335x_evm.h: If mmcdev and bootpart switch to mmcdev 1, so should mmcroot. (2013-09-20 16:57:40 -0400)

----------------------------------------------------------------
Greg Guyotte (1):
      drivers/power/pmic: Add tps65217 driver

Heiko Schocher (1):
      net, phy, cpsw: fix NULL pointer deference

Lokesh Vutla (2):
      ARM: DRA7: Enable saveenv command
      ARM: OMAP5: Avoid writing into LDO SRAM bits

Philip, Avinash (1):
      drivers/power/pmic: Add tps65910 driver

Robert P. J. Day (1):
      am335x_evm.h: If mmcdev and bootpart switch to mmcdev 1, so should mmcroot.

Steve Kipisz (1):
      am335x:Handle worst case scenario for Errata 1.0.24

Tom Rini (4):
      spl/Makefile: Add drivers/power/pmic/libpmic to CONFIG_SPL_POWER_SUPPORT
      am33xx: Add am33xx_spl_board_init function, call
      am33xx: Add the efuse_sma CONTROL_MODULE register
      am335x_evm: am33xx_spl_board_init function and scale core frequency

 arch/arm/cpu/armv7/am33xx/board.c                |   11 ++
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c         |    8 +-
 arch/arm/cpu/armv7/am33xx/sys_info.c             |   57 +++++++++
 arch/arm/cpu/armv7/omap-common/boot-common.c     |    3 +
 arch/arm/cpu/armv7/omap-common/clocks-common.c   |    7 --
 arch/arm/cpu/armv7/omap5/prcm-regs.c             |   12 --
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h |   12 +-
 arch/arm/include/asm/arch-am33xx/cpu.h           |   12 ++
 arch/arm/include/asm/arch-am33xx/sys_proto.h     |    4 +
 arch/arm/include/asm/omap_common.h               |    6 -
 board/ti/am335x/board.c                          |  146 ++++++++++++++++++++++
 drivers/net/cpsw.c                               |   10 +-
 drivers/power/pmic/Makefile                      |    2 +
 drivers/power/pmic/pmic_tps65217.c               |  109 ++++++++++++++++
 drivers/power/pmic/pmic_tps65910.c               |   83 ++++++++++++
 include/configs/am335x_evm.h                     |    6 +
 include/configs/dra7xx_evm.h                     |    8 +-
 include/configs/pcm051.h                         |    1 +
 include/power/tps65217.h                         |   83 ++++++++++++
 include/power/tps65910.h                         |   77 ++++++++++++
 spl/Makefile                                     |    3 +-
 21 files changed, 629 insertions(+), 31 deletions(-)
 create mode 100644 drivers/power/pmic/pmic_tps65217.c
 create mode 100644 drivers/power/pmic/pmic_tps65910.c
 create mode 100644 include/power/tps65217.h
 create mode 100644 include/power/tps65910.h

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/20130921/5417d9d5/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-08-28 18:25 Tom Rini
@ 2013-09-04 15:14 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-09-04 15:14 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Wed, 28 Aug 2013 14:25:07 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 9ed887caecb9ecb0c68773a1870d143b9f28d3da:
> 
>   Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-08-17 18:24:13 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 901ce27c6f018992b7dd6c08d3c98cf217cc4c96:
> 
>   siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support (2013-08-28 12:01:30 -0400)
> 
> ----------------------------------------------------------------
> Albert ARIBAUD (1):
>       arm: omap3: fix SRAM copy and execution sequence
> 
> Heiko Schocher (6):
>       arm, am33xx: add defines for gmii_sel_register bits
>       arm, am335x: add some missing registers and defines for lcd and epwm support
>       arm, spl: add watchdog library to SPL
>       arm, am335x: add watchdog support
>       video: add formike lcd panel init
>       arm, am335x: add support for 3 siemens boards
> 
> Javier Martinez Canillas (1):
>       ARM: igep00x0.h: Enable raw initrd support
> 
> Lubomir Popov (1):
>       ARM: OMAP4470: Add Elpida EDB8164B3PF memory configuration
> 
> Oleksandr Tyshchenko (1):
>       sdp4430: Initialize board id using CONFIG_MACH_TYPE
> 
> Taras Kondratiuk (3):
>       ARM: OMAP4470: Add OMAP4470 identification
>       ARM: OMAP4470: Add voltage and dpll data
>       ARM: OMAP4460: sdp: Limit TPS mux config to 4460
> 
> Tom Rini (13):
>       am33xx: Correct and expand comments on CONFIG_SPL_MAX_SIZE
>       TI:armv7: Move CONFIG_SPL_LIBDISK_SUPPORT to MMC section
>       omap5: Expand CONFIG_SPL_MAX_SIZE and comment upon SRAM_SCRATCH_SPACE_ADDR
>       TI:am335x: Better comment and organize the networking related options
>       am335x_evm: Add comment by SPL SPI support
>       am335x_evm: Regroup USB options
>       TI:armv7: Re-order slightly the generic CONFIG options, expand related comments
>       am335x_evm: Update README for customization
>       TI:am33xx: Move SPL YMODEM support to the per-board config
>       TI:omap5: Clarify comments about SPL and DDR timings in common config
>       omap5_uevm: Better comment why we have TCA642X and the reset time
>       dra7xx_evm: Re-order and comment the networking related config options
>       siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support
> 
>  MAINTAINERS                                        |    5 +
>  arch/arm/cpu/armv7/omap3/clock.c                   |    6 +-
>  arch/arm/cpu/armv7/omap3/lowlevel_init.S           |    8 +-
>  arch/arm/cpu/armv7/omap4/hw_data.c                 |   36 ++
>  arch/arm/cpu/armv7/omap4/hwinit.c                  |    3 +
>  arch/arm/cpu/armv7/omap4/sdram_elpida.c            |   41 +-
>  arch/arm/include/asm/arch-am33xx/cpu.h             |   74 ++-
>  arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |    7 +
>  arch/arm/include/asm/arch-am33xx/omap.h            |    2 +-
>  arch/arm/include/asm/arch-omap3/clock.h            |    2 -
>  arch/arm/include/asm/arch-omap4/clock.h            |    7 +-
>  arch/arm/include/asm/arch-omap4/omap.h             |    1 +
>  arch/arm/include/asm/arch-omap5/omap.h             |   11 +-
>  arch/arm/include/asm/omap_common.h                 |    1 +
>  board/isee/igep0033/board.c                        |    6 +-
>  board/phytec/pcm051/board.c                        |    2 -
>  board/siemens/common/board.c                       |  171 +++++++
>  board/siemens/common/factoryset.c                  |  284 +++++++++++
>  board/siemens/common/factoryset.h                  |   27 ++
>  board/siemens/dxr2/Makefile                        |   49 ++
>  board/siemens/dxr2/board.c                         |  241 +++++++++
>  board/siemens/dxr2/board.h                         |   69 +++
>  board/siemens/dxr2/mux.c                           |  112 +++++
>  board/siemens/pxm2/Makefile                        |   49 ++
>  board/siemens/pxm2/board.c                         |  429 ++++++++++++++++
>  board/siemens/pxm2/board.h                         |   22 +
>  board/siemens/pxm2/mux.c                           |  186 +++++++
>  board/siemens/pxm2/pmic.h                          |   71 +++
>  board/siemens/rut/Makefile                         |   49 ++
>  board/siemens/rut/board.c                          |  432 +++++++++++++++++
>  board/siemens/rut/board.h                          |   22 +
>  board/siemens/rut/mux.c                            |  347 +++++++++++++
>  board/ti/am335x/README                             |   28 +-
>  board/ti/am335x/board.c                            |    6 +-
>  board/ti/sdp4430/sdp.c                             |    4 +-
>  boards.cfg                                         |    3 +
>  doc/README.SPL                                     |    2 +-
>  drivers/video/Makefile                             |    1 +
>  drivers/video/formike.c                            |  511 ++++++++++++++++++++
>  drivers/watchdog/Makefile                          |    1 +
>  drivers/watchdog/omap_wdt.c                        |  121 +++++
>  include/configs/am335x_evm.h                       |   93 ++--
>  include/configs/dra7xx_evm.h                       |   18 +-
>  include/configs/dxr2.h                             |   94 ++++
>  include/configs/igep00x0.h                         |    1 +
>  include/configs/omap4_sdp4430.h                    |    1 +
>  include/configs/omap5_common.h                     |   19 +-
>  include/configs/omap5_uevm.h                       |    3 +
>  include/configs/pxm2.h                             |  153 ++++++
>  include/configs/rut.h                              |  156 ++++++
>  include/configs/siemens-am33x-common.h             |  461 ++++++++++++++++++
>  include/configs/ti_am335x_common.h                 |   22 +-
>  include/configs/ti_armv7_common.h                  |   26 +-
>  include/video.h                                    |    4 +
>  spl/Makefile                                       |    1 +
>  tools/logos/siemens.bmp                            |  Bin 0 -> 25766 bytes
>  56 files changed, 4387 insertions(+), 114 deletions(-)
>  create mode 100644 board/siemens/common/board.c
>  create mode 100644 board/siemens/common/factoryset.c
>  create mode 100644 board/siemens/common/factoryset.h
>  create mode 100644 board/siemens/dxr2/Makefile
>  create mode 100644 board/siemens/dxr2/board.c
>  create mode 100644 board/siemens/dxr2/board.h
>  create mode 100644 board/siemens/dxr2/mux.c
>  create mode 100644 board/siemens/pxm2/Makefile
>  create mode 100644 board/siemens/pxm2/board.c
>  create mode 100644 board/siemens/pxm2/board.h
>  create mode 100644 board/siemens/pxm2/mux.c
>  create mode 100644 board/siemens/pxm2/pmic.h
>  create mode 100644 board/siemens/rut/Makefile
>  create mode 100644 board/siemens/rut/board.c
>  create mode 100644 board/siemens/rut/board.h
>  create mode 100644 board/siemens/rut/mux.c
>  create mode 100644 drivers/video/formike.c
>  create mode 100644 drivers/watchdog/omap_wdt.c
>  create mode 100644 include/configs/dxr2.h
>  create mode 100644 include/configs/pxm2.h
>  create mode 100644 include/configs/rut.h
>  create mode 100644 include/configs/siemens-am33x-common.h
>  create mode 100644 tools/logos/siemens.bmp
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-08-28 18:25 Tom Rini
  2013-09-04 15:14 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-08-28 18:25 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 9ed887caecb9ecb0c68773a1870d143b9f28d3da:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-08-17 18:24:13 +0200)

are available in the git repository at:


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

for you to fetch changes up to 901ce27c6f018992b7dd6c08d3c98cf217cc4c96:

  siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support (2013-08-28 12:01:30 -0400)

----------------------------------------------------------------
Albert ARIBAUD (1):
      arm: omap3: fix SRAM copy and execution sequence

Heiko Schocher (6):
      arm, am33xx: add defines for gmii_sel_register bits
      arm, am335x: add some missing registers and defines for lcd and epwm support
      arm, spl: add watchdog library to SPL
      arm, am335x: add watchdog support
      video: add formike lcd panel init
      arm, am335x: add support for 3 siemens boards

Javier Martinez Canillas (1):
      ARM: igep00x0.h: Enable raw initrd support

Lubomir Popov (1):
      ARM: OMAP4470: Add Elpida EDB8164B3PF memory configuration

Oleksandr Tyshchenko (1):
      sdp4430: Initialize board id using CONFIG_MACH_TYPE

Taras Kondratiuk (3):
      ARM: OMAP4470: Add OMAP4470 identification
      ARM: OMAP4470: Add voltage and dpll data
      ARM: OMAP4460: sdp: Limit TPS mux config to 4460

Tom Rini (13):
      am33xx: Correct and expand comments on CONFIG_SPL_MAX_SIZE
      TI:armv7: Move CONFIG_SPL_LIBDISK_SUPPORT to MMC section
      omap5: Expand CONFIG_SPL_MAX_SIZE and comment upon SRAM_SCRATCH_SPACE_ADDR
      TI:am335x: Better comment and organize the networking related options
      am335x_evm: Add comment by SPL SPI support
      am335x_evm: Regroup USB options
      TI:armv7: Re-order slightly the generic CONFIG options, expand related comments
      am335x_evm: Update README for customization
      TI:am33xx: Move SPL YMODEM support to the per-board config
      TI:omap5: Clarify comments about SPL and DDR timings in common config
      omap5_uevm: Better comment why we have TCA642X and the reset time
      dra7xx_evm: Re-order and comment the networking related config options
      siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support

 MAINTAINERS                                        |    5 +
 arch/arm/cpu/armv7/omap3/clock.c                   |    6 +-
 arch/arm/cpu/armv7/omap3/lowlevel_init.S           |    8 +-
 arch/arm/cpu/armv7/omap4/hw_data.c                 |   36 ++
 arch/arm/cpu/armv7/omap4/hwinit.c                  |    3 +
 arch/arm/cpu/armv7/omap4/sdram_elpida.c            |   41 +-
 arch/arm/include/asm/arch-am33xx/cpu.h             |   74 ++-
 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |    7 +
 arch/arm/include/asm/arch-am33xx/omap.h            |    2 +-
 arch/arm/include/asm/arch-omap3/clock.h            |    2 -
 arch/arm/include/asm/arch-omap4/clock.h            |    7 +-
 arch/arm/include/asm/arch-omap4/omap.h             |    1 +
 arch/arm/include/asm/arch-omap5/omap.h             |   11 +-
 arch/arm/include/asm/omap_common.h                 |    1 +
 board/isee/igep0033/board.c                        |    6 +-
 board/phytec/pcm051/board.c                        |    2 -
 board/siemens/common/board.c                       |  171 +++++++
 board/siemens/common/factoryset.c                  |  284 +++++++++++
 board/siemens/common/factoryset.h                  |   27 ++
 board/siemens/dxr2/Makefile                        |   49 ++
 board/siemens/dxr2/board.c                         |  241 +++++++++
 board/siemens/dxr2/board.h                         |   69 +++
 board/siemens/dxr2/mux.c                           |  112 +++++
 board/siemens/pxm2/Makefile                        |   49 ++
 board/siemens/pxm2/board.c                         |  429 ++++++++++++++++
 board/siemens/pxm2/board.h                         |   22 +
 board/siemens/pxm2/mux.c                           |  186 +++++++
 board/siemens/pxm2/pmic.h                          |   71 +++
 board/siemens/rut/Makefile                         |   49 ++
 board/siemens/rut/board.c                          |  432 +++++++++++++++++
 board/siemens/rut/board.h                          |   22 +
 board/siemens/rut/mux.c                            |  347 +++++++++++++
 board/ti/am335x/README                             |   28 +-
 board/ti/am335x/board.c                            |    6 +-
 board/ti/sdp4430/sdp.c                             |    4 +-
 boards.cfg                                         |    3 +
 doc/README.SPL                                     |    2 +-
 drivers/video/Makefile                             |    1 +
 drivers/video/formike.c                            |  511 ++++++++++++++++++++
 drivers/watchdog/Makefile                          |    1 +
 drivers/watchdog/omap_wdt.c                        |  121 +++++
 include/configs/am335x_evm.h                       |   93 ++--
 include/configs/dra7xx_evm.h                       |   18 +-
 include/configs/dxr2.h                             |   94 ++++
 include/configs/igep00x0.h                         |    1 +
 include/configs/omap4_sdp4430.h                    |    1 +
 include/configs/omap5_common.h                     |   19 +-
 include/configs/omap5_uevm.h                       |    3 +
 include/configs/pxm2.h                             |  153 ++++++
 include/configs/rut.h                              |  156 ++++++
 include/configs/siemens-am33x-common.h             |  461 ++++++++++++++++++
 include/configs/ti_am335x_common.h                 |   22 +-
 include/configs/ti_armv7_common.h                  |   26 +-
 include/video.h                                    |    4 +
 spl/Makefile                                       |    1 +
 tools/logos/siemens.bmp                            |  Bin 0 -> 25766 bytes
 56 files changed, 4387 insertions(+), 114 deletions(-)
 create mode 100644 board/siemens/common/board.c
 create mode 100644 board/siemens/common/factoryset.c
 create mode 100644 board/siemens/common/factoryset.h
 create mode 100644 board/siemens/dxr2/Makefile
 create mode 100644 board/siemens/dxr2/board.c
 create mode 100644 board/siemens/dxr2/board.h
 create mode 100644 board/siemens/dxr2/mux.c
 create mode 100644 board/siemens/pxm2/Makefile
 create mode 100644 board/siemens/pxm2/board.c
 create mode 100644 board/siemens/pxm2/board.h
 create mode 100644 board/siemens/pxm2/mux.c
 create mode 100644 board/siemens/pxm2/pmic.h
 create mode 100644 board/siemens/rut/Makefile
 create mode 100644 board/siemens/rut/board.c
 create mode 100644 board/siemens/rut/board.h
 create mode 100644 board/siemens/rut/mux.c
 create mode 100644 drivers/video/formike.c
 create mode 100644 drivers/watchdog/omap_wdt.c
 create mode 100644 include/configs/dxr2.h
 create mode 100644 include/configs/pxm2.h
 create mode 100644 include/configs/rut.h
 create mode 100644 include/configs/siemens-am33x-common.h
 create mode 100644 tools/logos/siemens.bmp

-- 
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/20130828/94540a9d/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-08-16 13:39 Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-08-16 13:39 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit fdce7b633a1de24456226b18527cc7900c34282a:

  gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400)

are available in the git repository at:

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

for you to fetch changes up to 425faf74cd8189c87919f7e72a0101c684ee3b9f:

  Add TI816X evm board support (2013-08-15 18:38:37 -0400)

----------------------------------------------------------------
Ash Charles (1):
      omap: overo: Use 200MHz SDRC timings for revision 1, 2 & 3 boards

Enric Balletbo i Serra (5):
      ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST
      ARM: IGEP0033: Remove CYGNUS name from header.
      ARM: IGEP0033: Add support to boot from NAND.
      ARM: IGEP0033: Remove duplicate / unused #defines.
      ARM: igep00x0.h: Enable the use of CMD_EXT4, CMD_FS_GENERIC and zImage.

Enric Balletb?? i Serra (1):
      ARM: IGEP0033: Add support for Flattened Device Tree.

Heiko Schocher (5):
      ARM: AM33xx: Move s_init to a common place
      arm/davinci/da850: add uart0_pins_rtscts and RMII_MHz_50_CLK in emac_pins_rmii pinmux
      bootstage: get more BOOTSTAGE_ID* in show_boot_progress()
      arm, da850: enable the correct uart in arch_cpu_init()
      arm, da850: add ipam390 board support

Javier Martinez Canillas (1):
      OMAP3: igep00x0: allow booting with a FDT from MMC

Lokesh Vutla (9):
      ARM: AM33xx: Cleanup dplls data
      ARM: AM33xx: Cleanup clocks layer
      musb: Disable extra prints
      ARM: AM43xx: Add Board files
      ARM: AM43xx: Add header files
      ARM: AM43xx: clocks: Add dpll and clock data
      ARM: OMAP: Add CONFIG_OMAP_COMMON
      ARM: AM43xx: Add build support
      ARM: AM43xx: Add config file

Masahiro Yamada (1):
      ARM: omap24xx: remove remainders of dead board

Naumann Andreas (1):
      ARM: omap3: Implement dpll5 (HSUSB clk) workaround for OMAP36xx/AM/DM37xx according to errata sprz318e.

Steve Sakoman (1):
      omap: overo: update support for Micron 1GB POP

TENART Antoine (3):
      Prepare for TI816X : reuse existing code from TI814X
      Add TI816X support
      Add TI816X evm board support

Taras Kondratiuk (1):
      omap: emif: Set initial DDR PHY config first

Tom Rini (9):
      am33xx: CONFIG_DMA_COHERENT defines are unused, remove
      am33xx: Stop using PHYS_DRAM_1 define
      am335x_evm: Use default baud rate table
      arm: spl: For Falcon Mode, set a default machid of ~0
      am335x_evm: Bring in 'boot_fdt' logic from i.MX
      TI:am33xx: Create common config files for TI ARMv7 platforms, and AM33xx
      TI:omap5/dra7xx: Convert to ti_armv7_common.h
      TI:armv7: Enable CONFIG_CMD_SPI
      TI:armv7: Enable CONFIG_CMD_GPIO

 MAINTAINERS                                        |    5 +
 Makefile                                           |    2 +-
 arch/arm/config.mk                                 |    2 +-
 arch/arm/cpu/arm1136/omap24xx/reset.S              |   26 -
 arch/arm/cpu/arm1136/omap24xx/timer.c              |  136 ------
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    4 +
 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |    6 +
 arch/arm/cpu/armv7/Makefile                        |    2 +-
 arch/arm/cpu/armv7/am33xx/Makefile                 |    7 +
 arch/arm/cpu/armv7/am33xx/board.c                  |   68 ++-
 arch/arm/cpu/armv7/am33xx/clock.c                  |  171 +++++++
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c           |  495 +++++---------------
 arch/arm/cpu/armv7/am33xx/clock_am43xx.c           |  110 +++++
 arch/arm/cpu/armv7/am33xx/clock_ti814x.c           |  120 +----
 arch/arm/cpu/armv7/am33xx/clock_ti816x.c           |  445 ++++++++++++++++++
 arch/arm/cpu/armv7/am33xx/emif4.c                  |   11 +-
 arch/arm/cpu/armv7/omap-common/Makefile            |    2 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c       |    3 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |    2 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |   20 +-
 arch/arm/cpu/armv7/omap3/lowlevel_init.S           |   18 +
 arch/arm/include/asm/arch-am33xx/clock.h           |   98 ++++
 arch/arm/include/asm/arch-am33xx/clock_ti81xx.h    |  142 ++++++
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h   |    6 +-
 arch/arm/include/asm/arch-am33xx/cpu.h             |  164 ++++++-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   35 +-
 arch/arm/include/asm/arch-am33xx/hardware.h        |   18 +-
 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |   15 +
 arch/arm/include/asm/arch-am33xx/hardware_am43xx.h |   54 +++
 arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |   15 +
 arch/arm/include/asm/arch-am33xx/hardware_ti816x.h |   61 +++
 arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |    3 +
 arch/arm/include/asm/arch-am33xx/mux.h             |    4 +
 arch/arm/include/asm/arch-am33xx/mux_am43xx.h      |  142 ++++++
 arch/arm/include/asm/arch-am33xx/mux_ti816x.h      |  363 ++++++++++++++
 arch/arm/include/asm/arch-am33xx/omap.h            |   11 +-
 arch/arm/include/asm/arch-am33xx/spl.h             |   15 +-
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    9 +-
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |    3 +-
 arch/arm/include/asm/arch-omap3/clock.h            |    1 +
 arch/arm/include/asm/arch-omap3/clocks_omap3.h     |   22 +
 arch/arm/lib/spl.c                                 |    7 +-
 .../omap24xx => board/Barix/ipam390}/Makefile      |   22 +-
 board/Barix/ipam390/README.ipam390                 |  229 +++++++++
 board/Barix/ipam390/ipam390-ais-uart.cfg           |  202 ++++++++
 board/Barix/ipam390/ipam390.c                      |  348 ++++++++++++++
 board/Barix/ipam390/u-boot-spl-ipam390.lds         |   53 +++
 board/isee/igep0033/board.c                        |   59 +--
 board/isee/igep0033/board.h                        |    2 +-
 board/isee/igep00x0/igep00x0.c                     |   14 +
 board/overo/overo.c                                |   22 +-
 board/overo/overo.h                                |    1 +
 board/phytec/pcm051/board.c                        |   59 +--
 board/ti/am335x/board.c                            |  104 ++--
 board/ti/am335x/mux.c                              |   19 +
 board/ti/am43xx/Makefile                           |   38 ++
 board/ti/am43xx/board.c                            |   57 +++
 board/ti/am43xx/board.h                            |   17 +
 board/ti/am43xx/mux.c                              |   27 ++
 board/ti/ti814x/evm.c                              |   67 +--
 board/ti/ti816x/Makefile                           |   37 ++
 board/ti/ti816x/evm.c                              |  229 +++++++++
 boards.cfg                                         |    3 +
 drivers/serial/ns16550.c                           |    5 +-
 drivers/usb/musb-new/musb_core.c                   |   20 +-
 include/bootstage.h                                |    1 +
 include/configs/am335x_evm.h                       |  258 ++--------
 include/configs/am3517_crane.h                     |    1 +
 include/configs/am3517_evm.h                       |    1 +
 include/configs/am43xx_evm.h                       |  135 ++++++
 include/configs/cm_t35.h                           |    1 +
 include/configs/devkit8000.h                       |    1 +
 include/configs/dig297.h                           |    1 +
 include/configs/dra7xx_evm.h                       |   11 +-
 include/configs/igep0033.h                         |   86 ++--
 include/configs/igep00x0.h                         |   25 +-
 include/configs/ipam390.h                          |  331 +++++++++++++
 include/configs/mcx.h                              |    1 +
 include/configs/nokia_rx51.h                       |    1 +
 include/configs/omap3_beagle.h                     |    1 +
 include/configs/omap3_evm_common.h                 |    1 +
 include/configs/omap3_logic.h                      |    1 +
 include/configs/omap3_mvblx.h                      |    1 +
 include/configs/omap3_overo.h                      |    1 +
 include/configs/omap3_pandora.h                    |    1 +
 include/configs/omap3_sdp3430.h                    |    1 +
 include/configs/omap3_zoom1.h                      |    1 +
 include/configs/omap3_zoom2.h                      |    1 +
 include/configs/omap4_common.h                     |    1 +
 include/configs/omap5_common.h                     |  191 ++------
 include/configs/omap5_uevm.h                       |    8 +-
 include/configs/pcm051.h                           |    9 +-
 include/configs/tam3517-common.h                   |    1 +
 include/configs/ti814x_evm.h                       |    9 +-
 include/configs/ti816x_evm.h                       |  180 +++++++
 include/configs/ti_am335x_common.h                 |   60 +++
 include/configs/ti_armv7_common.h                  |  250 ++++++++++
 include/configs/tricorder.h                        |    1 +
 spl/Makefile                                       |    2 +-
 99 files changed, 4633 insertions(+), 1419 deletions(-)
 delete mode 100644 arch/arm/cpu/arm1136/omap24xx/reset.S
 delete mode 100644 arch/arm/cpu/arm1136/omap24xx/timer.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/clock.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/clock_am43xx.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/clock_ti816x.c
 create mode 100644 arch/arm/include/asm/arch-am33xx/clock_ti81xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_am43xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_ti816x.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/mux_am43xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/mux_ti816x.h
 rename {arch/arm/cpu/arm1136/omap24xx => board/Barix/ipam390}/Makefile (53%)
 create mode 100644 board/Barix/ipam390/README.ipam390
 create mode 100644 board/Barix/ipam390/ipam390-ais-uart.cfg
 create mode 100644 board/Barix/ipam390/ipam390.c
 create mode 100644 board/Barix/ipam390/u-boot-spl-ipam390.lds
 create mode 100644 board/ti/am43xx/Makefile
 create mode 100644 board/ti/am43xx/board.c
 create mode 100644 board/ti/am43xx/board.h
 create mode 100644 board/ti/am43xx/mux.c
 create mode 100644 board/ti/ti816x/Makefile
 create mode 100644 board/ti/ti816x/evm.c
 create mode 100644 include/configs/am43xx_evm.h
 create mode 100644 include/configs/ipam390.h
 create mode 100644 include/configs/ti816x_evm.h
 create mode 100644 include/configs/ti_am335x_common.h
 create mode 100644 include/configs/ti_armv7_common.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/20130816/a2877c04/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-07-30 13:29 Tom Rini
@ 2013-07-30 20:07 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-07-30 20:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 30 Jul 2013 09:29:55 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:
> 
>   Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to fdce7b633a1de24456226b18527cc7900c34282a:
> 
>   gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (1):
>       omap3/sys_info: fix printout of OMAP36XX L3 freqency
> 
> Christian Riesch (1):
>       da850evm: Use clrbits function with correct endianess
> 
> Dan Murphy (2):
>       gpio: tca642x: Add the tca642x gpio expander driver
>       gpio: omap5-uevm: Configure the tca6424 gpio expander
> 
> Heiko Schocher (1):
>       net, phy, cpsw: fix gigabit register access
> 
> Justin Waters (6):
>       am335x_evm: Make NAND support modular
>       am335x_evm: Add command line editing
>       am335x_evm: Rework bootcmd to handle two MMC devs
>       Add additional MLO images to .gitignore
>       am335x_evm: Add support for eMMC environment
>       am335x_evm: Add am335x_boneblack variant
> 
> Lokesh Vutla (1):
>       ARM: DRA7xx: Lock DPLL_GMAC
> 
> Mugunthan V N (6):
>       drivers: net: cpsw: remove hard coding bd ram for cpsw
>       drivers: net: cpsw: Enable statistics for all port
>       ARM: DRA7xx: Enable GMAC clock control
>       ARM: DRA7xx: Add CPSW support to DRA7xx EVM
>       ARM: DRA7xx: Add CPSW and MDIO pinmux support
>       ARM: DRA7xx: Enable CPSW Ethernet support
> 
> Nishanth Menon (6):
>       omap3_beagle: remove JFFS2 support.
>       omap3_beagle: replace uImage.beagle with generic uImage
>       beagleboard: remove RevB support for BeagleBoard Xm
>       omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
>       omap3_beagle: support findfdt and loadfdt for devicetree support
>       omap3_beagle: support booting from zImage and device tree as last option
> 
> Stefan Roese (1):
>       arm: omap3: spl: Fix problem with 8bit NAND devices
> 
> Steve Kipisz (2):
>       am335x_evm: Add support for the NOR module on the memory cape
>       am335x_evm: Add support to boot from NOR.
> 
> Tom Rini (12):
>       spl_mmc.c: Detect missing kernel image in RAW MMC
>       README.falcon: Note how we determine if we can boot the OS or not
>       am335x_evm: Correct DFU ALT settings for falcon mode
>       am335x_evm: Update eMMC falcon mode locations
>       am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
>       am335x_evm: Add basic README
>       board/ti/am335x/README: Document NAND programming
>       am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
>       am335x_evm: Update SPI_BOOT support, add MTDPARTS info
>       am335x_evm: Rework board_is_foo() checks
>       am33xx: Correct gpmc_cfg->irqstatus/enable
>       board/ti/am335x/README: Document NOR programming
> 
>  .gitignore                                     |    2 +-
>  arch/arm/cpu/armv7/am33xx/board.c              |    2 +-
>  arch/arm/cpu/armv7/am33xx/emif4.c              |    6 +-
>  arch/arm/cpu/armv7/am33xx/mem.c                |    8 +-
>  arch/arm/cpu/armv7/omap-common/clocks-common.c |   18 ++
>  arch/arm/cpu/armv7/omap3/mem.c                 |   12 +
>  arch/arm/cpu/armv7/omap3/sys_info.c            |    6 +-
>  arch/arm/cpu/armv7/omap5/hw_data.c             |   18 +-
>  arch/arm/cpu/armv7/omap5/prcm-regs.c           |    7 +
>  arch/arm/include/asm/arch-am33xx/mem.h         |    9 +
>  arch/arm/include/asm/arch-omap5/cpu.h          |    6 +
>  arch/arm/include/asm/arch-omap5/omap.h         |   26 ++
>  arch/arm/include/asm/omap_common.h             |   10 +
>  board/davinci/da8xxevm/da850evm.c              |   14 +-
>  board/ti/am335x/Makefile                       |    2 +-
>  board/ti/am335x/README                         |  160 ++++++++++++
>  board/ti/am335x/board.c                        |  121 +++++----
>  board/ti/am335x/board.h                        |   31 +++
>  board/ti/am335x/mux.c                          |   65 ++++-
>  board/ti/am335x/u-boot.lds                     |  117 +++++++++
>  board/ti/beagle/beagle.c                       |   28 +-
>  board/ti/beagle/beagle.h                       |    3 +-
>  board/ti/dra7xx/evm.c                          |  150 ++++++++++-
>  board/ti/dra7xx/mux_data.h                     |   14 +
>  board/ti/omap5_uevm/evm.c                      |   22 ++
>  board/ti/omap5_uevm/mux_data.h                 |    2 +
>  board/ti/ti814x/evm.c                          |    1 +
>  boards.cfg                                     |   17 +-
>  common/spl/spl_mmc.c                           |    4 +
>  doc/README.falcon                              |    2 +
>  drivers/gpio/Makefile                          |    1 +
>  drivers/gpio/tca642x.c                         |  333 ++++++++++++++++++++++++
>  drivers/net/cpsw.c                             |    7 +-
>  drivers/net/phy/phy.c                          |    6 +-
>  include/configs/am335x_evm.h                   |  225 ++++++++++------
>  include/configs/dra7xx_evm.h                   |   19 ++
>  include/configs/omap3_beagle.h                 |   44 +++-
>  include/configs/omap5_uevm.h                   |    5 +
>  include/cpsw.h                                 |    1 +
>  include/tca642x.h                              |   69 +++++
>  40 files changed, 1387 insertions(+), 206 deletions(-)
>  create mode 100644 board/ti/am335x/README
>  create mode 100644 board/ti/am335x/u-boot.lds
>  create mode 100644 drivers/gpio/tca642x.c
>  create mode 100644 include/tca642x.h
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-07-30  9:45 ` Stefan Roese
@ 2013-07-30 13:38   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-07-30 13:38 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 30, 2013 at 11:45:43AM +0200, Stefan Roese wrote:
> Hi Tom,
> 
> On 07/30/2013 04:21 AM, Tom Rini wrote:
> > Hey,
> > 
> > The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:
> > 
> >   Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)
> > 
> > are available in the git repository at:
> > 
> > 
> >   git://git.denx.de/u-boot-ti.git master
> > 
> > for you to fetch changes up to bb2a5d8f87fffb4fadfb205837decbd1b3e75f88:
> > 
> >   gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-29 18:09:26 -0400)
> > 
> > ----------------------------------------------------------------
> > Andreas Bie?mann (1):
> >       omap3/sys_info: fix printout of OMAP36XX L3 freqency
> > 
> > Christian Riesch (1):
> >       da850evm: Use clrbits function with correct endianess
> > 
> > Dan Murphy (2):
> >       gpio: tca642x: Add the tca642x gpio expander driver
> >       gpio: omap5-uevm: Configure the tca6424 gpio expander
> > 
> > Heiko Schocher (1):
> >       net, phy, cpsw: fix gigabit register access
> > 
> > Justin Waters (6):
> >       am335x_evm: Make NAND support modular
> >       am335x_evm: Add command line editing
> >       am335x_evm: Rework bootcmd to handle two MMC devs
> >       Add additional MLO images to .gitignore
> >       am335x_evm: Add support for eMMC environment
> >       am335x_evm: Add am335x_boneblack variant
> > 
> > Lokesh Vutla (1):
> >       ARM: DRA7xx: Lock DPLL_GMAC
> > 
> > Mugunthan V N (6):
> >       drivers: net: cpsw: remove hard coding bd ram for cpsw
> >       drivers: net: cpsw: Enable statistics for all port
> >       ARM: DRA7xx: Enable GMAC clock control
> >       ARM: DRA7xx: Add CPSW support to DRA7xx EVM
> >       ARM: DRA7xx: Add CPSW and MDIO pinmux support
> >       ARM: DRA7xx: Enable CPSW Ethernet support
> > 
> > Nishanth Menon (6):
> >       omap3_beagle: remove JFFS2 support.
> >       omap3_beagle: replace uImage.beagle with generic uImage
> >       beagleboard: remove RevB support for BeagleBoard Xm
> >       omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
> >       omap3_beagle: support findfdt and loadfdt for devicetree support
> >       omap3_beagle: support booting from zImage and device tree as last option
> > 
> > Stefan Roese (1):
> >       arm: omap3: spl: Fix problem with 8bit NAND devices
> 
> Any reason why you didn't include this patch?
> 
> http://patchwork.ozlabs.org/patch/251864/
> 
> [PATCH v2 3/3] arm: omap3: Add SPL support to cm_t35

Because that platform shows off the problem that 1/3 was intended to
fix, but we haven't yet done what Albert suggested
(s/s_init/system_init/ call from board_init_f).

-- 
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/20130730/36d5206a/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-07-30  2:21 Tom Rini
  2013-07-30  9:45 ` Stefan Roese
@ 2013-07-30 13:37 ` Tom Rini
  1 sibling, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-07-30 13:37 UTC (permalink / raw)
  To: u-boot

On Mon, Jul 29, 2013 at 10:21:06PM -0400, Tom Rini wrote:

> Hey,
> 
> The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:
> 
>   Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to bb2a5d8f87fffb4fadfb205837decbd1b3e75f88:
> 
>   gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-29 18:09:26 -0400)
> 
> ----------------------------------------------------------------
> Andreas Bie??mann (1):
>       omap3/sys_info: fix printout of OMAP36XX L3 freqency
> 
> Christian Riesch (1):
>       da850evm: Use clrbits function with correct endianess
> 
> Dan Murphy (2):
>       gpio: tca642x: Add the tca642x gpio expander driver
>       gpio: omap5-uevm: Configure the tca6424 gpio expander
> 
> Heiko Schocher (1):
>       net, phy, cpsw: fix gigabit register access
> 
> Justin Waters (6):
>       am335x_evm: Make NAND support modular
>       am335x_evm: Add command line editing
>       am335x_evm: Rework bootcmd to handle two MMC devs
>       Add additional MLO images to .gitignore
>       am335x_evm: Add support for eMMC environment
>       am335x_evm: Add am335x_boneblack variant
> 
> Lokesh Vutla (1):
>       ARM: DRA7xx: Lock DPLL_GMAC
> 
> Mugunthan V N (6):
>       drivers: net: cpsw: remove hard coding bd ram for cpsw
>       drivers: net: cpsw: Enable statistics for all port
>       ARM: DRA7xx: Enable GMAC clock control
>       ARM: DRA7xx: Add CPSW support to DRA7xx EVM
>       ARM: DRA7xx: Add CPSW and MDIO pinmux support
>       ARM: DRA7xx: Enable CPSW Ethernet support
> 
> Nishanth Menon (6):
>       omap3_beagle: remove JFFS2 support.
>       omap3_beagle: replace uImage.beagle with generic uImage
>       beagleboard: remove RevB support for BeagleBoard Xm
>       omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
>       omap3_beagle: support findfdt and loadfdt for devicetree support
>       omap3_beagle: support booting from zImage and device tree as last option
> 
> Stefan Roese (1):
>       arm: omap3: spl: Fix problem with 8bit NAND devices
> 
> Steve Kipisz (2):
>       am335x_evm: Add support for the NOR module on the memory cape
>       am335x_evm: Add support to boot from NOR.
> 
> Tom Rini (12):
>       spl_mmc.c: Detect missing kernel image in RAW MMC
>       README.falcon: Note how we determine if we can boot the OS or not
>       am335x_evm: Correct DFU ALT settings for falcon mode
>       am335x_evm: Update eMMC falcon mode locations
>       am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
>       am335x_evm: Add basic README
>       board/ti/am335x/README: Document NAND programming
>       am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
>       am335x_evm: Update SPI_BOOT support, add MTDPARTS info
>       am335x_evm: Rework board_is_foo() checks
>       am33xx: Correct gpmc_cfg->irqstatus/enable
>       board/ti/am335x/README: Document NOR programming
> 
>  .gitignore                                     |    2 +-
>  arch/arm/cpu/armv7/am33xx/board.c              |    2 +-
>  arch/arm/cpu/armv7/am33xx/emif4.c              |    6 +-
>  arch/arm/cpu/armv7/am33xx/mem.c                |    8 +-
>  arch/arm/cpu/armv7/omap-common/clocks-common.c |   18 ++
>  arch/arm/cpu/armv7/omap3/mem.c                 |   12 +
>  arch/arm/cpu/armv7/omap3/sys_info.c            |    6 +-
>  arch/arm/cpu/armv7/omap5/hw_data.c             |   18 +-
>  arch/arm/cpu/armv7/omap5/prcm-regs.c           |    7 +
>  arch/arm/include/asm/arch-am33xx/mem.h         |    9 +
>  arch/arm/include/asm/arch-omap5/cpu.h          |    6 +
>  arch/arm/include/asm/arch-omap5/omap.h         |   26 ++
>  arch/arm/include/asm/omap_common.h             |   10 +
>  board/davinci/da8xxevm/da850evm.c              |   14 +-
>  board/ti/am335x/Makefile                       |    2 +-
>  board/ti/am335x/README                         |  161 ++++++++++++
>  board/ti/am335x/board.c                        |  121 +++++----
>  board/ti/am335x/board.h                        |   31 +++
>  board/ti/am335x/mux.c                          |   65 ++++-
>  board/ti/am335x/u-boot.lds                     |  117 +++++++++
>  board/ti/beagle/beagle.c                       |   28 +-
>  board/ti/beagle/beagle.h                       |    3 +-
>  board/ti/dra7xx/evm.c                          |  150 ++++++++++-
>  board/ti/dra7xx/mux_data.h                     |   14 +
>  board/ti/omap5_uevm/evm.c                      |   22 ++
>  board/ti/omap5_uevm/mux_data.h                 |    2 +
>  board/ti/ti814x/evm.c                          |    1 +
>  boards.cfg                                     |   17 +-
>  common/spl/spl_mmc.c                           |    4 +
>  doc/README.falcon                              |    2 +
>  drivers/gpio/Makefile                          |    1 +
>  drivers/gpio/tca642x.c                         |  333 ++++++++++++++++++++++++
>  drivers/net/cpsw.c                             |    7 +-
>  drivers/net/phy/phy.c                          |    6 +-
>  include/configs/am335x_evm.h                   |  225 ++++++++++------
>  include/configs/dra7xx_evm.h                   |   19 ++
>  include/configs/omap3_beagle.h                 |   44 +++-
>  include/configs/omap5_uevm.h                   |    5 +
>  include/cpsw.h                                 |    1 +
>  include/tca642x.h                              |   69 +++++
>  40 files changed, 1388 insertions(+), 206 deletions(-)
>  create mode 100644 board/ti/am335x/README
>  create mode 100644 board/ti/am335x/u-boot.lds
>  create mode 100644 drivers/gpio/tca642x.c
>  create mode 100644 include/tca642x.h

This request has been superseeded by a slight tweak to the NAND doc
patch for am335x.

-- 
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/20130730/dd18a139/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-07-30 13:29 Tom Rini
  2013-07-30 20:07 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-07-30 13:29 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:

  Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)

are available in the git repository at:


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

for you to fetch changes up to fdce7b633a1de24456226b18527cc7900c34282a:

  gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400)

----------------------------------------------------------------
Andreas Bie??mann (1):
      omap3/sys_info: fix printout of OMAP36XX L3 freqency

Christian Riesch (1):
      da850evm: Use clrbits function with correct endianess

Dan Murphy (2):
      gpio: tca642x: Add the tca642x gpio expander driver
      gpio: omap5-uevm: Configure the tca6424 gpio expander

Heiko Schocher (1):
      net, phy, cpsw: fix gigabit register access

Justin Waters (6):
      am335x_evm: Make NAND support modular
      am335x_evm: Add command line editing
      am335x_evm: Rework bootcmd to handle two MMC devs
      Add additional MLO images to .gitignore
      am335x_evm: Add support for eMMC environment
      am335x_evm: Add am335x_boneblack variant

Lokesh Vutla (1):
      ARM: DRA7xx: Lock DPLL_GMAC

Mugunthan V N (6):
      drivers: net: cpsw: remove hard coding bd ram for cpsw
      drivers: net: cpsw: Enable statistics for all port
      ARM: DRA7xx: Enable GMAC clock control
      ARM: DRA7xx: Add CPSW support to DRA7xx EVM
      ARM: DRA7xx: Add CPSW and MDIO pinmux support
      ARM: DRA7xx: Enable CPSW Ethernet support

Nishanth Menon (6):
      omap3_beagle: remove JFFS2 support.
      omap3_beagle: replace uImage.beagle with generic uImage
      beagleboard: remove RevB support for BeagleBoard Xm
      omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
      omap3_beagle: support findfdt and loadfdt for devicetree support
      omap3_beagle: support booting from zImage and device tree as last option

Stefan Roese (1):
      arm: omap3: spl: Fix problem with 8bit NAND devices

Steve Kipisz (2):
      am335x_evm: Add support for the NOR module on the memory cape
      am335x_evm: Add support to boot from NOR.

Tom Rini (12):
      spl_mmc.c: Detect missing kernel image in RAW MMC
      README.falcon: Note how we determine if we can boot the OS or not
      am335x_evm: Correct DFU ALT settings for falcon mode
      am335x_evm: Update eMMC falcon mode locations
      am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
      am335x_evm: Add basic README
      board/ti/am335x/README: Document NAND programming
      am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
      am335x_evm: Update SPI_BOOT support, add MTDPARTS info
      am335x_evm: Rework board_is_foo() checks
      am33xx: Correct gpmc_cfg->irqstatus/enable
      board/ti/am335x/README: Document NOR programming

 .gitignore                                     |    2 +-
 arch/arm/cpu/armv7/am33xx/board.c              |    2 +-
 arch/arm/cpu/armv7/am33xx/emif4.c              |    6 +-
 arch/arm/cpu/armv7/am33xx/mem.c                |    8 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |   18 ++
 arch/arm/cpu/armv7/omap3/mem.c                 |   12 +
 arch/arm/cpu/armv7/omap3/sys_info.c            |    6 +-
 arch/arm/cpu/armv7/omap5/hw_data.c             |   18 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c           |    7 +
 arch/arm/include/asm/arch-am33xx/mem.h         |    9 +
 arch/arm/include/asm/arch-omap5/cpu.h          |    6 +
 arch/arm/include/asm/arch-omap5/omap.h         |   26 ++
 arch/arm/include/asm/omap_common.h             |   10 +
 board/davinci/da8xxevm/da850evm.c              |   14 +-
 board/ti/am335x/Makefile                       |    2 +-
 board/ti/am335x/README                         |  160 ++++++++++++
 board/ti/am335x/board.c                        |  121 +++++----
 board/ti/am335x/board.h                        |   31 +++
 board/ti/am335x/mux.c                          |   65 ++++-
 board/ti/am335x/u-boot.lds                     |  117 +++++++++
 board/ti/beagle/beagle.c                       |   28 +-
 board/ti/beagle/beagle.h                       |    3 +-
 board/ti/dra7xx/evm.c                          |  150 ++++++++++-
 board/ti/dra7xx/mux_data.h                     |   14 +
 board/ti/omap5_uevm/evm.c                      |   22 ++
 board/ti/omap5_uevm/mux_data.h                 |    2 +
 board/ti/ti814x/evm.c                          |    1 +
 boards.cfg                                     |   17 +-
 common/spl/spl_mmc.c                           |    4 +
 doc/README.falcon                              |    2 +
 drivers/gpio/Makefile                          |    1 +
 drivers/gpio/tca642x.c                         |  333 ++++++++++++++++++++++++
 drivers/net/cpsw.c                             |    7 +-
 drivers/net/phy/phy.c                          |    6 +-
 include/configs/am335x_evm.h                   |  225 ++++++++++------
 include/configs/dra7xx_evm.h                   |   19 ++
 include/configs/omap3_beagle.h                 |   44 +++-
 include/configs/omap5_uevm.h                   |    5 +
 include/cpsw.h                                 |    1 +
 include/tca642x.h                              |   69 +++++
 40 files changed, 1387 insertions(+), 206 deletions(-)
 create mode 100644 board/ti/am335x/README
 create mode 100644 board/ti/am335x/u-boot.lds
 create mode 100644 drivers/gpio/tca642x.c
 create mode 100644 include/tca642x.h

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/20130730/6a72316f/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-07-30  2:21 Tom Rini
@ 2013-07-30  9:45 ` Stefan Roese
  2013-07-30 13:38   ` Tom Rini
  2013-07-30 13:37 ` Tom Rini
  1 sibling, 1 reply; 324+ messages in thread
From: Stefan Roese @ 2013-07-30  9:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On 07/30/2013 04:21 AM, Tom Rini wrote:
> Hey,
> 
> The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:
> 
>   Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to bb2a5d8f87fffb4fadfb205837decbd1b3e75f88:
> 
>   gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-29 18:09:26 -0400)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (1):
>       omap3/sys_info: fix printout of OMAP36XX L3 freqency
> 
> Christian Riesch (1):
>       da850evm: Use clrbits function with correct endianess
> 
> Dan Murphy (2):
>       gpio: tca642x: Add the tca642x gpio expander driver
>       gpio: omap5-uevm: Configure the tca6424 gpio expander
> 
> Heiko Schocher (1):
>       net, phy, cpsw: fix gigabit register access
> 
> Justin Waters (6):
>       am335x_evm: Make NAND support modular
>       am335x_evm: Add command line editing
>       am335x_evm: Rework bootcmd to handle two MMC devs
>       Add additional MLO images to .gitignore
>       am335x_evm: Add support for eMMC environment
>       am335x_evm: Add am335x_boneblack variant
> 
> Lokesh Vutla (1):
>       ARM: DRA7xx: Lock DPLL_GMAC
> 
> Mugunthan V N (6):
>       drivers: net: cpsw: remove hard coding bd ram for cpsw
>       drivers: net: cpsw: Enable statistics for all port
>       ARM: DRA7xx: Enable GMAC clock control
>       ARM: DRA7xx: Add CPSW support to DRA7xx EVM
>       ARM: DRA7xx: Add CPSW and MDIO pinmux support
>       ARM: DRA7xx: Enable CPSW Ethernet support
> 
> Nishanth Menon (6):
>       omap3_beagle: remove JFFS2 support.
>       omap3_beagle: replace uImage.beagle with generic uImage
>       beagleboard: remove RevB support for BeagleBoard Xm
>       omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
>       omap3_beagle: support findfdt and loadfdt for devicetree support
>       omap3_beagle: support booting from zImage and device tree as last option
> 
> Stefan Roese (1):
>       arm: omap3: spl: Fix problem with 8bit NAND devices

Any reason why you didn't include this patch?

http://patchwork.ozlabs.org/patch/251864/

[PATCH v2 3/3] arm: omap3: Add SPL support to cm_t35

Thanks,
Stefan

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-07-30  2:21 Tom Rini
  2013-07-30  9:45 ` Stefan Roese
  2013-07-30 13:37 ` Tom Rini
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2013-07-30  2:21 UTC (permalink / raw)
  To: u-boot

Hey,

The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:

  Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)

are available in the git repository at:


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

for you to fetch changes up to bb2a5d8f87fffb4fadfb205837decbd1b3e75f88:

  gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-29 18:09:26 -0400)

----------------------------------------------------------------
Andreas Bie??mann (1):
      omap3/sys_info: fix printout of OMAP36XX L3 freqency

Christian Riesch (1):
      da850evm: Use clrbits function with correct endianess

Dan Murphy (2):
      gpio: tca642x: Add the tca642x gpio expander driver
      gpio: omap5-uevm: Configure the tca6424 gpio expander

Heiko Schocher (1):
      net, phy, cpsw: fix gigabit register access

Justin Waters (6):
      am335x_evm: Make NAND support modular
      am335x_evm: Add command line editing
      am335x_evm: Rework bootcmd to handle two MMC devs
      Add additional MLO images to .gitignore
      am335x_evm: Add support for eMMC environment
      am335x_evm: Add am335x_boneblack variant

Lokesh Vutla (1):
      ARM: DRA7xx: Lock DPLL_GMAC

Mugunthan V N (6):
      drivers: net: cpsw: remove hard coding bd ram for cpsw
      drivers: net: cpsw: Enable statistics for all port
      ARM: DRA7xx: Enable GMAC clock control
      ARM: DRA7xx: Add CPSW support to DRA7xx EVM
      ARM: DRA7xx: Add CPSW and MDIO pinmux support
      ARM: DRA7xx: Enable CPSW Ethernet support

Nishanth Menon (6):
      omap3_beagle: remove JFFS2 support.
      omap3_beagle: replace uImage.beagle with generic uImage
      beagleboard: remove RevB support for BeagleBoard Xm
      omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
      omap3_beagle: support findfdt and loadfdt for devicetree support
      omap3_beagle: support booting from zImage and device tree as last option

Stefan Roese (1):
      arm: omap3: spl: Fix problem with 8bit NAND devices

Steve Kipisz (2):
      am335x_evm: Add support for the NOR module on the memory cape
      am335x_evm: Add support to boot from NOR.

Tom Rini (12):
      spl_mmc.c: Detect missing kernel image in RAW MMC
      README.falcon: Note how we determine if we can boot the OS or not
      am335x_evm: Correct DFU ALT settings for falcon mode
      am335x_evm: Update eMMC falcon mode locations
      am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
      am335x_evm: Add basic README
      board/ti/am335x/README: Document NAND programming
      am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
      am335x_evm: Update SPI_BOOT support, add MTDPARTS info
      am335x_evm: Rework board_is_foo() checks
      am33xx: Correct gpmc_cfg->irqstatus/enable
      board/ti/am335x/README: Document NOR programming

 .gitignore                                     |    2 +-
 arch/arm/cpu/armv7/am33xx/board.c              |    2 +-
 arch/arm/cpu/armv7/am33xx/emif4.c              |    6 +-
 arch/arm/cpu/armv7/am33xx/mem.c                |    8 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |   18 ++
 arch/arm/cpu/armv7/omap3/mem.c                 |   12 +
 arch/arm/cpu/armv7/omap3/sys_info.c            |    6 +-
 arch/arm/cpu/armv7/omap5/hw_data.c             |   18 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c           |    7 +
 arch/arm/include/asm/arch-am33xx/mem.h         |    9 +
 arch/arm/include/asm/arch-omap5/cpu.h          |    6 +
 arch/arm/include/asm/arch-omap5/omap.h         |   26 ++
 arch/arm/include/asm/omap_common.h             |   10 +
 board/davinci/da8xxevm/da850evm.c              |   14 +-
 board/ti/am335x/Makefile                       |    2 +-
 board/ti/am335x/README                         |  161 ++++++++++++
 board/ti/am335x/board.c                        |  121 +++++----
 board/ti/am335x/board.h                        |   31 +++
 board/ti/am335x/mux.c                          |   65 ++++-
 board/ti/am335x/u-boot.lds                     |  117 +++++++++
 board/ti/beagle/beagle.c                       |   28 +-
 board/ti/beagle/beagle.h                       |    3 +-
 board/ti/dra7xx/evm.c                          |  150 ++++++++++-
 board/ti/dra7xx/mux_data.h                     |   14 +
 board/ti/omap5_uevm/evm.c                      |   22 ++
 board/ti/omap5_uevm/mux_data.h                 |    2 +
 board/ti/ti814x/evm.c                          |    1 +
 boards.cfg                                     |   17 +-
 common/spl/spl_mmc.c                           |    4 +
 doc/README.falcon                              |    2 +
 drivers/gpio/Makefile                          |    1 +
 drivers/gpio/tca642x.c                         |  333 ++++++++++++++++++++++++
 drivers/net/cpsw.c                             |    7 +-
 drivers/net/phy/phy.c                          |    6 +-
 include/configs/am335x_evm.h                   |  225 ++++++++++------
 include/configs/dra7xx_evm.h                   |   19 ++
 include/configs/omap3_beagle.h                 |   44 +++-
 include/configs/omap5_uevm.h                   |    5 +
 include/cpsw.h                                 |    1 +
 include/tca642x.h                              |   69 +++++
 40 files changed, 1388 insertions(+), 206 deletions(-)
 create mode 100644 board/ti/am335x/README
 create mode 100644 board/ti/am335x/u-boot.lds
 create mode 100644 drivers/gpio/tca642x.c
 create mode 100644 include/tca642x.h

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/20130729/4b18ffb0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-07-02 20:05 Tom Rini
@ 2013-07-04 12:10 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-07-04 12:10 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 2 Jul 2013 16:05:52 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit e6c7f86f03b0ad25e9ef70df3ee1989b6b789d7c:
> 
>   Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-06-28 17:51:13 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 87bd05d78f0f5765f3d3e1517c76794c82dab7cc:
> 
>   ARM: OMAP: GPIO: Fix valid range and enable usage of all GPIOs on OMAP5 (2013-07-02 09:21:16 -0400)
> 
> ----------------------------------------------------------------
> Axel Lin (1):
>       ARM: OMAP: GPIO: Fix valid range and enable usage of all GPIOs on OMAP5
> 
> Ilya Ledvich (1):
>       am33xx: fix the ddr_cmdtctrl structure
> 
> Lokesh Vutla (1):
>       ARM: OMAP4+: Fix MA detection during SDRAM_AUTO_DETECTION
> 
> Michael Trimarchi (1):
>       usb: omap: ulpi: fix ulpi transceiver access
> 
>  arch/arm/cpu/armv7/omap-common/emif-common.c |    3 ++
>  arch/arm/cpu/armv7/omap5/hw_data.c           |    2 ++
>  arch/arm/cpu/armv7/omap5/hwinit.c            |    4 ++-
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h  |    1 -
>  arch/arm/include/asm/arch-am33xx/gpio.h      |    2 ++
>  arch/arm/include/asm/arch-omap3/gpio.h       |    2 ++
>  arch/arm/include/asm/arch-omap4/gpio.h       |    2 ++
>  arch/arm/include/asm/arch-omap5/gpio.h       |    4 +++
>  drivers/gpio/omap_gpio.c                     |    2 +-
>  drivers/usb/ulpi/omap-ulpi-viewport.c        |   42 ++++++--------------------
>  10 files changed, 28 insertions(+), 36 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-07-02 20:05 Tom Rini
  2013-07-04 12:10 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-07-02 20:05 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit e6c7f86f03b0ad25e9ef70df3ee1989b6b789d7c:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-06-28 17:51:13 +0200)

are available in the git repository at:


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

for you to fetch changes up to 87bd05d78f0f5765f3d3e1517c76794c82dab7cc:

  ARM: OMAP: GPIO: Fix valid range and enable usage of all GPIOs on OMAP5 (2013-07-02 09:21:16 -0400)

----------------------------------------------------------------
Axel Lin (1):
      ARM: OMAP: GPIO: Fix valid range and enable usage of all GPIOs on OMAP5

Ilya Ledvich (1):
      am33xx: fix the ddr_cmdtctrl structure

Lokesh Vutla (1):
      ARM: OMAP4+: Fix MA detection during SDRAM_AUTO_DETECTION

Michael Trimarchi (1):
      usb: omap: ulpi: fix ulpi transceiver access

 arch/arm/cpu/armv7/omap-common/emif-common.c |    3 ++
 arch/arm/cpu/armv7/omap5/hw_data.c           |    2 ++
 arch/arm/cpu/armv7/omap5/hwinit.c            |    4 ++-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h  |    1 -
 arch/arm/include/asm/arch-am33xx/gpio.h      |    2 ++
 arch/arm/include/asm/arch-omap3/gpio.h       |    2 ++
 arch/arm/include/asm/arch-omap4/gpio.h       |    2 ++
 arch/arm/include/asm/arch-omap5/gpio.h       |    4 +++
 drivers/gpio/omap_gpio.c                     |    2 +-
 drivers/usb/ulpi/omap-ulpi-viewport.c        |   42 ++++++--------------------
 10 files changed, 28 insertions(+), 36 deletions(-)

-- 
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/20130702/89c4c229/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-18 15:25 Tom Rini
@ 2013-06-19 23:18 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-06-19 23:18 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 18 Jun 2013 11:25:59 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 847e6693ccb529bf8346db62876f38f0c4e04ade:
> 
>   arm: pxa: config option for PXA270 turbo mode (2013-06-12 22:24:12 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to bf3b98a1886ef18d7e2e4f83fec17f6c8cc51eaf:
> 
>   arm: omap4: panda: Fix checkpatch on panda file (2013-06-18 10:43:30 -0400)
> 
> ----------------------------------------------------------------
> Dan Murphy (5):
>       arm: omap: Add check for fdtfile in the findfdt macro
>       arm: omap5_uevm: Correct the console sys prompt for 5432
>       arm: dra7xx: Update the EXTRA_ENV_SETTINGS
>       arm: omap4: panda: Add reading of the board revision
>       arm: omap4: panda: Fix checkpatch on panda file
> 
> Heiko Schocher (3):
>       arm, am33xx: move rtc32k_enable() to common place
>       arm, am335x: make mpu pll config configurable
>       arm, am33xx: move uart soft reset code to common place
> 
>  arch/arm/cpu/armv7/am33xx/board.c            |   40 ++++++++++
>  arch/arm/cpu/armv7/am33xx/clock_am33xx.c     |    9 ++-
>  arch/arm/include/asm/arch-am33xx/sys_proto.h |    4 +
>  board/isee/igep0033/board.c                  |   40 +---------
>  board/phytec/pcm051/board.c                  |   39 +---------
>  board/ti/am335x/board.c                      |   39 +---------
>  board/ti/panda/panda.c                       |  104 +++++++++++++++++++++-----
>  board/ti/ti814x/evm.c                        |   35 +--------
>  include/configs/am335x_evm.h                 |    7 +-
>  include/configs/dra7xx_evm.h                 |    3 +
>  include/configs/omap4_common.h               |    7 +-
>  include/configs/omap5_common.h               |    9 ++-
>  include/configs/omap5_uevm.h                 |    4 +-
>  13 files changed, 164 insertions(+), 176 deletions(-)
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

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

Hello,

The following changes since commit 847e6693ccb529bf8346db62876f38f0c4e04ade:

  arm: pxa: config option for PXA270 turbo mode (2013-06-12 22:24:12 +0200)

are available in the git repository at:

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

for you to fetch changes up to bf3b98a1886ef18d7e2e4f83fec17f6c8cc51eaf:

  arm: omap4: panda: Fix checkpatch on panda file (2013-06-18 10:43:30 -0400)

----------------------------------------------------------------
Dan Murphy (5):
      arm: omap: Add check for fdtfile in the findfdt macro
      arm: omap5_uevm: Correct the console sys prompt for 5432
      arm: dra7xx: Update the EXTRA_ENV_SETTINGS
      arm: omap4: panda: Add reading of the board revision
      arm: omap4: panda: Fix checkpatch on panda file

Heiko Schocher (3):
      arm, am33xx: move rtc32k_enable() to common place
      arm, am335x: make mpu pll config configurable
      arm, am33xx: move uart soft reset code to common place

 arch/arm/cpu/armv7/am33xx/board.c            |   40 ++++++++++
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c     |    9 ++-
 arch/arm/include/asm/arch-am33xx/sys_proto.h |    4 +
 board/isee/igep0033/board.c                  |   40 +---------
 board/phytec/pcm051/board.c                  |   39 +---------
 board/ti/am335x/board.c                      |   39 +---------
 board/ti/panda/panda.c                       |  104 +++++++++++++++++++++-----
 board/ti/ti814x/evm.c                        |   35 +--------
 include/configs/am335x_evm.h                 |    7 +-
 include/configs/dra7xx_evm.h                 |    3 +
 include/configs/omap4_common.h               |    7 +-
 include/configs/omap5_common.h               |    9 ++-
 include/configs/omap5_uevm.h                 |    4 +-
 13 files changed, 164 insertions(+), 176 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/20130618/f6f4f0cb/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-10 15:38 Tom Rini
@ 2013-06-10 17:11 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-06-10 17:11 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 10 Jun 2013 11:38:56 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> 
> The following changes since commit 10e167329b029890a4c704f094822da5f259b886:
> 
>   Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-06-08 14:35:10 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 68cd4a4c9f4d7be8dc95796fb567f6b03faf9d97:
> 
>   arm: da830: moved pinmux configurations to the arch tree (2013-06-10 08:54:46 -0400)
> 
> ----------------------------------------------------------------
> Andrii Tseglytskyi (2):
>       OMAP3+: introduce generic ABB support
>       OMAP5: add ABB setup for MPU voltage domain
> 
> Balaji T K (1):
>       mmc: omap_hsmmc: Update pbias programming
> 
> Joel A Fernandes (1):
>       am33xx: Board: Make CPSW section of ethernet initialization depend on CPSW driver
> 
> Lokesh Vutla (10):
>       ARM: OMAP4+: Cleanup header files
>       ARM: OMAP2+: Rename asm/arch/clocks.h asm/arch/clock.h
>       ARM: OMAP4+: pmic: Make generic bus init and write functions
>       ARM: DRA7xx: Add control id code for DRA7xx
>       ARM: DRA7xx: power Add support for tps659038 PMIC
>       ARM: DRA7xx: clocks: Fixing i2c_init for PMIC
>       ARM: DRA7xx: Do not enable srcomp for DRA7xx Soc's
>       ARM: DRA7xx: Update pinmux data
>       ARM: DRA7xx: clocks: Update PLL values
>       ARM: DRA7: Add Maintainer
> 
> Lubomir Popov (4):
>       OMAP5: Fix bug in omap5_es1_prcm struct
>       ARM: OMAP5: Power: Add more functionality to Palmas driver
>       ARM: OMAP: I2C: New read, write and probe functions
>       OMAP5: Enable access to auxclk registers
> 
> Nishanth Menon (1):
>       ARM: OMAP5: DRA7xx: support class 0 optimized voltages
> 
> Sricharan R (5):
>       ARM: OMAP5: clocks: Do not enable sgx clocks
>       ARM: DRA7xx: Change the Debug UART to UART1
>       ARM: DRA7xx: Correct the SYS_CLK to 20MHZ
>       ARM: DRA7xx: Correct SRAM END address
>       ARM: DRA7xx: EMIF: Change settings required for EVM board
> 
> Tom Rini (1):
>       arm: Remove OMAP2420H4 and all omap24xx support
> 
> Vishwanathrao Badarkhe, Manish (2):
>       da830: add MMC support
>       arm: da830: moved pinmux configurations to the arch tree
> 
>  MAINTAINERS                                        |    8 +-
>  arch/arm/cpu/arm1136/start.S                       |   18 -
>  arch/arm/cpu/arm926ejs/davinci/Makefile            |    1 +
>  arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c      |  151 ++++
>  arch/arm/cpu/armv7/omap-common/Makefile            |    1 +
>  arch/arm/cpu/armv7/omap-common/abb.c               |  137 ++++
>  arch/arm/cpu/armv7/omap-common/clocks-common.c     |  101 ++-
>  arch/arm/cpu/armv7/omap-common/emif-common.c       |   28 +-
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    2 -
>  arch/arm/cpu/armv7/omap-common/timer.c             |    1 +
>  arch/arm/cpu/armv7/omap-common/vc.c                |   14 +-
>  arch/arm/cpu/armv7/omap3/clock.c                   |    2 +-
>  arch/arm/cpu/armv7/omap4/hw_data.c                 |   13 +-
>  arch/arm/cpu/armv7/omap4/prcm-regs.c               |    3 +
>  arch/arm/cpu/armv7/omap5/Makefile                  |    1 +
>  arch/arm/cpu/armv7/omap5/abb.c                     |   67 ++
>  arch/arm/cpu/armv7/omap5/hw_data.c                 |  167 ++--
>  arch/arm/cpu/armv7/omap5/hwinit.c                  |   24 +-
>  arch/arm/cpu/armv7/omap5/prcm-regs.c               |   20 +
>  arch/arm/cpu/armv7/omap5/sdram.c                   |  170 +++-
>  arch/arm/include/asm/arch-davinci/pinmux_defs.h    |   15 +-
>  arch/arm/include/asm/arch-omap24xx/bits.h          |   48 --
>  arch/arm/include/asm/arch-omap24xx/clocks.h        |  112 ---
>  arch/arm/include/asm/arch-omap24xx/i2c.h           |   68 --
>  arch/arm/include/asm/arch-omap24xx/mem.h           |  156 ----
>  arch/arm/include/asm/arch-omap24xx/mux.h           |  176 ----
>  arch/arm/include/asm/arch-omap24xx/omap2420.h      |  236 ------
>  arch/arm/include/asm/arch-omap24xx/sys_info.h      |   82 --
>  arch/arm/include/asm/arch-omap24xx/sys_proto.h     |   54 --
>  .../include/asm/arch-omap3/{clocks.h => clock.h}   |    0
>  arch/arm/include/asm/arch-omap3/omap3.h            |    7 +
>  .../include/asm/arch-omap4/{clocks.h => clock.h}   |   34 +-
>  arch/arm/include/asm/arch-omap4/cpu.h              |   12 -
>  arch/arm/include/asm/arch-omap4/omap.h             |   22 +-
>  arch/arm/include/asm/arch-omap4/sys_proto.h        |    5 +-
>  .../include/asm/arch-omap5/{clocks.h => clock.h}   |   91 +-
>  arch/arm/include/asm/arch-omap5/cpu.h              |   12 -
>  arch/arm/include/asm/arch-omap5/mux_dra7xx.h       |    7 +-
>  arch/arm/include/asm/arch-omap5/omap.h             |   67 +-
>  arch/arm/include/asm/arch-omap5/sys_proto.h        |    7 +-
>  arch/arm/include/asm/emif.h                        |   12 +-
>  arch/arm/include/asm/omap_common.h                 |   59 +-
>  arch/arm/lib/cache.c                               |    2 +-
>  board/davinci/da8xxevm/da830evm.c                  |  155 +---
>  board/htkw/mcx/mcx.c                               |    2 +-
>  board/teejet/mt_ventoux/mt_ventoux.c               |    2 +-
>  board/ti/am335x/board.c                            |    2 +
>  board/ti/dra7xx/mux_data.h                         |   38 +-
>  board/ti/omap2420h4/Makefile                       |   45 -
>  board/ti/omap2420h4/config.mk                      |   28 -
>  board/ti/omap2420h4/lowlevel_init.S                |  185 -----
>  board/ti/omap2420h4/mem.c                          |  362 --------
>  board/ti/omap2420h4/omap2420h4.c                   |  867 --------------------
>  board/ti/omap2420h4/sys_info.c                     |  387 ---------
>  board/ti/omap5_uevm/evm.c                          |   12 +-
>  board/ti/panda/panda.c                             |   22 +-
>  board/ti/sdp4430/sdp.c                             |   16 +-
>  boards.cfg                                         |    1 -
>  doc/README.scrapyard                               |    1 +
>  drivers/i2c/omap24xx_i2c.c                         |  490 ++++++-----
>  drivers/mmc/omap_hsmmc.c                           |   20 +-
>  drivers/power/palmas.c                             |  133 ++-
>  drivers/serial/ns16550.c                           |    5 -
>  drivers/serial/serial_ns16550.c                    |    5 -
>  drivers/usb/musb/omap3.c                           |    4 +-
>  include/configs/da830evm.h                         |   25 +-
>  include/configs/dra7xx_evm.h                       |    8 +-
>  include/configs/omap2420h4.h                       |  264 ------
>  include/configs/omap4_common.h                     |    4 -
>  include/configs/omap5_common.h                     |   12 +-
>  include/configs/omap5_uevm.h                       |    7 +-
>  include/palmas.h                                   |   90 +-
>  72 files changed, 1679 insertions(+), 3726 deletions(-)
>  create mode 100644 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c
>  create mode 100644 arch/arm/cpu/armv7/omap-common/abb.c
>  create mode 100644 arch/arm/cpu/armv7/omap5/abb.c
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/bits.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/clocks.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/i2c.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/mem.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/mux.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/omap2420.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_info.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_proto.h
>  rename arch/arm/include/asm/arch-omap3/{clocks.h => clock.h} (100%)
>  rename arch/arm/include/asm/arch-omap4/{clocks.h => clock.h} (90%)
>  rename arch/arm/include/asm/arch-omap5/{clocks.h => clock.h} (73%)
>  delete mode 100644 board/ti/omap2420h4/Makefile
>  delete mode 100644 board/ti/omap2420h4/config.mk
>  delete mode 100644 board/ti/omap2420h4/lowlevel_init.S
>  delete mode 100644 board/ti/omap2420h4/mem.c
>  delete mode 100644 board/ti/omap2420h4/omap2420h4.c
>  delete mode 100644 board/ti/omap2420h4/sys_info.c
>  delete mode 100644 include/configs/omap2420h4.h
> 
> This replaces the last pull request with the changes of:
> - Rebased to current u-boot-arm/master
> - Fix thinko in omap2420h4 removal
> - Drop ULPI patch for now, will pick up again later
> 

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

Amicalement,
-- 
Albert.

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

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

Hello,


The following changes since commit 10e167329b029890a4c704f094822da5f259b886:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-06-08 14:35:10 +0200)

are available in the git repository at:


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

for you to fetch changes up to 68cd4a4c9f4d7be8dc95796fb567f6b03faf9d97:

  arm: da830: moved pinmux configurations to the arch tree (2013-06-10 08:54:46 -0400)

----------------------------------------------------------------
Andrii Tseglytskyi (2):
      OMAP3+: introduce generic ABB support
      OMAP5: add ABB setup for MPU voltage domain

Balaji T K (1):
      mmc: omap_hsmmc: Update pbias programming

Joel A Fernandes (1):
      am33xx: Board: Make CPSW section of ethernet initialization depend on CPSW driver

Lokesh Vutla (10):
      ARM: OMAP4+: Cleanup header files
      ARM: OMAP2+: Rename asm/arch/clocks.h asm/arch/clock.h
      ARM: OMAP4+: pmic: Make generic bus init and write functions
      ARM: DRA7xx: Add control id code for DRA7xx
      ARM: DRA7xx: power Add support for tps659038 PMIC
      ARM: DRA7xx: clocks: Fixing i2c_init for PMIC
      ARM: DRA7xx: Do not enable srcomp for DRA7xx Soc's
      ARM: DRA7xx: Update pinmux data
      ARM: DRA7xx: clocks: Update PLL values
      ARM: DRA7: Add Maintainer

Lubomir Popov (4):
      OMAP5: Fix bug in omap5_es1_prcm struct
      ARM: OMAP5: Power: Add more functionality to Palmas driver
      ARM: OMAP: I2C: New read, write and probe functions
      OMAP5: Enable access to auxclk registers

Nishanth Menon (1):
      ARM: OMAP5: DRA7xx: support class 0 optimized voltages

Sricharan R (5):
      ARM: OMAP5: clocks: Do not enable sgx clocks
      ARM: DRA7xx: Change the Debug UART to UART1
      ARM: DRA7xx: Correct the SYS_CLK to 20MHZ
      ARM: DRA7xx: Correct SRAM END address
      ARM: DRA7xx: EMIF: Change settings required for EVM board

Tom Rini (1):
      arm: Remove OMAP2420H4 and all omap24xx support

Vishwanathrao Badarkhe, Manish (2):
      da830: add MMC support
      arm: da830: moved pinmux configurations to the arch tree

 MAINTAINERS                                        |    8 +-
 arch/arm/cpu/arm1136/start.S                       |   18 -
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    1 +
 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c      |  151 ++++
 arch/arm/cpu/armv7/omap-common/Makefile            |    1 +
 arch/arm/cpu/armv7/omap-common/abb.c               |  137 ++++
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |  101 ++-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |   28 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    2 -
 arch/arm/cpu/armv7/omap-common/timer.c             |    1 +
 arch/arm/cpu/armv7/omap-common/vc.c                |   14 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |    2 +-
 arch/arm/cpu/armv7/omap4/hw_data.c                 |   13 +-
 arch/arm/cpu/armv7/omap4/prcm-regs.c               |    3 +
 arch/arm/cpu/armv7/omap5/Makefile                  |    1 +
 arch/arm/cpu/armv7/omap5/abb.c                     |   67 ++
 arch/arm/cpu/armv7/omap5/hw_data.c                 |  167 ++--
 arch/arm/cpu/armv7/omap5/hwinit.c                  |   24 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c               |   20 +
 arch/arm/cpu/armv7/omap5/sdram.c                   |  170 +++-
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |   15 +-
 arch/arm/include/asm/arch-omap24xx/bits.h          |   48 --
 arch/arm/include/asm/arch-omap24xx/clocks.h        |  112 ---
 arch/arm/include/asm/arch-omap24xx/i2c.h           |   68 --
 arch/arm/include/asm/arch-omap24xx/mem.h           |  156 ----
 arch/arm/include/asm/arch-omap24xx/mux.h           |  176 ----
 arch/arm/include/asm/arch-omap24xx/omap2420.h      |  236 ------
 arch/arm/include/asm/arch-omap24xx/sys_info.h      |   82 --
 arch/arm/include/asm/arch-omap24xx/sys_proto.h     |   54 --
 .../include/asm/arch-omap3/{clocks.h => clock.h}   |    0
 arch/arm/include/asm/arch-omap3/omap3.h            |    7 +
 .../include/asm/arch-omap4/{clocks.h => clock.h}   |   34 +-
 arch/arm/include/asm/arch-omap4/cpu.h              |   12 -
 arch/arm/include/asm/arch-omap4/omap.h             |   22 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    5 +-
 .../include/asm/arch-omap5/{clocks.h => clock.h}   |   91 +-
 arch/arm/include/asm/arch-omap5/cpu.h              |   12 -
 arch/arm/include/asm/arch-omap5/mux_dra7xx.h       |    7 +-
 arch/arm/include/asm/arch-omap5/omap.h             |   67 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    7 +-
 arch/arm/include/asm/emif.h                        |   12 +-
 arch/arm/include/asm/omap_common.h                 |   59 +-
 arch/arm/lib/cache.c                               |    2 +-
 board/davinci/da8xxevm/da830evm.c                  |  155 +---
 board/htkw/mcx/mcx.c                               |    2 +-
 board/teejet/mt_ventoux/mt_ventoux.c               |    2 +-
 board/ti/am335x/board.c                            |    2 +
 board/ti/dra7xx/mux_data.h                         |   38 +-
 board/ti/omap2420h4/Makefile                       |   45 -
 board/ti/omap2420h4/config.mk                      |   28 -
 board/ti/omap2420h4/lowlevel_init.S                |  185 -----
 board/ti/omap2420h4/mem.c                          |  362 --------
 board/ti/omap2420h4/omap2420h4.c                   |  867 --------------------
 board/ti/omap2420h4/sys_info.c                     |  387 ---------
 board/ti/omap5_uevm/evm.c                          |   12 +-
 board/ti/panda/panda.c                             |   22 +-
 board/ti/sdp4430/sdp.c                             |   16 +-
 boards.cfg                                         |    1 -
 doc/README.scrapyard                               |    1 +
 drivers/i2c/omap24xx_i2c.c                         |  490 ++++++-----
 drivers/mmc/omap_hsmmc.c                           |   20 +-
 drivers/power/palmas.c                             |  133 ++-
 drivers/serial/ns16550.c                           |    5 -
 drivers/serial/serial_ns16550.c                    |    5 -
 drivers/usb/musb/omap3.c                           |    4 +-
 include/configs/da830evm.h                         |   25 +-
 include/configs/dra7xx_evm.h                       |    8 +-
 include/configs/omap2420h4.h                       |  264 ------
 include/configs/omap4_common.h                     |    4 -
 include/configs/omap5_common.h                     |   12 +-
 include/configs/omap5_uevm.h                       |    7 +-
 include/palmas.h                                   |   90 +-
 72 files changed, 1679 insertions(+), 3726 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/abb.c
 create mode 100644 arch/arm/cpu/armv7/omap5/abb.c
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/bits.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/clocks.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/i2c.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/mem.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/mux.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/omap2420.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_info.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_proto.h
 rename arch/arm/include/asm/arch-omap3/{clocks.h => clock.h} (100%)
 rename arch/arm/include/asm/arch-omap4/{clocks.h => clock.h} (90%)
 rename arch/arm/include/asm/arch-omap5/{clocks.h => clock.h} (73%)
 delete mode 100644 board/ti/omap2420h4/Makefile
 delete mode 100644 board/ti/omap2420h4/config.mk
 delete mode 100644 board/ti/omap2420h4/lowlevel_init.S
 delete mode 100644 board/ti/omap2420h4/mem.c
 delete mode 100644 board/ti/omap2420h4/omap2420h4.c
 delete mode 100644 board/ti/omap2420h4/sys_info.c
 delete mode 100644 include/configs/omap2420h4.h

This replaces the last pull request with the changes of:
- Rebased to current u-boot-arm/master
- Fix thinko in omap2420h4 removal
- Drop ULPI patch for now, will pick up again later

-- 
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/20130610/5196c4fe/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-10  9:55       ` Michael Trimarchi
  2013-06-10 10:57         ` Lubomir Popov
  2013-06-10 14:51         ` Albert ARIBAUD
@ 2013-06-10 15:37         ` Tom Rini
  2 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-06-10 15:37 UTC (permalink / raw)
  To: u-boot

On Mon, Jun 10, 2013 at 11:55:31AM +0200, Michael Trimarchi wrote:
> Hi
> 
> On Mon, Jun 10, 2013 at 11:54:31AM +0300, Lubomir Popov wrote:
> > Hi Michael,
> > 
> > On 10/06/13 00:37, Michael Trimarchi wrote:
> > > Hi
> > > 
> > > On 06/08/2013 10:43 PM, Lubomir Popov wrote:
> > >> Hi Tom, Michael,
> > >>
> > >>> Hello,
> > >>>
> > >>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
> > >>>
> > >>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
> > >>>
> > >>> are available in the git repository at:
> > >>>
> > >>>   git://git.denx.de/u-boot-ti.git master
> > >>>
> > >>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
> > >>>
> > >>
> > >> [snip]
> > >>
> > >>> Michael Trimarchi (1):
> > >>>       usb: omap: ulpi: fix ulpi transceiver access
> > >>
> > >> [snip]
> > >>
> > >>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
> > >>
> > >> [snip]
> > >>
> > >> I just made a clean clone of u-boot-ti/master, manually applied the
> > >> changes to the ehci files, added my board files and made a build.
> > >> Everything seems to work fine, but I see an error message regarding
> > >> ULPI reset that was not present before, and obviously it is due to
> > >> Michael's changes:
> > >>
> > >> SOM5_EVB # usb start
> > >> (Re)start USB...
> > >> USB0:   ULPI: ulpi_reset: failed writing reset bit
> > > 
> > > Let me understand. The patch is wrong because you have a problem now.
> > > The old code was not sending any write command so any ulpi_reset and the
> > > test condition was wrong.
> > Right.
> > 
> > > 
> > >> USB EHCI 1.00
> > >> scanning bus 0 for devices... 6 USB Device(s) found
> > >>        scanning usb for storage devices... 3 Storage Device(s) found
> > >>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
> > >> SOM5_EVB # usb tree
> > >> USB device tree:
> > >>   1  Hub (480 Mb/s, 0mA)
> > >>   |  u-boot EHCI Host Controller
> > >>   |
> > >>   +-2  Mass Storage (480 Mb/s, 200mA)
> > >>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
> > >>   |
> > >>   +-3  Hub (480 Mb/s, 2mA)
> > >>   | |
> > >>   | +-4  Mass Storage (480 Mb/s, 96mA)
> > >>   | |    Generic Ultra Fast Media Reader 000000264001
> > >>   | |
> > >>   | +-5  Mass Storage (480 Mb/s, 100mA)
> > >>   |      USB Flash Drive 531C43B21928F11F
> > >>   |
> > >>   +-6  Vendor specific (480 Mb/s, 500mA)
> > >>
> > >> SOM5_EVB #
> > >>
> > >> Otherwise everything is OK, the device on the ULPI port is working
> > >> (it is #2 above). It is now late and I shall investigate in detail
> > >> tomorrow, this is just an early warning ;)
> > > 
> > > Can you test the attach patch? Yes I know it is not inline but I will
> > > send inline tomorrow and I have done changing the old one. 
> > > I was thinking port number was starting from 1 but I have done a quick check
> > > on soft_reset of omap and it is starting from 0
> > 
> > Just tested on a OMAP5430 custom board. Everything is OK, PHY soft reset
> > passes. My ULPI PHY is on port 0, and with the previous version the insreg05
> > bit 31 remained stuck at 1, producing this error. Now when we write 1 to the
> > port field instead of 0, everything is fine. So
> > 
> > Tested-by: Lubomir Popov <lpopov@mm-sol.com>
> > 
> > While testing, I however encountered another issue (not related to this patch,
> > take it easy ;-) ): one particular USB flash stick, connected to the ULPI port,
> > does systematically (100%) not get detected upon the first 'usb start' command
> > after power-on; subsequent usb start/reset commands detect it alright. I have
> > experimented a bit with some delays (assuming that it is some sort of timing
> > problem), but without success. Other sticks are OK. Removing the call to
> > omap_ehci_soft_phy_reset() (which calls ulpi_reset() and the viewport stuff)
> > does not change anything.
> > 
> > I'm currently at work, where I have other obligations and cannot spend much
> > time for U-Boot. Therefore, if somebody could share any experience on this
> > subject, please let me know.
> > 
> > One thing that perhaps I should clarify: my ULPI PHY is the TI part TUSB1210;
> > on the other hand, TI themselves recommend PHYs by SMSC, at least for the OMAP4.
> > This was not the case for OMAP5, but who knows...
> > 
> > Thanks,
> > Lubo
> > 
> > > 
> > > Michael
> > > 
> > >>
> > >> Best regards,
> > >> Lubo
> > >>
> 
> This patch fix the omap access to the transceiver
> configuration registers using the ulpi bus. As reported by
> the documentation the bit31 is used only to check if the
> transaction is done or still running and the reading and
> writing operation have different offset and have different
> values. What we need to do at the end of a transaction is
> leave the bus in done state. Anyway an error using the ulpi
> omap register is not recoverable so any error give out the
> usage of this interface.
> 
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>

Thanks for sorting this all out.  Please post as a separate thread the
new patch, and I'm going to drop the ULPI patch from my pull request for
now (we'll pick it up before release).  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/20130610/447972cb/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-10  9:55       ` Michael Trimarchi
  2013-06-10 10:57         ` Lubomir Popov
@ 2013-06-10 14:51         ` Albert ARIBAUD
  2013-06-10 15:37         ` Tom Rini
  2 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-06-10 14:51 UTC (permalink / raw)
  To: u-boot

Hi Michael,

On Mon, 10 Jun 2013 11:55:31 +0200, Michael Trimarchi
<michael@amarulasolutions.com> wrote:

> This patch fix the omap access to the transceiver

Please do not post new patches inside an existing thread, especially
a pull request thread.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-08 21:57 ` Albert ARIBAUD
@ 2013-06-10 12:44   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-06-10 12:44 UTC (permalink / raw)
  To: u-boot

On Sat, Jun 08, 2013 at 11:57:05PM +0200, Albert ARIBAUD wrote:
> Hi Tom,
> 
> On Fri, 7 Jun 2013 15:19:21 -0400, Tom Rini <trini@ti.com> wrote:
> 
> > Tom Rini (4):
> 
> >       arm: Remove OMAP2420H4 and all omap24xx support
> 
> This one removes not only 2420h4 but also tnetv107x_evm. Is that normal?

That wasn't intentional, merge problem and/or fat-fingers.  Re-did that
commit and rebased onto current u-boot-arm, will re-do a pull request
once MAKEALL -a arm finishes.

-- 
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/20130610/dad92555/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-10  9:55       ` Michael Trimarchi
@ 2013-06-10 10:57         ` Lubomir Popov
  2013-06-10 14:51         ` Albert ARIBAUD
  2013-06-10 15:37         ` Tom Rini
  2 siblings, 0 replies; 324+ messages in thread
From: Lubomir Popov @ 2013-06-10 10:57 UTC (permalink / raw)
  To: u-boot

Hi Michael,

On 10/06/13 12:55, Michael Trimarchi wrote:
> Hi
> 
> On Mon, Jun 10, 2013 at 11:54:31AM +0300, Lubomir Popov wrote:
>> Hi Michael,
>>
>> On 10/06/13 00:37, Michael Trimarchi wrote:
>>> Hi
>>>
>>> On 06/08/2013 10:43 PM, Lubomir Popov wrote:
>>>> Hi Tom, Michael,
>>>>
>>>>> Hello,
>>>>>
>>>>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>>>>>
>>>>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>>   git://git.denx.de/u-boot-ti.git master
>>>>>
>>>>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>>>>>
>>>>
>>>> [snip]
>>>>
>>>>> Michael Trimarchi (1):
>>>>>       usb: omap: ulpi: fix ulpi transceiver access
>>>>
>>>> [snip]
>>>>
>>>>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
>>>>
>>>> [snip]
>>>>
>>>> I just made a clean clone of u-boot-ti/master, manually applied the
>>>> changes to the ehci files, added my board files and made a build.
>>>> Everything seems to work fine, but I see an error message regarding
>>>> ULPI reset that was not present before, and obviously it is due to
>>>> Michael's changes:
>>>>
>>>> SOM5_EVB # usb start
>>>> (Re)start USB...
>>>> USB0:   ULPI: ulpi_reset: failed writing reset bit
>>>
>>> Let me understand. The patch is wrong because you have a problem now.
>>> The old code was not sending any write command so any ulpi_reset and the
>>> test condition was wrong.
>> Right.
>>
>>>
>>>> USB EHCI 1.00
>>>> scanning bus 0 for devices... 6 USB Device(s) found
>>>>        scanning usb for storage devices... 3 Storage Device(s) found
>>>>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
>>>> SOM5_EVB # usb tree
>>>> USB device tree:
>>>>   1  Hub (480 Mb/s, 0mA)
>>>>   |  u-boot EHCI Host Controller
>>>>   |
>>>>   +-2  Mass Storage (480 Mb/s, 200mA)
>>>>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
>>>>   |
>>>>   +-3  Hub (480 Mb/s, 2mA)
>>>>   | |
>>>>   | +-4  Mass Storage (480 Mb/s, 96mA)
>>>>   | |    Generic Ultra Fast Media Reader 000000264001
>>>>   | |
>>>>   | +-5  Mass Storage (480 Mb/s, 100mA)
>>>>   |      USB Flash Drive 531C43B21928F11F
>>>>   |
>>>>   +-6  Vendor specific (480 Mb/s, 500mA)
>>>>
>>>> SOM5_EVB #
>>>>
>>>> Otherwise everything is OK, the device on the ULPI port is working
>>>> (it is #2 above). It is now late and I shall investigate in detail
>>>> tomorrow, this is just an early warning ;)
>>>
>>> Can you test the attach patch? Yes I know it is not inline but I will
>>> send inline tomorrow and I have done changing the old one. 
>>> I was thinking port number was starting from 1 but I have done a quick check
>>> on soft_reset of omap and it is starting from 0
>>
>> Just tested on a OMAP5430 custom board. Everything is OK, PHY soft reset
>> passes. My ULPI PHY is on port 0, and with the previous version the insreg05
>> bit 31 remained stuck at 1, producing this error. Now when we write 1 to the
>> port field instead of 0, everything is fine. So
>>
>> Tested-by: Lubomir Popov <lpopov@mm-sol.com>
>>
>> While testing, I however encountered another issue (not related to this patch,
>> take it easy ;-) ): one particular USB flash stick, connected to the ULPI port,
>> does systematically (100%) not get detected upon the first 'usb start' command
>> after power-on; subsequent usb start/reset commands detect it alright. I have
>> experimented a bit with some delays (assuming that it is some sort of timing
>> problem), but without success. Other sticks are OK. Removing the call to
>> omap_ehci_soft_phy_reset() (which calls ulpi_reset() and the viewport stuff)
>> does not change anything.
>>
>> I'm currently at work, where I have other obligations and cannot spend much
>> time for U-Boot. Therefore, if somebody could share any experience on this
>> subject, please let me know.
>>
>> One thing that perhaps I should clarify: my ULPI PHY is the TI part TUSB1210;
>> on the other hand, TI themselves recommend PHYs by SMSC, at least for the OMAP4.
>> This was not the case for OMAP5, but who knows...
>>
>> Thanks,
>> Lubo
>>
>>>
>>> Michael
>>>
>>>>
>>>> Best regards,
>>>> Lubo
>>>>
> 
> This patch fix the omap access to the transceiver
> configuration registers using the ulpi bus. As reported by
> the documentation the bit31 is used only to check if the
> transaction is done or still running and the reading and
> writing operation have different offset and have different
> values. What we need to do at the end of a transaction is
> leave the bus in done state. Anyway an error using the ulpi
> omap register is not recoverable so any error give out the
> usage of this interface.
> 
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
> ---
> - changes for V4
>   * port_num start from 0 so we need to take in account when
>   we use the omap access function.
>   * Fix the read function
> - changes for V3
>   Fix patch subject
> - changes for V2
>   Fix commit message
> ---
>  drivers/usb/ulpi/omap-ulpi-viewport.c |   42 +++++++--------------------------
>  1 file changed, 9 insertions(+), 33 deletions(-)
> 
> diff --git a/drivers/usb/ulpi/omap-ulpi-viewport.c b/drivers/usb/ulpi/omap-ulpi-viewport.c
> index 3c1ea1a..4db7fa4 100644
> --- a/drivers/usb/ulpi/omap-ulpi-viewport.c
> +++ b/drivers/usb/ulpi/omap-ulpi-viewport.c
> @@ -22,18 +22,19 @@
>  #include <asm/io.h>
>  #include <usb/ulpi.h>
>  
> -#define OMAP_ULPI_WR_OPSEL	(3 << 21)
> -#define OMAP_ULPI_ACCESS	(1 << 31)
> +#define OMAP_ULPI_WR_OPSEL	(2 << 22)
> +#define OMAP_ULPI_RD_OPSEL	(3 << 22)
> +#define OMAP_ULPI_START		(1 << 31)
>  
>  /*
> - * Wait for the ULPI Access to complete
> + * Wait for having ulpi in done state
>   */
>  static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
>  {
>  	int timeout = CONFIG_USB_ULPI_TIMEOUT;
>  
>  	while (--timeout) {
> -		if ((readl(ulpi_vp->viewport_addr) & mask))
> +		if (!(readl(ulpi_vp->viewport_addr) & mask))
>  			return 0;
>  
>  		udelay(1);
> @@ -43,40 +44,15 @@ static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
>  }
>  
>  /*
> - * Wake the ULPI PHY up for communication
> - *
> - * returns 0 on success.
> - */
> -static int ulpi_wakeup(struct ulpi_viewport *ulpi_vp)
> -{
> -	int err;
> -
> -	if (readl(ulpi_vp->viewport_addr) & OMAP_ULPI_ACCESS)
> -		return 0; /* already awake */
> -
> -	writel(OMAP_ULPI_ACCESS, ulpi_vp->viewport_addr);
> -
> -	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
> -	if (err)
> -		debug("ULPI wakeup timed out\n");
> -
> -	return err;
> -}
> -
> -/*
>   * Issue a ULPI read/write request
>   */
>  static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
>  {
>  	int err;
>  
> -	err = ulpi_wakeup(ulpi_vp);
> -	if (err)
> -		return err;
> -
>  	writel(value, ulpi_vp->viewport_addr);
>  
> -	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
> +	err = ulpi_wait(ulpi_vp, OMAP_ULPI_START);
>  	if (err)
>  		debug("ULPI request timed out\n");
>  
> @@ -85,7 +61,7 @@ static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
>  
>  int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
>  {
> -	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
> +	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
>  			OMAP_ULPI_WR_OPSEL | ((u32)reg << 16) | (value & 0xff);
>  
>  	return ulpi_request(ulpi_vp, val);
> @@ -94,8 +70,8 @@ int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
>  u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
>  {
>  	int err;
> -	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
> -			 OMAP_ULPI_WR_OPSEL | ((u32)reg << 16);
> +	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
> +			 OMAP_ULPI_RD_OPSEL | ((u32)reg << 16);
This fix (OMAP_ULPI_START | ...) to ulpi_read() is correct. It does not however solve
my issue :( . As I noted, with or without calling the soft reset, behavior with this
particular USB stick is the same. 
>  
>  	err = ulpi_request(ulpi_vp, val);
>  	if (err)
> 
BR,
Lubo

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-10  8:54     ` Lubomir Popov
@ 2013-06-10  9:55       ` Michael Trimarchi
  2013-06-10 10:57         ` Lubomir Popov
                           ` (2 more replies)
  0 siblings, 3 replies; 324+ messages in thread
From: Michael Trimarchi @ 2013-06-10  9:55 UTC (permalink / raw)
  To: u-boot

Hi

On Mon, Jun 10, 2013 at 11:54:31AM +0300, Lubomir Popov wrote:
> Hi Michael,
> 
> On 10/06/13 00:37, Michael Trimarchi wrote:
> > Hi
> > 
> > On 06/08/2013 10:43 PM, Lubomir Popov wrote:
> >> Hi Tom, Michael,
> >>
> >>> Hello,
> >>>
> >>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
> >>>
> >>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
> >>>
> >>> are available in the git repository at:
> >>>
> >>>   git://git.denx.de/u-boot-ti.git master
> >>>
> >>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
> >>>
> >>
> >> [snip]
> >>
> >>> Michael Trimarchi (1):
> >>>       usb: omap: ulpi: fix ulpi transceiver access
> >>
> >> [snip]
> >>
> >>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
> >>
> >> [snip]
> >>
> >> I just made a clean clone of u-boot-ti/master, manually applied the
> >> changes to the ehci files, added my board files and made a build.
> >> Everything seems to work fine, but I see an error message regarding
> >> ULPI reset that was not present before, and obviously it is due to
> >> Michael's changes:
> >>
> >> SOM5_EVB # usb start
> >> (Re)start USB...
> >> USB0:   ULPI: ulpi_reset: failed writing reset bit
> > 
> > Let me understand. The patch is wrong because you have a problem now.
> > The old code was not sending any write command so any ulpi_reset and the
> > test condition was wrong.
> Right.
> 
> > 
> >> USB EHCI 1.00
> >> scanning bus 0 for devices... 6 USB Device(s) found
> >>        scanning usb for storage devices... 3 Storage Device(s) found
> >>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
> >> SOM5_EVB # usb tree
> >> USB device tree:
> >>   1  Hub (480 Mb/s, 0mA)
> >>   |  u-boot EHCI Host Controller
> >>   |
> >>   +-2  Mass Storage (480 Mb/s, 200mA)
> >>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
> >>   |
> >>   +-3  Hub (480 Mb/s, 2mA)
> >>   | |
> >>   | +-4  Mass Storage (480 Mb/s, 96mA)
> >>   | |    Generic Ultra Fast Media Reader 000000264001
> >>   | |
> >>   | +-5  Mass Storage (480 Mb/s, 100mA)
> >>   |      USB Flash Drive 531C43B21928F11F
> >>   |
> >>   +-6  Vendor specific (480 Mb/s, 500mA)
> >>
> >> SOM5_EVB #
> >>
> >> Otherwise everything is OK, the device on the ULPI port is working
> >> (it is #2 above). It is now late and I shall investigate in detail
> >> tomorrow, this is just an early warning ;)
> > 
> > Can you test the attach patch? Yes I know it is not inline but I will
> > send inline tomorrow and I have done changing the old one. 
> > I was thinking port number was starting from 1 but I have done a quick check
> > on soft_reset of omap and it is starting from 0
> 
> Just tested on a OMAP5430 custom board. Everything is OK, PHY soft reset
> passes. My ULPI PHY is on port 0, and with the previous version the insreg05
> bit 31 remained stuck at 1, producing this error. Now when we write 1 to the
> port field instead of 0, everything is fine. So
> 
> Tested-by: Lubomir Popov <lpopov@mm-sol.com>
> 
> While testing, I however encountered another issue (not related to this patch,
> take it easy ;-) ): one particular USB flash stick, connected to the ULPI port,
> does systematically (100%) not get detected upon the first 'usb start' command
> after power-on; subsequent usb start/reset commands detect it alright. I have
> experimented a bit with some delays (assuming that it is some sort of timing
> problem), but without success. Other sticks are OK. Removing the call to
> omap_ehci_soft_phy_reset() (which calls ulpi_reset() and the viewport stuff)
> does not change anything.
> 
> I'm currently at work, where I have other obligations and cannot spend much
> time for U-Boot. Therefore, if somebody could share any experience on this
> subject, please let me know.
> 
> One thing that perhaps I should clarify: my ULPI PHY is the TI part TUSB1210;
> on the other hand, TI themselves recommend PHYs by SMSC, at least for the OMAP4.
> This was not the case for OMAP5, but who knows...
> 
> Thanks,
> Lubo
> 
> > 
> > Michael
> > 
> >>
> >> Best regards,
> >> Lubo
> >>

This patch fix the omap access to the transceiver
configuration registers using the ulpi bus. As reported by
the documentation the bit31 is used only to check if the
transaction is done or still running and the reading and
writing operation have different offset and have different
values. What we need to do at the end of a transaction is
leave the bus in done state. Anyway an error using the ulpi
omap register is not recoverable so any error give out the
usage of this interface.

Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---
- changes for V4
  * port_num start from 0 so we need to take in account when
  we use the omap access function.
  * Fix the read function
- changes for V3
  Fix patch subject
- changes for V2
  Fix commit message
---
 drivers/usb/ulpi/omap-ulpi-viewport.c |   42 +++++++--------------------------
 1 file changed, 9 insertions(+), 33 deletions(-)

diff --git a/drivers/usb/ulpi/omap-ulpi-viewport.c b/drivers/usb/ulpi/omap-ulpi-viewport.c
index 3c1ea1a..4db7fa4 100644
--- a/drivers/usb/ulpi/omap-ulpi-viewport.c
+++ b/drivers/usb/ulpi/omap-ulpi-viewport.c
@@ -22,18 +22,19 @@
 #include <asm/io.h>
 #include <usb/ulpi.h>
 
-#define OMAP_ULPI_WR_OPSEL	(3 << 21)
-#define OMAP_ULPI_ACCESS	(1 << 31)
+#define OMAP_ULPI_WR_OPSEL	(2 << 22)
+#define OMAP_ULPI_RD_OPSEL	(3 << 22)
+#define OMAP_ULPI_START		(1 << 31)
 
 /*
- * Wait for the ULPI Access to complete
+ * Wait for having ulpi in done state
  */
 static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
 {
 	int timeout = CONFIG_USB_ULPI_TIMEOUT;
 
 	while (--timeout) {
-		if ((readl(ulpi_vp->viewport_addr) & mask))
+		if (!(readl(ulpi_vp->viewport_addr) & mask))
 			return 0;
 
 		udelay(1);
@@ -43,40 +44,15 @@ static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
 }
 
 /*
- * Wake the ULPI PHY up for communication
- *
- * returns 0 on success.
- */
-static int ulpi_wakeup(struct ulpi_viewport *ulpi_vp)
-{
-	int err;
-
-	if (readl(ulpi_vp->viewport_addr) & OMAP_ULPI_ACCESS)
-		return 0; /* already awake */
-
-	writel(OMAP_ULPI_ACCESS, ulpi_vp->viewport_addr);
-
-	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
-	if (err)
-		debug("ULPI wakeup timed out\n");
-
-	return err;
-}
-
-/*
  * Issue a ULPI read/write request
  */
 static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
 {
 	int err;
 
-	err = ulpi_wakeup(ulpi_vp);
-	if (err)
-		return err;
-
 	writel(value, ulpi_vp->viewport_addr);
 
-	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
+	err = ulpi_wait(ulpi_vp, OMAP_ULPI_START);
 	if (err)
 		debug("ULPI request timed out\n");
 
@@ -85,7 +61,7 @@ static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
 
 int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
 {
-	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
+	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
 			OMAP_ULPI_WR_OPSEL | ((u32)reg << 16) | (value & 0xff);
 
 	return ulpi_request(ulpi_vp, val);
@@ -94,8 +70,8 @@ int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
 u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
 {
 	int err;
-	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
-			 OMAP_ULPI_WR_OPSEL | ((u32)reg << 16);
+	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
+			 OMAP_ULPI_RD_OPSEL | ((u32)reg << 16);
 
 	err = ulpi_request(ulpi_vp, val);
 	if (err)
-- 
1.7.9.5

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-09 21:37   ` Michael Trimarchi
@ 2013-06-10  8:54     ` Lubomir Popov
  2013-06-10  9:55       ` Michael Trimarchi
  0 siblings, 1 reply; 324+ messages in thread
From: Lubomir Popov @ 2013-06-10  8:54 UTC (permalink / raw)
  To: u-boot

Hi Michael,

On 10/06/13 00:37, Michael Trimarchi wrote:
> Hi
> 
> On 06/08/2013 10:43 PM, Lubomir Popov wrote:
>> Hi Tom, Michael,
>>
>>> Hello,
>>>
>>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>>>
>>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>>>
>>> are available in the git repository at:
>>>
>>>   git://git.denx.de/u-boot-ti.git master
>>>
>>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>>>
>>
>> [snip]
>>
>>> Michael Trimarchi (1):
>>>       usb: omap: ulpi: fix ulpi transceiver access
>>
>> [snip]
>>
>>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
>>
>> [snip]
>>
>> I just made a clean clone of u-boot-ti/master, manually applied the
>> changes to the ehci files, added my board files and made a build.
>> Everything seems to work fine, but I see an error message regarding
>> ULPI reset that was not present before, and obviously it is due to
>> Michael's changes:
>>
>> SOM5_EVB # usb start
>> (Re)start USB...
>> USB0:   ULPI: ulpi_reset: failed writing reset bit
> 
> Let me understand. The patch is wrong because you have a problem now.
> The old code was not sending any write command so any ulpi_reset and the
> test condition was wrong.
Right.

> 
>> USB EHCI 1.00
>> scanning bus 0 for devices... 6 USB Device(s) found
>>        scanning usb for storage devices... 3 Storage Device(s) found
>>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
>> SOM5_EVB # usb tree
>> USB device tree:
>>   1  Hub (480 Mb/s, 0mA)
>>   |  u-boot EHCI Host Controller
>>   |
>>   +-2  Mass Storage (480 Mb/s, 200mA)
>>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
>>   |
>>   +-3  Hub (480 Mb/s, 2mA)
>>   | |
>>   | +-4  Mass Storage (480 Mb/s, 96mA)
>>   | |    Generic Ultra Fast Media Reader 000000264001
>>   | |
>>   | +-5  Mass Storage (480 Mb/s, 100mA)
>>   |      USB Flash Drive 531C43B21928F11F
>>   |
>>   +-6  Vendor specific (480 Mb/s, 500mA)
>>
>> SOM5_EVB #
>>
>> Otherwise everything is OK, the device on the ULPI port is working
>> (it is #2 above). It is now late and I shall investigate in detail
>> tomorrow, this is just an early warning ;)
> 
> Can you test the attach patch? Yes I know it is not inline but I will
> send inline tomorrow and I have done changing the old one. 
> I was thinking port number was starting from 1 but I have done a quick check
> on soft_reset of omap and it is starting from 0

Just tested on a OMAP5430 custom board. Everything is OK, PHY soft reset
passes. My ULPI PHY is on port 0, and with the previous version the insreg05
bit 31 remained stuck at 1, producing this error. Now when we write 1 to the
port field instead of 0, everything is fine. So

Tested-by: Lubomir Popov <lpopov@mm-sol.com>

While testing, I however encountered another issue (not related to this patch,
take it easy ;-) ): one particular USB flash stick, connected to the ULPI port,
does systematically (100%) not get detected upon the first 'usb start' command
after power-on; subsequent usb start/reset commands detect it alright. I have
experimented a bit with some delays (assuming that it is some sort of timing
problem), but without success. Other sticks are OK. Removing the call to
omap_ehci_soft_phy_reset() (which calls ulpi_reset() and the viewport stuff)
does not change anything.

I'm currently at work, where I have other obligations and cannot spend much
time for U-Boot. Therefore, if somebody could share any experience on this
subject, please let me know.

One thing that perhaps I should clarify: my ULPI PHY is the TI part TUSB1210;
on the other hand, TI themselves recommend PHYs by SMSC, at least for the OMAP4.
This was not the case for OMAP5, but who knows...

Thanks,
Lubo

> 
> Michael
> 
>>
>> Best regards,
>> Lubo
>>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-08 20:43 ` Lubomir Popov
  2013-06-09  8:07   ` Igor Grinberg
@ 2013-06-09 21:37   ` Michael Trimarchi
  2013-06-10  8:54     ` Lubomir Popov
  1 sibling, 1 reply; 324+ messages in thread
From: Michael Trimarchi @ 2013-06-09 21:37 UTC (permalink / raw)
  To: u-boot

Hi

On 06/08/2013 10:43 PM, Lubomir Popov wrote:
> Hi Tom, Michael,
> 
>> Hello,
>>
>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>>
>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>>
> 
> [snip]
> 
>> Michael Trimarchi (1):
>>       usb: omap: ulpi: fix ulpi transceiver access
> 
> [snip]
> 
>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
> 
> [snip]
> 
> I just made a clean clone of u-boot-ti/master, manually applied the
> changes to the ehci files, added my board files and made a build.
> Everything seems to work fine, but I see an error message regarding
> ULPI reset that was not present before, and obviously it is due to
> Michael's changes:
> 
> SOM5_EVB # usb start
> (Re)start USB...
> USB0:   ULPI: ulpi_reset: failed writing reset bit

Let me understand. The patch is wrong because you have a problem now.
The old code was not sending any write command so any ulpi_reset and the
test condition was wrong.

> USB EHCI 1.00
> scanning bus 0 for devices... 6 USB Device(s) found
>        scanning usb for storage devices... 3 Storage Device(s) found
>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
> SOM5_EVB # usb tree
> USB device tree:
>   1  Hub (480 Mb/s, 0mA)
>   |  u-boot EHCI Host Controller
>   |
>   +-2  Mass Storage (480 Mb/s, 200mA)
>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
>   |
>   +-3  Hub (480 Mb/s, 2mA)
>   | |
>   | +-4  Mass Storage (480 Mb/s, 96mA)
>   | |    Generic Ultra Fast Media Reader 000000264001
>   | |
>   | +-5  Mass Storage (480 Mb/s, 100mA)
>   |      USB Flash Drive 531C43B21928F11F
>   |
>   +-6  Vendor specific (480 Mb/s, 500mA)
> 
> SOM5_EVB #
> 
> Otherwise everything is OK, the device on the ULPI port is working
> (it is #2 above). It is now late and I shall investigate in detail
> tomorrow, this is just an early warning ;)

Can you test the attach patch? Yes I know it is not inline but I will
send inline tomorrow and I have done changing the old one. 
I was thinking port number was starting from 1 but I have done a quick check
on soft_reset of omap and it is starting from 0

Michael

> 
> Best regards,
> Lubo
> 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-OMAP-ULPI-This-patch-fix-the-omap-access-to-the.patch
Type: text/x-patch
Size: 3217 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130609/a7921114/attachment.bin>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-08 20:43 ` Lubomir Popov
@ 2013-06-09  8:07   ` Igor Grinberg
  2013-06-09 21:37   ` Michael Trimarchi
  1 sibling, 0 replies; 324+ messages in thread
From: Igor Grinberg @ 2013-06-09  8:07 UTC (permalink / raw)
  To: u-boot

Hi Lubomir,

On 06/08/13 23:43, Lubomir Popov wrote:
> Hi Tom, Michael,
> 
>> Hello,
>>
>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>>
>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>>
> 
> [snip]
> 
>> Michael Trimarchi (1):
>>       usb: omap: ulpi: fix ulpi transceiver access
> 
> [snip]
> 
>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
> 
> [snip]
> 
> I just made a clean clone of u-boot-ti/master, manually applied the
> changes to the ehci files, added my board files and made a build.
> Everything seems to work fine, but I see an error message regarding
> ULPI reset that was not present before, and obviously it is due to
> Michael's changes:

Yes indeed, those are due to Michael's patch.
Michael's patch aligns the code with the TRM and seems to reveal
an OMAP USB bug might an erratum.

> 
> SOM5_EVB # usb start
> (Re)start USB...
> USB0:   ULPI: ulpi_reset: failed writing reset bit
> USB EHCI 1.00
> scanning bus 0 for devices... 6 USB Device(s) found
>        scanning usb for storage devices... 3 Storage Device(s) found
>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
> SOM5_EVB # usb tree
> USB device tree:
>   1  Hub (480 Mb/s, 0mA)
>   |  u-boot EHCI Host Controller
>   |
>   +-2  Mass Storage (480 Mb/s, 200mA)
>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
>   |
>   +-3  Hub (480 Mb/s, 2mA)
>   | |
>   | +-4  Mass Storage (480 Mb/s, 96mA)
>   | |    Generic Ultra Fast Media Reader 000000264001
>   | |
>   | +-5  Mass Storage (480 Mb/s, 100mA)
>   |      USB Flash Drive 531C43B21928F11F
>   |
>   +-6  Vendor specific (480 Mb/s, 500mA)
> 
> SOM5_EVB #
> 
> Otherwise everything is OK, the device on the ULPI port is working
> (it is #2 above). It is now late and I shall investigate in detail
> tomorrow, this is just an early warning ;)
> 
> Best regards,
> Lubo
> 
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 

-- 
Regards,
Igor.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-07 19:19 Tom Rini
  2013-06-08 20:43 ` Lubomir Popov
@ 2013-06-08 21:57 ` Albert ARIBAUD
  2013-06-10 12:44   ` Tom Rini
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-06-08 21:57 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 7 Jun 2013 15:19:21 -0400, Tom Rini <trini@ti.com> wrote:

> Tom Rini (4):

>       arm: Remove OMAP2420H4 and all omap24xx support

This one removes not only 2420h4 but also tnetv107x_evm. Is that normal?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-06-07 19:19 Tom Rini
@ 2013-06-08 20:43 ` Lubomir Popov
  2013-06-09  8:07   ` Igor Grinberg
  2013-06-09 21:37   ` Michael Trimarchi
  2013-06-08 21:57 ` Albert ARIBAUD
  1 sibling, 2 replies; 324+ messages in thread
From: Lubomir Popov @ 2013-06-08 20:43 UTC (permalink / raw)
  To: u-boot

Hi Tom, Michael,

> Hello,
>
> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>
>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>

[snip]

> Michael Trimarchi (1):
>       usb: omap: ulpi: fix ulpi transceiver access

[snip]

>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-

[snip]

I just made a clean clone of u-boot-ti/master, manually applied the
changes to the ehci files, added my board files and made a build.
Everything seems to work fine, but I see an error message regarding
ULPI reset that was not present before, and obviously it is due to
Michael's changes:

SOM5_EVB # usb start
(Re)start USB...
USB0:   ULPI: ulpi_reset: failed writing reset bit
USB EHCI 1.00
scanning bus 0 for devices... 6 USB Device(s) found
       scanning usb for storage devices... 3 Storage Device(s) found
       scanning usb for ethernet devices... 1 Ethernet Device(s) found
SOM5_EVB # usb tree
USB device tree:
  1  Hub (480 Mb/s, 0mA)
  |  u-boot EHCI Host Controller
  |
  +-2  Mass Storage (480 Mb/s, 200mA)
  |    FSC                  MEMORYBIRD USB2      C157040817120315AA
  |
  +-3  Hub (480 Mb/s, 2mA)
  | |
  | +-4  Mass Storage (480 Mb/s, 96mA)
  | |    Generic Ultra Fast Media Reader 000000264001
  | |
  | +-5  Mass Storage (480 Mb/s, 100mA)
  |      USB Flash Drive 531C43B21928F11F
  |
  +-6  Vendor specific (480 Mb/s, 500mA)

SOM5_EVB #

Otherwise everything is OK, the device on the ULPI port is working
(it is #2 above). It is now late and I shall investigate in detail
tomorrow, this is just an early warning ;)

Best regards,
Lubo

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-06-07 19:19 Tom Rini
  2013-06-08 20:43 ` Lubomir Popov
  2013-06-08 21:57 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2013-06-07 19:19 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:

  arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)

are available in the git repository at:

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

for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:

  arm: da830: moved pinmux configurations to the arch tree (2013-06-07 14:26:08 -0400)

----------------------------------------------------------------
Andrii Tseglytskyi (2):
      OMAP3+: introduce generic ABB support
      OMAP5: add ABB setup for MPU voltage domain

Balaji T K (1):
      mmc: omap_hsmmc: Update pbias programming

Joel A Fernandes (1):
      am33xx: Board: Make CPSW section of ethernet initialization depend on CPSW driver

Lokesh Vutla (10):
      ARM: OMAP4+: Cleanup header files
      ARM: OMAP2+: Rename asm/arch/clocks.h asm/arch/clock.h
      ARM: OMAP4+: pmic: Make generic bus init and write functions
      ARM: DRA7xx: Add control id code for DRA7xx
      ARM: DRA7xx: power Add support for tps659038 PMIC
      ARM: DRA7xx: clocks: Fixing i2c_init for PMIC
      ARM: DRA7xx: Do not enable srcomp for DRA7xx Soc's
      ARM: DRA7xx: Update pinmux data
      ARM: DRA7xx: clocks: Update PLL values
      ARM: DRA7: Add Maintainer

Lubomir Popov (4):
      OMAP5: Fix bug in omap5_es1_prcm struct
      ARM: OMAP5: Power: Add more functionality to Palmas driver
      ARM: OMAP: I2C: New read, write and probe functions
      OMAP5: Enable access to auxclk registers

Michael Trimarchi (1):
      usb: omap: ulpi: fix ulpi transceiver access

Nishanth Menon (1):
      ARM: OMAP5: DRA7xx: support class 0 optimized voltages

Sricharan R (5):
      ARM: OMAP5: clocks: Do not enable sgx clocks
      ARM: DRA7xx: Change the Debug UART to UART1
      ARM: DRA7xx: Correct the SYS_CLK to 20MHZ
      ARM: DRA7xx: Correct SRAM END address
      ARM: DRA7xx: EMIF: Change settings required for EVM board

Tom Rini (4):
      omap-common/hwinit-common.c: Mark omap_rev_string as static
      am33xx: Correct NON_SECURE_SRAM_START/END
      am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c
      arm: Remove OMAP2420H4 and all omap24xx support

Vishwanathrao Badarkhe, Manish (2):
      da830: add MMC support
      arm: da830: moved pinmux configurations to the arch tree

 MAINTAINERS                                        |    8 +-
 arch/arm/cpu/arm1136/start.S                       |   18 -
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    1 +
 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c      |  151 ++++
 arch/arm/cpu/armv7/omap-common/Makefile            |    1 +
 arch/arm/cpu/armv7/omap-common/abb.c               |  137 ++++
 arch/arm/cpu/armv7/omap-common/boot-common.c       |   39 +
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |  101 ++-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |   28 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |   40 +-
 arch/arm/cpu/armv7/omap-common/timer.c             |    1 +
 arch/arm/cpu/armv7/omap-common/vc.c                |   14 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |    2 +-
 arch/arm/cpu/armv7/omap4/hw_data.c                 |   13 +-
 arch/arm/cpu/armv7/omap4/prcm-regs.c               |    3 +
 arch/arm/cpu/armv7/omap5/Makefile                  |    1 +
 arch/arm/cpu/armv7/omap5/abb.c                     |   67 ++
 arch/arm/cpu/armv7/omap5/hw_data.c                 |  167 ++--
 arch/arm/cpu/armv7/omap5/hwinit.c                  |   24 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c               |   20 +
 arch/arm/cpu/armv7/omap5/sdram.c                   |  170 +++-
 arch/arm/include/asm/arch-am33xx/omap.h            |    4 +-
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    1 +
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |   15 +-
 arch/arm/include/asm/arch-omap24xx/bits.h          |   48 --
 arch/arm/include/asm/arch-omap24xx/clocks.h        |  112 ---
 arch/arm/include/asm/arch-omap24xx/i2c.h           |   68 --
 arch/arm/include/asm/arch-omap24xx/mem.h           |  156 ----
 arch/arm/include/asm/arch-omap24xx/mux.h           |  176 ----
 arch/arm/include/asm/arch-omap24xx/omap2420.h      |  236 ------
 arch/arm/include/asm/arch-omap24xx/sys_info.h      |   82 --
 arch/arm/include/asm/arch-omap24xx/sys_proto.h     |   54 --
 .../include/asm/arch-omap3/{clocks.h => clock.h}   |    0
 arch/arm/include/asm/arch-omap3/omap3.h            |    7 +
 .../include/asm/arch-omap4/{clocks.h => clock.h}   |   34 +-
 arch/arm/include/asm/arch-omap4/cpu.h              |   12 -
 arch/arm/include/asm/arch-omap4/omap.h             |   22 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    6 +-
 .../include/asm/arch-omap5/{clocks.h => clock.h}   |   91 +-
 arch/arm/include/asm/arch-omap5/cpu.h              |   12 -
 arch/arm/include/asm/arch-omap5/mux_dra7xx.h       |    7 +-
 arch/arm/include/asm/arch-omap5/omap.h             |   67 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    8 +-
 arch/arm/include/asm/emif.h                        |   12 +-
 arch/arm/include/asm/omap_common.h                 |   59 +-
 arch/arm/lib/cache.c                               |    2 +-
 board/davinci/da8xxevm/da830evm.c                  |  155 +---
 board/htkw/mcx/mcx.c                               |    2 +-
 board/isee/igep0033/board.c                        |    9 +
 board/phytec/pcm051/board.c                        |    9 +
 board/teejet/mt_ventoux/mt_ventoux.c               |    2 +-
 board/ti/am335x/board.c                            |   11 +
 board/ti/dra7xx/mux_data.h                         |   38 +-
 board/ti/omap2420h4/Makefile                       |   45 -
 board/ti/omap2420h4/config.mk                      |   28 -
 board/ti/omap2420h4/lowlevel_init.S                |  185 -----
 board/ti/omap2420h4/mem.c                          |  362 --------
 board/ti/omap2420h4/omap2420h4.c                   |  867 --------------------
 board/ti/omap2420h4/sys_info.c                     |  387 ---------
 board/ti/omap5_uevm/evm.c                          |   12 +-
 board/ti/panda/panda.c                             |   22 +-
 board/ti/sdp4430/sdp.c                             |   16 +-
 board/ti/ti814x/evm.c                              |    9 +
 boards.cfg                                         |    2 -
 doc/README.scrapyard                               |    1 +
 drivers/i2c/omap24xx_i2c.c                         |  490 ++++++-----
 drivers/mmc/omap_hsmmc.c                           |   20 +-
 drivers/power/palmas.c                             |  133 ++-
 drivers/serial/ns16550.c                           |    5 -
 drivers/serial/serial_ns16550.c                    |    5 -
 drivers/usb/musb/omap3.c                           |    4 +-
 drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
 include/configs/am335x_evm.h                       |   10 +-
 include/configs/da830evm.h                         |   25 +-
 include/configs/dra7xx_evm.h                       |    8 +-
 include/configs/igep0033.h                         |   10 +-
 include/configs/omap2420h4.h                       |  264 ------
 include/configs/omap4_common.h                     |    4 -
 include/configs/omap5_common.h                     |   12 +-
 include/configs/omap5_uevm.h                       |    7 +-
 include/configs/pcm051.h                           |   10 +-
 include/palmas.h                                   |   90 +-
 82 files changed, 1792 insertions(+), 3804 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/abb.c
 create mode 100644 arch/arm/cpu/armv7/omap5/abb.c
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/bits.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/clocks.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/i2c.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/mem.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/mux.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/omap2420.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_info.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/sys_proto.h
 rename arch/arm/include/asm/arch-omap3/{clocks.h => clock.h} (100%)
 rename arch/arm/include/asm/arch-omap4/{clocks.h => clock.h} (90%)
 rename arch/arm/include/asm/arch-omap5/{clocks.h => clock.h} (73%)
 delete mode 100644 board/ti/omap2420h4/Makefile
 delete mode 100644 board/ti/omap2420h4/config.mk
 delete mode 100644 board/ti/omap2420h4/lowlevel_init.S
 delete mode 100644 board/ti/omap2420h4/mem.c
 delete mode 100644 board/ti/omap2420h4/omap2420h4.c
 delete mode 100644 board/ti/omap2420h4/sys_info.c
 delete mode 100644 include/configs/omap2420h4.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/20130607/d0c69bd9/attachment.pgp>

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

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

Hi Tom,

On Wed, 5 Jun 2013 08:54:18 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
> 
>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674:
> 
>   am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c (2013-06-05 08:46:49 -0400)
> 
> ----------------------------------------------------------------
> Tom Rini (3):
>       omap-common/hwinit-common.c: Mark omap_rev_string as static
>       am33xx: Correct NON_SECURE_SRAM_START/END
>       am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c
> 
>  arch/arm/cpu/armv7/omap-common/boot-common.c   |   39 ++++++++++++++++++++++++
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c |   38 +----------------------
>  arch/arm/include/asm/arch-am33xx/omap.h        |    4 +--
>  arch/arm/include/asm/arch-am33xx/sys_proto.h   |    1 +
>  arch/arm/include/asm/arch-omap4/sys_proto.h    |    1 +
>  arch/arm/include/asm/arch-omap5/sys_proto.h    |    1 +
>  board/isee/igep0033/board.c                    |    9 ++++++
>  board/phytec/pcm051/board.c                    |    9 ++++++
>  board/ti/am335x/board.c                        |    9 ++++++
>  board/ti/ti814x/evm.c                          |    9 ++++++
>  include/configs/am335x_evm.h                   |   10 ++++--
>  include/configs/igep0033.h                     |   10 ++++--
>  include/configs/pcm051.h                       |   10 ++++--
>  13 files changed, 105 insertions(+), 45 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

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

Hello,

The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:

  arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)

are available in the git repository at:

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

for you to fetch changes up to 4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674:

  am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c (2013-06-05 08:46:49 -0400)

----------------------------------------------------------------
Tom Rini (3):
      omap-common/hwinit-common.c: Mark omap_rev_string as static
      am33xx: Correct NON_SECURE_SRAM_START/END
      am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c

 arch/arm/cpu/armv7/omap-common/boot-common.c   |   39 ++++++++++++++++++++++++
 arch/arm/cpu/armv7/omap-common/hwinit-common.c |   38 +----------------------
 arch/arm/include/asm/arch-am33xx/omap.h        |    4 +--
 arch/arm/include/asm/arch-am33xx/sys_proto.h   |    1 +
 arch/arm/include/asm/arch-omap4/sys_proto.h    |    1 +
 arch/arm/include/asm/arch-omap5/sys_proto.h    |    1 +
 board/isee/igep0033/board.c                    |    9 ++++++
 board/phytec/pcm051/board.c                    |    9 ++++++
 board/ti/am335x/board.c                        |    9 ++++++
 board/ti/ti814x/evm.c                          |    9 ++++++
 include/configs/am335x_evm.h                   |   10 ++++--
 include/configs/igep0033.h                     |   10 ++++--
 include/configs/pcm051.h                       |   10 ++++--
 13 files changed, 105 insertions(+), 45 deletions(-)

-- 
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/20130605/ec7bf11b/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-05-10 13:16 Tom Rini
@ 2013-05-11 20:54 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-05-11 20:54 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 10 May 2013 09:16:18 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 8934f7846501070a5b01c1fab5db27559e9d70d1:
> 
>   i2c: zynq: Add support for Xilinx Zynq (2013-04-30 11:39:28 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 47c6ea076eb51e624f8744d93db5cd70b97dc25d:
> 
>   ARM: OMAP: Add arch_cpu_init function (2013-05-10 08:25:56 -0400)
> 
> ----------------------------------------------------------------
> Dan Murphy (2):
>       ARM:Panda:Fix device tree loading for the panda-es
>       ARM: Panda: Add flag to allow runtime enviroment varibale mods
> 
> Enric Balletbo i Serra (2):
>       Add DDR3 support for IGEP COM AQUILA/CYGNUS.
>       ARM: Add support for IGEP COM AQUILA/CYGNUS
> 
> Eric Benard (2):
>       da850: provide davinci_enable_uart0
>       davinci: handle CONFIG_SYS_CLE_MASK and CONFIG_SYS_ALE_MASK
> 
> Igor Grinberg (3):
>       cm-t35: move cm-t35 to live in compulab directory
>       MAINTAINERS: fix the cm-t35 board name
>       cm-t35: update config file
> 
> Lokesh Vutla (2):
>       arm: omap: emif: Fix DDR3 init after warm reset
>       ARM: OMAP5: Fix warm reset with USB cable connected
> 
> Lubomir Popov (4):
>       OMAP5: I2C: Enable i2c5 clocks
>       OMAP5: I2C: Add I2C4 and I2C5 bases
>       OMAP5: I2C: Set I2C_BUS_MAX to 5 to enable I2C4 and I2C5
>       OMAP5: USB: hsusbtll_clkctrl has to be in hw_auto for USB to work
> 
> Mark Jackson (1):
>       Remove duplicate / unused #defines on AM335x boards
> 
> Matt Porter (4):
>       am33xx: add pll and clock support for TI814x CPSW
>       cpsw: add support for TI814x slave_regs differences
>       phy: add support for ET1011C phys
>       ti814x_evm: enable CPSW support
> 
> Nishanth Menon (10):
>       twl4030: make twl4030_i2c_write_u8 prototype consistent
>       twl4030: make twl4030_i2c_read_u8 prototype consistent
>       twl6030: twl6030_i2c_[read|write]_u8 prototype consistent
>       twl6030: move twl6030 register access functions to common header file
>       twl6030: add header guard
>       twl6035: rename to palmas
>       palmas: rename init_settings to an generic palmas init
>       palmas: rename twl6035_mmc1_poweron_ldo with an palmas generic function
>       palmas: use palmas_i2c_[read|write]_u8
>       palmas: add header guard
> 
> SRICHARAN R (5):
>       ARM: OMAP: Make omap_boot_parameters common across socs
>       ARM: OMAP4/5: Make OMAPx_SRAM_SCRATCH_ defines common
>       ARM: OMAP: Correct save_boot_params and replace with 'C' function
>       ARM: OMAP: Cleanup boot parameters usage
>       ARM: OMAP: Add arch_cpu_init function
> 
> Tom Rini (3):
>       beagleboard: Update comment in get_board_rev()
>       omap5_common: Add optargs variable for kernel command line args
>       am33xx: Fix warning with CONFIG_DISPLAY_CPUINFO
> 
>  MAINTAINERS                                        |    3 +-
>  README                                             |    4 +
>  arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    8 +
>  arch/arm/cpu/armv7/am33xx/clock_ti814x.c           |  103 ++++++-
>  arch/arm/cpu/armv7/am33xx/sys_info.c               |    6 +-
>  arch/arm/cpu/armv7/lowlevel_init.S                 |    8 +-
>  arch/arm/cpu/armv7/omap-common/boot-common.c       |   31 +--
>  arch/arm/cpu/armv7/omap-common/clocks-common.c     |    1 +
>  arch/arm/cpu/armv7/omap-common/emif-common.c       |   11 +-
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c     |   61 ++++-
>  arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |   50 +---
>  arch/arm/cpu/armv7/omap-common/reset.c             |    4 +
>  arch/arm/cpu/armv7/omap4/emif.c                    |    4 +-
>  arch/arm/cpu/armv7/omap4/hw_data.c                 |    2 +-
>  arch/arm/cpu/armv7/omap4/hwinit.c                  |    3 +-
>  arch/arm/cpu/armv7/omap5/emif.c                    |    4 +-
>  arch/arm/cpu/armv7/omap5/hw_data.c                 |    5 +-
>  arch/arm/cpu/armv7/omap5/hwinit.c                  |   22 +-
>  arch/arm/cpu/armv7/omap5/prcm-regs.c               |    2 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   17 ++
>  arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |    1 +
>  arch/arm/include/asm/arch-am33xx/omap.h            |   25 --
>  arch/arm/include/asm/arch-davinci/hardware.h       |    2 +
>  arch/arm/include/asm/arch-davinci/nand_defs.h      |    9 +
>  arch/arm/include/asm/arch-omap4/omap.h             |   36 ---
>  arch/arm/include/asm/arch-omap4/sys_proto.h        |   12 +-
>  arch/arm/include/asm/arch-omap5/clocks.h           |   10 +
>  arch/arm/include/asm/arch-omap5/cpu.h              |    2 +
>  arch/arm/include/asm/arch-omap5/i2c.h              |    2 +-
>  arch/arm/include/asm/arch-omap5/omap.h             |   36 ---
>  arch/arm/include/asm/arch-omap5/sys_proto.h        |   22 +-
>  arch/arm/include/asm/global_data.h                 |    8 +
>  arch/arm/include/asm/omap_boot.h                   |   50 ++++
>  arch/arm/include/asm/omap_common.h                 |   20 ++
>  board/{ => compulab}/cm_t35/Makefile               |   12 +-
>  board/{ => compulab}/cm_t35/cm_t35.c               |   26 +-
>  board/{ => compulab}/cm_t35/display.c              |    2 +-
>  board/{ => compulab}/cm_t35/eeprom.c               |    0
>  board/{ => compulab}/cm_t35/eeprom.h               |    0
>  board/{ => compulab}/cm_t35/leds.c                 |    3 +-
>  board/isee/igep0033/Makefile                       |   46 ++++
>  board/isee/igep0033/board.c                        |  232 ++++++++++++++++
>  board/isee/igep0033/board.h                        |   27 ++
>  board/isee/igep0033/mux.c                          |   89 ++++++
>  board/nokia/rx51/rx51.c                            |   52 ++--
>  board/pandora/pandora.c                            |    3 +-
>  board/ti/beagle/beagle.c                           |    5 +-
>  board/ti/dra7xx/evm.c                              |    2 +-
>  board/ti/omap5_uevm/evm.c                          |    6 +-
>  board/ti/panda/panda.c                             |    6 +
>  board/ti/ti814x/evm.c                              |   75 +++++
>  board/ti/ti814x/evm.h                              |    1 +
>  board/ti/ti814x/mux.c                              |   35 +++
>  boards.cfg                                         |    3 +-
>  common/spl/spl.c                                   |   10 +-
>  doc/README.omap-reset-time                         |   20 ++
>  drivers/misc/twl4030_led.c                         |    4 +-
>  drivers/mmc/omap_hsmmc.c                           |    8 +-
>  drivers/net/cpsw.c                                 |    6 +
>  drivers/net/phy/Makefile                           |    1 +
>  drivers/net/phy/et1011c.c                          |  110 ++++++++
>  drivers/net/phy/phy.c                              |    3 +
>  drivers/power/Makefile                             |    2 +-
>  drivers/power/{twl6035.c => palmas.c}              |   34 +--
>  drivers/power/twl4030.c                            |   16 +-
>  drivers/power/twl6030.c                            |   75 +++--
>  drivers/usb/phy/twl4030.c                          |   48 ++--
>  include/configs/am335x_evm.h                       |   14 +-
>  include/configs/cm_t35.h                           |   18 +-
>  include/configs/da830evm.h                         |    4 +-
>  include/configs/da850evm.h                         |    4 +-
>  include/configs/enbw_cmc.h                         |    4 +-
>  include/configs/igep0033.h                         |  288 ++++++++++++++++++++
>  include/configs/omap4_common.h                     |    8 +-
>  include/configs/omap4_panda.h                      |    2 +
>  include/configs/omap5_common.h                     |    5 +
>  include/configs/omap5_uevm.h                       |    3 +-
>  include/configs/pcm051.h                           |    8 +-
>  include/configs/ti814x_evm.h                       |   25 ++
>  include/configs/tnetv107x_evm.h                    |    4 +-
>  include/{twl6035.h => palmas.h}                    |   28 +-
>  include/phy.h                                      |    1 +
>  include/spl.h                                      |    1 -
>  include/twl4030.h                                  |    4 +-
>  include/twl6030.h                                  |   16 ++
>  85 files changed, 1561 insertions(+), 422 deletions(-)
>  create mode 100644 arch/arm/include/asm/omap_boot.h
>  rename board/{ => compulab}/cm_t35/Makefile (82%)
>  rename board/{ => compulab}/cm_t35/cm_t35.c (96%)
>  rename board/{ => compulab}/cm_t35/display.c (99%)
>  rename board/{ => compulab}/cm_t35/eeprom.c (100%)
>  rename board/{ => compulab}/cm_t35/eeprom.h (100%)
>  rename board/{ => compulab}/cm_t35/leds.c (95%)
>  create mode 100644 board/isee/igep0033/Makefile
>  create mode 100644 board/isee/igep0033/board.c
>  create mode 100644 board/isee/igep0033/board.h
>  create mode 100644 board/isee/igep0033/mux.c
>  create mode 100644 doc/README.omap-reset-time
>  create mode 100644 drivers/net/phy/et1011c.c
>  rename drivers/power/{twl6035.c => palmas.c} (61%)
>  create mode 100644 include/configs/igep0033.h
>  rename include/{twl6035.h => palmas.h} (68%)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-05-10 13:16 Tom Rini
  2013-05-11 20:54 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-05-10 13:16 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 8934f7846501070a5b01c1fab5db27559e9d70d1:

  i2c: zynq: Add support for Xilinx Zynq (2013-04-30 11:39:28 +0200)

are available in the git repository at:

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

for you to fetch changes up to 47c6ea076eb51e624f8744d93db5cd70b97dc25d:

  ARM: OMAP: Add arch_cpu_init function (2013-05-10 08:25:56 -0400)

----------------------------------------------------------------
Dan Murphy (2):
      ARM:Panda:Fix device tree loading for the panda-es
      ARM: Panda: Add flag to allow runtime enviroment varibale mods

Enric Balletbo i Serra (2):
      Add DDR3 support for IGEP COM AQUILA/CYGNUS.
      ARM: Add support for IGEP COM AQUILA/CYGNUS

Eric Benard (2):
      da850: provide davinci_enable_uart0
      davinci: handle CONFIG_SYS_CLE_MASK and CONFIG_SYS_ALE_MASK

Igor Grinberg (3):
      cm-t35: move cm-t35 to live in compulab directory
      MAINTAINERS: fix the cm-t35 board name
      cm-t35: update config file

Lokesh Vutla (2):
      arm: omap: emif: Fix DDR3 init after warm reset
      ARM: OMAP5: Fix warm reset with USB cable connected

Lubomir Popov (4):
      OMAP5: I2C: Enable i2c5 clocks
      OMAP5: I2C: Add I2C4 and I2C5 bases
      OMAP5: I2C: Set I2C_BUS_MAX to 5 to enable I2C4 and I2C5
      OMAP5: USB: hsusbtll_clkctrl has to be in hw_auto for USB to work

Mark Jackson (1):
      Remove duplicate / unused #defines on AM335x boards

Matt Porter (4):
      am33xx: add pll and clock support for TI814x CPSW
      cpsw: add support for TI814x slave_regs differences
      phy: add support for ET1011C phys
      ti814x_evm: enable CPSW support

Nishanth Menon (10):
      twl4030: make twl4030_i2c_write_u8 prototype consistent
      twl4030: make twl4030_i2c_read_u8 prototype consistent
      twl6030: twl6030_i2c_[read|write]_u8 prototype consistent
      twl6030: move twl6030 register access functions to common header file
      twl6030: add header guard
      twl6035: rename to palmas
      palmas: rename init_settings to an generic palmas init
      palmas: rename twl6035_mmc1_poweron_ldo with an palmas generic function
      palmas: use palmas_i2c_[read|write]_u8
      palmas: add header guard

SRICHARAN R (5):
      ARM: OMAP: Make omap_boot_parameters common across socs
      ARM: OMAP4/5: Make OMAPx_SRAM_SCRATCH_ defines common
      ARM: OMAP: Correct save_boot_params and replace with 'C' function
      ARM: OMAP: Cleanup boot parameters usage
      ARM: OMAP: Add arch_cpu_init function

Tom Rini (3):
      beagleboard: Update comment in get_board_rev()
      omap5_common: Add optargs variable for kernel command line args
      am33xx: Fix warning with CONFIG_DISPLAY_CPUINFO

 MAINTAINERS                                        |    3 +-
 README                                             |    4 +
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |    8 +
 arch/arm/cpu/armv7/am33xx/clock_ti814x.c           |  103 ++++++-
 arch/arm/cpu/armv7/am33xx/sys_info.c               |    6 +-
 arch/arm/cpu/armv7/lowlevel_init.S                 |    8 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c       |   31 +--
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |    1 +
 arch/arm/cpu/armv7/omap-common/emif-common.c       |   11 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |   61 ++++-
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |   50 +---
 arch/arm/cpu/armv7/omap-common/reset.c             |    4 +
 arch/arm/cpu/armv7/omap4/emif.c                    |    4 +-
 arch/arm/cpu/armv7/omap4/hw_data.c                 |    2 +-
 arch/arm/cpu/armv7/omap4/hwinit.c                  |    3 +-
 arch/arm/cpu/armv7/omap5/emif.c                    |    4 +-
 arch/arm/cpu/armv7/omap5/hw_data.c                 |    5 +-
 arch/arm/cpu/armv7/omap5/hwinit.c                  |   22 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c               |    2 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   17 ++
 arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |    1 +
 arch/arm/include/asm/arch-am33xx/omap.h            |   25 --
 arch/arm/include/asm/arch-davinci/hardware.h       |    2 +
 arch/arm/include/asm/arch-davinci/nand_defs.h      |    9 +
 arch/arm/include/asm/arch-omap4/omap.h             |   36 ---
 arch/arm/include/asm/arch-omap4/sys_proto.h        |   12 +-
 arch/arm/include/asm/arch-omap5/clocks.h           |   10 +
 arch/arm/include/asm/arch-omap5/cpu.h              |    2 +
 arch/arm/include/asm/arch-omap5/i2c.h              |    2 +-
 arch/arm/include/asm/arch-omap5/omap.h             |   36 ---
 arch/arm/include/asm/arch-omap5/sys_proto.h        |   22 +-
 arch/arm/include/asm/global_data.h                 |    8 +
 arch/arm/include/asm/omap_boot.h                   |   50 ++++
 arch/arm/include/asm/omap_common.h                 |   20 ++
 board/{ => compulab}/cm_t35/Makefile               |   12 +-
 board/{ => compulab}/cm_t35/cm_t35.c               |   26 +-
 board/{ => compulab}/cm_t35/display.c              |    2 +-
 board/{ => compulab}/cm_t35/eeprom.c               |    0
 board/{ => compulab}/cm_t35/eeprom.h               |    0
 board/{ => compulab}/cm_t35/leds.c                 |    3 +-
 board/isee/igep0033/Makefile                       |   46 ++++
 board/isee/igep0033/board.c                        |  232 ++++++++++++++++
 board/isee/igep0033/board.h                        |   27 ++
 board/isee/igep0033/mux.c                          |   89 ++++++
 board/nokia/rx51/rx51.c                            |   52 ++--
 board/pandora/pandora.c                            |    3 +-
 board/ti/beagle/beagle.c                           |    5 +-
 board/ti/dra7xx/evm.c                              |    2 +-
 board/ti/omap5_uevm/evm.c                          |    6 +-
 board/ti/panda/panda.c                             |    6 +
 board/ti/ti814x/evm.c                              |   75 +++++
 board/ti/ti814x/evm.h                              |    1 +
 board/ti/ti814x/mux.c                              |   35 +++
 boards.cfg                                         |    3 +-
 common/spl/spl.c                                   |   10 +-
 doc/README.omap-reset-time                         |   20 ++
 drivers/misc/twl4030_led.c                         |    4 +-
 drivers/mmc/omap_hsmmc.c                           |    8 +-
 drivers/net/cpsw.c                                 |    6 +
 drivers/net/phy/Makefile                           |    1 +
 drivers/net/phy/et1011c.c                          |  110 ++++++++
 drivers/net/phy/phy.c                              |    3 +
 drivers/power/Makefile                             |    2 +-
 drivers/power/{twl6035.c => palmas.c}              |   34 +--
 drivers/power/twl4030.c                            |   16 +-
 drivers/power/twl6030.c                            |   75 +++--
 drivers/usb/phy/twl4030.c                          |   48 ++--
 include/configs/am335x_evm.h                       |   14 +-
 include/configs/cm_t35.h                           |   18 +-
 include/configs/da830evm.h                         |    4 +-
 include/configs/da850evm.h                         |    4 +-
 include/configs/enbw_cmc.h                         |    4 +-
 include/configs/igep0033.h                         |  288 ++++++++++++++++++++
 include/configs/omap4_common.h                     |    8 +-
 include/configs/omap4_panda.h                      |    2 +
 include/configs/omap5_common.h                     |    5 +
 include/configs/omap5_uevm.h                       |    3 +-
 include/configs/pcm051.h                           |    8 +-
 include/configs/ti814x_evm.h                       |   25 ++
 include/configs/tnetv107x_evm.h                    |    4 +-
 include/{twl6035.h => palmas.h}                    |   28 +-
 include/phy.h                                      |    1 +
 include/spl.h                                      |    1 -
 include/twl4030.h                                  |    4 +-
 include/twl6030.h                                  |   16 ++
 85 files changed, 1561 insertions(+), 422 deletions(-)
 create mode 100644 arch/arm/include/asm/omap_boot.h
 rename board/{ => compulab}/cm_t35/Makefile (82%)
 rename board/{ => compulab}/cm_t35/cm_t35.c (96%)
 rename board/{ => compulab}/cm_t35/display.c (99%)
 rename board/{ => compulab}/cm_t35/eeprom.c (100%)
 rename board/{ => compulab}/cm_t35/eeprom.h (100%)
 rename board/{ => compulab}/cm_t35/leds.c (95%)
 create mode 100644 board/isee/igep0033/Makefile
 create mode 100644 board/isee/igep0033/board.c
 create mode 100644 board/isee/igep0033/board.h
 create mode 100644 board/isee/igep0033/mux.c
 create mode 100644 doc/README.omap-reset-time
 create mode 100644 drivers/net/phy/et1011c.c
 rename drivers/power/{twl6035.c => palmas.c} (61%)
 create mode 100644 include/configs/igep0033.h
 rename include/{twl6035.h => palmas.h} (68%)

-- 
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/20130510/9ec40377/attachment.pgp>

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

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

Hi Tom,

On Fri, 12 Apr 2013 16:47:07 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 90639feaa0d66a204f9d03a325ab14e2f97f6cbb:
> 
>   arm/km: add support for kmsuv31 board (2013-04-12 21:42:22 +0530)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 46afd3eff3e53e29613c489af0c128203bb3c5b4:
> 
>   omap5_common.h: Switch to ext4 (2013-04-12 15:29:23 -0400)
> 
> ----------------------------------------------------------------
> Tom Rini (2):
>       am335x: Really correct DDR timings on new BeagleBone part
>       omap5_common.h: Switch to ext4
> 
> man.huber at arcor.de (1):
>       omap3: Display MHz instead of mHz on the console
> 
>  arch/arm/cpu/armv7/omap3/sys_info.c         |    4 ++--
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h |   14 +++++++-------
>  include/configs/omap5_common.h              |    2 +-
>  3 files changed, 10 insertions(+), 10 deletions(-)
> 
> We have a real important fix (DDR timing, sigh), a pretty important fix
> (ext3 is bad for SD cards, use ext4) and a harmless print fixup since
> I'm in here.
> 

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

Amicalement,
-- 
Albert.

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

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

Hello,

The following changes since commit 90639feaa0d66a204f9d03a325ab14e2f97f6cbb:

  arm/km: add support for kmsuv31 board (2013-04-12 21:42:22 +0530)

are available in the git repository at:

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

for you to fetch changes up to 46afd3eff3e53e29613c489af0c128203bb3c5b4:

  omap5_common.h: Switch to ext4 (2013-04-12 15:29:23 -0400)

----------------------------------------------------------------
Tom Rini (2):
      am335x: Really correct DDR timings on new BeagleBone part
      omap5_common.h: Switch to ext4

man.huber at arcor.de (1):
      omap3: Display MHz instead of mHz on the console

 arch/arm/cpu/armv7/omap3/sys_info.c         |    4 ++--
 arch/arm/include/asm/arch-am33xx/ddr_defs.h |   14 +++++++-------
 include/configs/omap5_common.h              |    2 +-
 3 files changed, 10 insertions(+), 10 deletions(-)

We have a real important fix (DDR timing, sigh), a pretty important fix
(ext3 is bad for SD cards, use ext4) and a harmless print fixup since
I'm in here.

-- 
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/20130412/140f5f6c/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-04-10 20:07 Tom Rini
@ 2013-04-10 21:28 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-04-10 21:28 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Wed, 10 Apr 2013 16:07:57 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit dd2445ec1b839a5ca61ff8438a5b7aebb21b7986:
> 
>   omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to eef6da0326834cc90b9f3b2e80dec71ee8e39e9a:
> 
>   omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ (2013-04-10 16:03:02 -0400)
> 
> ----------------------------------------------------------------
> Jon Hunter (5):
>       omap5912-osk: Fix DRAM initialisation
>       omap5912-osk: Fix booting from NOR flash
>       omap5912-osk: Fix device initialisation
>       omap5912-osk: Increase flash partition for u-boot
>       omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ
> 
> Lubomir Popov (1):
>       OMAP4: Fix bug in omap4460_volts struct
> 
> Tom Rini (3):
>       am335x/ti814x: Correct MMC_BOOT_DEVICES_START/END
>       am335x: Update timings for the beaglebone again
>       omap5_uevm: Correct to 2MiB aligned partitions on eMMC
> 
>  arch/arm/cpu/arm926ejs/omap/timer.c         |   15 ++++++++-------
>  arch/arm/cpu/armv7/omap4/hw_data.c          |    8 ++++----
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h |   20 ++++++++++----------
>  arch/arm/include/asm/arch-am33xx/spl.h      |    5 +++++
>  board/ti/am335x/board.c                     |    2 +-
>  board/ti/omap5912osk/config.mk              |   12 ++++++------
>  board/ti/omap5912osk/lowlevel_init.S        |   20 ++++++++++++++++++++
>  board/ti/omap5912osk/omap5912osk.c          |   23 ++++++++++++++++-------
>  include/configs/omap5912osk.h               |   15 +++++++++------
>  include/configs/omap5_uevm.h                |    3 +--
>  10 files changed, 80 insertions(+), 43 deletions(-)
> 
> This is a bit bigger than I'd have liked (and a bit shorter timed too,
> frankly) but:
> - The timings for beaglebone have been getting stress tested elsewhere
>   for the past few days, just finally got the values today.
> - omap5_uevm isn't released and I'd really like to not start it out with
>   misaligned partitions, that would be bad for longevity.
> - omap5912osk is quite an old platform so these are bug fixes, strictly
>   speaking, to an existing board.
> - The MMC device number bit is a bugfix to a patch that was already
>   taken to u-boot-arm.
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-04-10 20:07 Tom Rini
  2013-04-10 21:28 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-04-10 20:07 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit dd2445ec1b839a5ca61ff8438a5b7aebb21b7986:

  omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400)

are available in the git repository at:

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

for you to fetch changes up to eef6da0326834cc90b9f3b2e80dec71ee8e39e9a:

  omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ (2013-04-10 16:03:02 -0400)

----------------------------------------------------------------
Jon Hunter (5):
      omap5912-osk: Fix DRAM initialisation
      omap5912-osk: Fix booting from NOR flash
      omap5912-osk: Fix device initialisation
      omap5912-osk: Increase flash partition for u-boot
      omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ

Lubomir Popov (1):
      OMAP4: Fix bug in omap4460_volts struct

Tom Rini (3):
      am335x/ti814x: Correct MMC_BOOT_DEVICES_START/END
      am335x: Update timings for the beaglebone again
      omap5_uevm: Correct to 2MiB aligned partitions on eMMC

 arch/arm/cpu/arm926ejs/omap/timer.c         |   15 ++++++++-------
 arch/arm/cpu/armv7/omap4/hw_data.c          |    8 ++++----
 arch/arm/include/asm/arch-am33xx/ddr_defs.h |   20 ++++++++++----------
 arch/arm/include/asm/arch-am33xx/spl.h      |    5 +++++
 board/ti/am335x/board.c                     |    2 +-
 board/ti/omap5912osk/config.mk              |   12 ++++++------
 board/ti/omap5912osk/lowlevel_init.S        |   20 ++++++++++++++++++++
 board/ti/omap5912osk/omap5912osk.c          |   23 ++++++++++++++++-------
 include/configs/omap5912osk.h               |   15 +++++++++------
 include/configs/omap5_uevm.h                |    3 +--
 10 files changed, 80 insertions(+), 43 deletions(-)

This is a bit bigger than I'd have liked (and a bit shorter timed too,
frankly) but:
- The timings for beaglebone have been getting stress tested elsewhere
  for the past few days, just finally got the values today.
- omap5_uevm isn't released and I'd really like to not start it out with
  misaligned partitions, that would be bad for longevity.
- omap5912osk is quite an old platform so these are bug fixes, strictly
  speaking, to an existing board.
- The MMC device number bit is a bugfix to a patch that was already
  taken to u-boot-arm.

-- 
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/20130410/701124a0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-04-08 16:33 Tom Rini
@ 2013-04-09  5:47 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-04-09  5:47 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 8 Apr 2013 12:33:36 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 8bf3c322856f42d4db8acd7fa4f2a17898564064:
> 
>   logo: update to the new logo for ATMEL (2013-04-05 21:49:37 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to dd2445ec1b839a5ca61ff8438a5b7aebb21b7986:
> 
>   omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (6):
>       omap3/cpu.h: add BCH support
>       asm/omap_gpmc.h: consolidate common defines
>       omap3/omap_gpmc.h: add ooblayout for BCH8 as in kernel
>       omap_gpmc: change nandecc command
>       omap_gpmc: add support for hw assisted BCH8
>       tricorder: enable hw assisted BCH8 in SPL and u-boot
> 
> Bin Liu (2):
>       musb: am335x: disable bulk split-combine feature
>       musb: set MUSB speed based on CONFIG
> 
> Hunter, Jon (4):
>       omap2420-h4: Fix DRAM initialisation
>       omap2420-h4: Fix booting from NOR flash
>       omap2420-h4: Add device tree support
>       omap2420-h4: Fix get_timer() and CONFIG_SYS_HZ
> 
> Lars Poeschel (1):
>       pcm051: Enable DDR PHY dynamic power down bit
> 
> Lokesh Vutla (1):
>       arm: omap4: Fix SDRAM AUTO DETECTION
> 
> Lubomir Popov (1):
>       OMAP: Fix copy-paste bug that did not enable UART4 clock
> 
> Manfred Huber (1):
>       omap3_beagle: Flush UART3 xmit on enable if TEMT is broken
> 
> Nishanth Menon (1):
>       omap5: Allow use of a plain text env file
> 
> SRICHARAN R (4):
>       ARM: OMAP5: Rename omap5_evm to omap5_uevm
>       ARM: OMAP5: Set fdt_high to enable booting with Device tree
>       ARM: OMAP4/5: Change the default boot command to work with device tree
>       ARM: OMAP4/5: Make bootz as the default boot command
> 
> Tom Rini (5):
>       am335x: Enable MMC1 clock
>       doc/feature-removal-schedule.txt: Add CONFIG_SYS_(CLOCKS|PADS)_ENABLE_ALL
>       OMAP3/4/5/AM33xx: Correct logic for checking FAT or RAW MMC
>       omap5_uevm.h: Move uEVM-specific choices to omap5_uevm.h
>       omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE
> 
>  README                                         |    8 -
>  arch/arm/cpu/arm1136/omap24xx/timer.c          |    8 +-
>  arch/arm/cpu/armv7/am33xx/clock_am33xx.c       |    5 +
>  arch/arm/cpu/armv7/am33xx/elm.c                |    2 +-
>  arch/arm/cpu/armv7/omap-common/clocks-common.c |    4 +-
>  arch/arm/cpu/armv7/omap-common/emif-common.c   |   29 +-
>  arch/arm/cpu/armv7/omap-common/lowlevel_init.S |   10 +-
>  arch/arm/cpu/armv7/omap3/board.c               |   31 +-
>  arch/arm/cpu/armv7/omap4/emif.c                |    1 -
>  arch/arm/cpu/armv7/omap5/emif.c                |    1 -
>  arch/arm/include/asm/arch-am33xx/omap_gpmc.h   |   58 +---
>  arch/arm/include/asm/arch-am33xx/spl.h         |    3 +
>  arch/arm/include/asm/arch-am33xx/sys_proto.h   |    2 +-
>  arch/arm/include/asm/arch-omap24xx/omap2420.h  |    6 +-
>  arch/arm/include/asm/arch-omap3/cpu.h          |    6 +
>  arch/arm/include/asm/arch-omap3/omap_gpmc.h    |   68 +---
>  arch/arm/include/asm/arch-omap3/spl.h          |    3 +
>  arch/arm/include/asm/arch-omap3/sys_proto.h    |    2 +-
>  arch/arm/include/asm/arch-omap4/omap.h         |    1 -
>  arch/arm/include/asm/arch-omap4/spl.h          |    2 +
>  arch/arm/include/asm/arch-omap5/omap.h         |    1 -
>  arch/arm/include/asm/arch-omap5/spl.h          |    2 +
>  arch/arm/include/asm/emif.h                    |    1 -
>  arch/arm/include/asm/omap_gpmc.h               |   87 +++++
>  board/isee/igep00x0/igep00x0.c                 |    2 +-
>  board/overo/overo.c                            |    2 +-
>  board/phytec/pcm051/board.c                    |    3 +-
>  board/ti/omap2420h4/config.mk                  |    4 +-
>  board/ti/omap2420h4/mem.c                      |   13 -
>  board/ti/omap2420h4/omap2420h4.c               |   24 +-
>  board/ti/{omap5_evm => omap5_uevm}/Makefile    |    0
>  board/ti/{omap5_evm => omap5_uevm}/evm.c       |    0
>  board/ti/{omap5_evm => omap5_uevm}/mux_data.h  |    0
>  boards.cfg                                     |    2 +-
>  doc/README.omap3                               |   28 ++
>  doc/feature-removal-schedule.txt               |   16 +
>  drivers/mtd/nand/omap_gpmc.c                   |  424 +++++++++++++++++-------
>  drivers/serial/ns16550.c                       |   18 +-
>  drivers/usb/musb-new/musb_core.c               |    7 +
>  drivers/usb/musb-new/musb_uboot.c              |    2 +-
>  include/configs/am335x_evm.h                   |    1 +
>  include/configs/dra7xx_evm.h                   |    2 +
>  include/configs/igep00x0.h                     |    3 -
>  include/configs/omap2420h4.h                   |    5 +-
>  include/configs/omap4_common.h                 |   22 +-
>  include/configs/omap5_common.h                 |   51 ++-
>  include/configs/{omap5_evm.h => omap5_uevm.h}  |   18 +
>  include/configs/tricorder.h                    |   13 +-
>  lib/Makefile                                   |    2 +-
>  49 files changed, 672 insertions(+), 331 deletions(-)
>  create mode 100644 arch/arm/include/asm/omap_gpmc.h
>  rename board/ti/{omap5_evm => omap5_uevm}/Makefile (100%)
>  rename board/ti/{omap5_evm => omap5_uevm}/evm.c (100%)
>  rename board/ti/{omap5_evm => omap5_uevm}/mux_data.h (100%)
>  rename include/configs/{omap5_evm.h => omap5_uevm.h} (70%)
> 
> Andreas' changes came well before the merge window, Everything else is a
> bugfix of some sort or another or part of keeping platforms still useful
> with later kernel releases.
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-04-08 16:33 Tom Rini
  2013-04-09  5:47 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-04-08 16:33 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 8bf3c322856f42d4db8acd7fa4f2a17898564064:

  logo: update to the new logo for ATMEL (2013-04-05 21:49:37 +0200)

are available in the git repository at:

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

for you to fetch changes up to dd2445ec1b839a5ca61ff8438a5b7aebb21b7986:

  omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400)

----------------------------------------------------------------
Andreas Bie??mann (6):
      omap3/cpu.h: add BCH support
      asm/omap_gpmc.h: consolidate common defines
      omap3/omap_gpmc.h: add ooblayout for BCH8 as in kernel
      omap_gpmc: change nandecc command
      omap_gpmc: add support for hw assisted BCH8
      tricorder: enable hw assisted BCH8 in SPL and u-boot

Bin Liu (2):
      musb: am335x: disable bulk split-combine feature
      musb: set MUSB speed based on CONFIG

Hunter, Jon (4):
      omap2420-h4: Fix DRAM initialisation
      omap2420-h4: Fix booting from NOR flash
      omap2420-h4: Add device tree support
      omap2420-h4: Fix get_timer() and CONFIG_SYS_HZ

Lars Poeschel (1):
      pcm051: Enable DDR PHY dynamic power down bit

Lokesh Vutla (1):
      arm: omap4: Fix SDRAM AUTO DETECTION

Lubomir Popov (1):
      OMAP: Fix copy-paste bug that did not enable UART4 clock

Manfred Huber (1):
      omap3_beagle: Flush UART3 xmit on enable if TEMT is broken

Nishanth Menon (1):
      omap5: Allow use of a plain text env file

SRICHARAN R (4):
      ARM: OMAP5: Rename omap5_evm to omap5_uevm
      ARM: OMAP5: Set fdt_high to enable booting with Device tree
      ARM: OMAP4/5: Change the default boot command to work with device tree
      ARM: OMAP4/5: Make bootz as the default boot command

Tom Rini (5):
      am335x: Enable MMC1 clock
      doc/feature-removal-schedule.txt: Add CONFIG_SYS_(CLOCKS|PADS)_ENABLE_ALL
      OMAP3/4/5/AM33xx: Correct logic for checking FAT or RAW MMC
      omap5_uevm.h: Move uEVM-specific choices to omap5_uevm.h
      omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE

 README                                         |    8 -
 arch/arm/cpu/arm1136/omap24xx/timer.c          |    8 +-
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c       |    5 +
 arch/arm/cpu/armv7/am33xx/elm.c                |    2 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |    4 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c   |   29 +-
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S |   10 +-
 arch/arm/cpu/armv7/omap3/board.c               |   31 +-
 arch/arm/cpu/armv7/omap4/emif.c                |    1 -
 arch/arm/cpu/armv7/omap5/emif.c                |    1 -
 arch/arm/include/asm/arch-am33xx/omap_gpmc.h   |   58 +---
 arch/arm/include/asm/arch-am33xx/spl.h         |    3 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h   |    2 +-
 arch/arm/include/asm/arch-omap24xx/omap2420.h  |    6 +-
 arch/arm/include/asm/arch-omap3/cpu.h          |    6 +
 arch/arm/include/asm/arch-omap3/omap_gpmc.h    |   68 +---
 arch/arm/include/asm/arch-omap3/spl.h          |    3 +
 arch/arm/include/asm/arch-omap3/sys_proto.h    |    2 +-
 arch/arm/include/asm/arch-omap4/omap.h         |    1 -
 arch/arm/include/asm/arch-omap4/spl.h          |    2 +
 arch/arm/include/asm/arch-omap5/omap.h         |    1 -
 arch/arm/include/asm/arch-omap5/spl.h          |    2 +
 arch/arm/include/asm/emif.h                    |    1 -
 arch/arm/include/asm/omap_gpmc.h               |   87 +++++
 board/isee/igep00x0/igep00x0.c                 |    2 +-
 board/overo/overo.c                            |    2 +-
 board/phytec/pcm051/board.c                    |    3 +-
 board/ti/omap2420h4/config.mk                  |    4 +-
 board/ti/omap2420h4/mem.c                      |   13 -
 board/ti/omap2420h4/omap2420h4.c               |   24 +-
 board/ti/{omap5_evm => omap5_uevm}/Makefile    |    0
 board/ti/{omap5_evm => omap5_uevm}/evm.c       |    0
 board/ti/{omap5_evm => omap5_uevm}/mux_data.h  |    0
 boards.cfg                                     |    2 +-
 doc/README.omap3                               |   28 ++
 doc/feature-removal-schedule.txt               |   16 +
 drivers/mtd/nand/omap_gpmc.c                   |  424 +++++++++++++++++-------
 drivers/serial/ns16550.c                       |   18 +-
 drivers/usb/musb-new/musb_core.c               |    7 +
 drivers/usb/musb-new/musb_uboot.c              |    2 +-
 include/configs/am335x_evm.h                   |    1 +
 include/configs/dra7xx_evm.h                   |    2 +
 include/configs/igep00x0.h                     |    3 -
 include/configs/omap2420h4.h                   |    5 +-
 include/configs/omap4_common.h                 |   22 +-
 include/configs/omap5_common.h                 |   51 ++-
 include/configs/{omap5_evm.h => omap5_uevm.h}  |   18 +
 include/configs/tricorder.h                    |   13 +-
 lib/Makefile                                   |    2 +-
 49 files changed, 672 insertions(+), 331 deletions(-)
 create mode 100644 arch/arm/include/asm/omap_gpmc.h
 rename board/ti/{omap5_evm => omap5_uevm}/Makefile (100%)
 rename board/ti/{omap5_evm => omap5_uevm}/evm.c (100%)
 rename board/ti/{omap5_evm => omap5_uevm}/mux_data.h (100%)
 rename include/configs/{omap5_evm.h => omap5_uevm.h} (70%)

Andreas' changes came well before the merge window, Everything else is a
bugfix of some sort or another or part of keeping platforms still useful
with later kernel releases.

-- 
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/20130408/e9b647b3/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-24 16:51   ` Tom Rini
@ 2013-03-24 17:57     ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-03-24 17:57 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Sun, 24 Mar 2013 12:51:09 -0400, Tom Rini <trini@ti.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On 03/24/2013 12:48 PM, Albert ARIBAUD wrote:
> > Hi Tom,
> > 
> > On Fri, 22 Mar 2013 16:18:39 -0400, Tom Rini <trini@ti.com> wrote:
> > 
> >> Hello,
> >> 
> >> The following changes since commit 
> >> 131a1e603b3a8438b84b41940bc6a2051a36e087:
> >> 
> >> ARM: rpi_b: enable SD controller, add related env/cmds 
> >> (2013-03-20 15:32:16 +0100)
> >> 
> >> are available in the git repository at:
> >> 
> >> git://git.denx.de/u-boot-ti.git master
> >> 
> >> for you to fetch changes up to 
> >> e0c60ef48bc600bcd06c08a436abfca1a963a1e7:
> >> 
> >> mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio 
> >> could be used (2013-03-22 12:01:15 -0400)
> >> 
> >> ----------------------------------------------------------------
> >>  Enric Balletbo i Serra (2): ARM: AM33XX: Fix typo that causes
> >> an AM duplication in CPU name. igep00x0: Enable CONFIG_CMD_BOOTZ
> >> 
> >> Koen Kooi (3): am335x_evm: add support for BeagleBone Black DT 
> >> name am335x_evm: Enable CMD_EXT4 and CMD_FS_GENERIC, add
> >> bootpart to env am335x_evm: Add more variables and switch to DT
> >> booting.
> >> 
> >> Mark Jackson (2): Allow AM335x MPU core clock speed to be 
> >> specified in the board config file Initialise correct GPMC WAITx 
> >> irq for AM33xx
> >> 
> >> Matt Porter (9): am33xx: convert defines from am33xx-specific to 
> >> generic names am33xx: refactor emif4/ddr to support multiple
> >> EMIF instances am33xx: refactor am33xx clocks and add ti814x
> >> support am33xx: refactor am33xx mux support and add ti814x
> >> support am33xx: add ti814x specific register definitions am33xx:
> >> add dmm support to emif4 library am33xx: support ti814x mmc
> >> reference clock ns16550: enable quirks for ti814x ti814x_evm: add
> >> ti814x evm board support
> >> 
> >> Nikita Kiryanov (1): cm-t35: add support for loading splash
> >> image from NAND
> >> 
> >> Peter Korsgaard (2): mmc: mmc_getcd/getwp: use sensible defaults
> >>  mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio 
> >> could be used
> >> 
> >> Steve Kipisz (1): am33xx:ddr:Fix config_sdram to work for all 
> >> DDR
> >> 
> >> Tom Rini (3): am33xx: Add required includes to some omap/am33xx 
> >> code am335x_evm: Add better timings for the new BeagleBoard DDR3 
> >> part arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* 
> >> platforms
> >> 
> >> hvaibhav at ti.com (1): am335x: Enable DDR PHY dynamic power down 
> >> bit for DDR3 boards
> > 
> > I'd rather have a full name on this one.
> 
> Fixed, pushed and author reminded, thanks / sorry!

No problem :) -- applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-24 16:48 ` Albert ARIBAUD
@ 2013-03-24 16:51   ` Tom Rini
  2013-03-24 17:57     ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-03-24 16:51 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 03/24/2013 12:48 PM, Albert ARIBAUD wrote:
> Hi Tom,
> 
> On Fri, 22 Mar 2013 16:18:39 -0400, Tom Rini <trini@ti.com> wrote:
> 
>> Hello,
>> 
>> The following changes since commit 
>> 131a1e603b3a8438b84b41940bc6a2051a36e087:
>> 
>> ARM: rpi_b: enable SD controller, add related env/cmds 
>> (2013-03-20 15:32:16 +0100)
>> 
>> are available in the git repository at:
>> 
>> git://git.denx.de/u-boot-ti.git master
>> 
>> for you to fetch changes up to 
>> e0c60ef48bc600bcd06c08a436abfca1a963a1e7:
>> 
>> mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio 
>> could be used (2013-03-22 12:01:15 -0400)
>> 
>> ----------------------------------------------------------------
>>  Enric Balletbo i Serra (2): ARM: AM33XX: Fix typo that causes
>> an AM duplication in CPU name. igep00x0: Enable CONFIG_CMD_BOOTZ
>> 
>> Koen Kooi (3): am335x_evm: add support for BeagleBone Black DT 
>> name am335x_evm: Enable CMD_EXT4 and CMD_FS_GENERIC, add
>> bootpart to env am335x_evm: Add more variables and switch to DT
>> booting.
>> 
>> Mark Jackson (2): Allow AM335x MPU core clock speed to be 
>> specified in the board config file Initialise correct GPMC WAITx 
>> irq for AM33xx
>> 
>> Matt Porter (9): am33xx: convert defines from am33xx-specific to 
>> generic names am33xx: refactor emif4/ddr to support multiple
>> EMIF instances am33xx: refactor am33xx clocks and add ti814x
>> support am33xx: refactor am33xx mux support and add ti814x
>> support am33xx: add ti814x specific register definitions am33xx:
>> add dmm support to emif4 library am33xx: support ti814x mmc
>> reference clock ns16550: enable quirks for ti814x ti814x_evm: add
>> ti814x evm board support
>> 
>> Nikita Kiryanov (1): cm-t35: add support for loading splash
>> image from NAND
>> 
>> Peter Korsgaard (2): mmc: mmc_getcd/getwp: use sensible defaults
>>  mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio 
>> could be used
>> 
>> Steve Kipisz (1): am33xx:ddr:Fix config_sdram to work for all 
>> DDR
>> 
>> Tom Rini (3): am33xx: Add required includes to some omap/am33xx 
>> code am335x_evm: Add better timings for the new BeagleBoard DDR3 
>> part arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* 
>> platforms
>> 
>> hvaibhav at ti.com (1): am335x: Enable DDR PHY dynamic power down 
>> bit for DDR3 boards
> 
> I'd rather have a full name on this one.

Fixed, pushed and author reminded, thanks / sorry!

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRTy79AAoJENk4IS6UOR1WiJkP/j9vBLIYOv9+8y90Y+DQBAcr
GRlhpqy5557zV0FSmksfwfpjbWQh2Kt1uQWdhBpyJssm1bRLbP4LsskktgSEkcy0
3ksZ2huPYCgvKgS3OolDauYk45/UxHirYlG57uDNolrD50C30PlSzPXAWbl/ARwX
3h1Q600REZ/GBvjbpR8j4mXt3pxRGk7gRB3RoS4a9/KnvhN4pLS73UYVhbmdWyd2
xsa9ovo13ZCS6Uy0WdTeO+X7Q5T2EuYMJrUIcHNd5tRLyCmnjky42mgUVr6IjTy6
eNI5xaCum73OSwQd8OCmfHee+a1QAEkVWVkluRfeHOMYEMHP6pv93QCM3Ub2VRBZ
+/cDeMT+okoA2QJg13iyI8WhrmzgZlgf2Ojg5Lcz+8BOIHcCQrYC/WzAWrMegg4u
9vmm+6fY9hc0uFpKElNR5FLdYWkbT4b548bK7SEuMiCE48ZtN6P8jYwy1KfeLv4D
aBdC326Z1MGFc5QIR8kHFFFD69bSAvAOCpv4BHGPImJ4KuvtxDOCA7N2nEpsHUqD
PX6wL9bU9fCkRbaZYBh/qZ0JjkmwXkWo4nbi+GpLxwxHSolWXFlIr/EVz0nf1u/8
D5DL0QAQYZ/686p4Jd72TogFIU915n5OlI/OL/zWsLL2Qo87TTSdwOSLdlBxyHxg
GxMBAxaa+JFmbFdL6Hs3
=bFhU
-----END PGP SIGNATURE-----

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-22 20:18 Tom Rini
@ 2013-03-24 16:48 ` Albert ARIBAUD
  2013-03-24 16:51   ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-03-24 16:48 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 22 Mar 2013 16:18:39 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 131a1e603b3a8438b84b41940bc6a2051a36e087:
> 
>   ARM: rpi_b: enable SD controller, add related env/cmds (2013-03-20 15:32:16 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to e0c60ef48bc600bcd06c08a436abfca1a963a1e7:
> 
>   mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio could be used (2013-03-22 12:01:15 -0400)
> 
> ----------------------------------------------------------------
> Enric Balletbo i Serra (2):
>       ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.
>       igep00x0: Enable CONFIG_CMD_BOOTZ
> 
> Koen Kooi (3):
>       am335x_evm: add support for BeagleBone Black DT name
>       am335x_evm: Enable CMD_EXT4 and CMD_FS_GENERIC, add bootpart to env
>       am335x_evm: Add more variables and switch to DT booting.
> 
> Mark Jackson (2):
>       Allow AM335x MPU core clock speed to be specified in the board config file
>       Initialise correct GPMC WAITx irq for AM33xx
> 
> Matt Porter (9):
>       am33xx: convert defines from am33xx-specific to generic names
>       am33xx: refactor emif4/ddr to support multiple EMIF instances
>       am33xx: refactor am33xx clocks and add ti814x support
>       am33xx: refactor am33xx mux support and add ti814x support
>       am33xx: add ti814x specific register definitions
>       am33xx: add dmm support to emif4 library
>       am33xx: support ti814x mmc reference clock
>       ns16550: enable quirks for ti814x
>       ti814x_evm: add ti814x evm board support
> 
> Nikita Kiryanov (1):
>       cm-t35: add support for loading splash image from NAND
> 
> Peter Korsgaard (2):
>       mmc: mmc_getcd/getwp: use sensible defaults
>       mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio could be used
> 
> Steve Kipisz (1):
>       am33xx:ddr:Fix config_sdram to work for all DDR
> 
> Tom Rini (3):
>       am33xx: Add required includes to some omap/am33xx code
>       am335x_evm: Add better timings for the new BeagleBoard DDR3 part
>       arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* platforms
> 
> hvaibhav at ti.com (1):
>       am335x: Enable DDR PHY dynamic power down bit for DDR3 boards

I'd rather have a full name on this one.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-03-22 20:18 Tom Rini
  2013-03-24 16:48 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-03-22 20:18 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 131a1e603b3a8438b84b41940bc6a2051a36e087:

  ARM: rpi_b: enable SD controller, add related env/cmds (2013-03-20 15:32:16 +0100)

are available in the git repository at:

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

for you to fetch changes up to e0c60ef48bc600bcd06c08a436abfca1a963a1e7:

  mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio could be used (2013-03-22 12:01:15 -0400)

----------------------------------------------------------------
Enric Balletbo i Serra (2):
      ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.
      igep00x0: Enable CONFIG_CMD_BOOTZ

Koen Kooi (3):
      am335x_evm: add support for BeagleBone Black DT name
      am335x_evm: Enable CMD_EXT4 and CMD_FS_GENERIC, add bootpart to env
      am335x_evm: Add more variables and switch to DT booting.

Mark Jackson (2):
      Allow AM335x MPU core clock speed to be specified in the board config file
      Initialise correct GPMC WAITx irq for AM33xx

Matt Porter (9):
      am33xx: convert defines from am33xx-specific to generic names
      am33xx: refactor emif4/ddr to support multiple EMIF instances
      am33xx: refactor am33xx clocks and add ti814x support
      am33xx: refactor am33xx mux support and add ti814x support
      am33xx: add ti814x specific register definitions
      am33xx: add dmm support to emif4 library
      am33xx: support ti814x mmc reference clock
      ns16550: enable quirks for ti814x
      ti814x_evm: add ti814x evm board support

Nikita Kiryanov (1):
      cm-t35: add support for loading splash image from NAND

Peter Korsgaard (2):
      mmc: mmc_getcd/getwp: use sensible defaults
      mmc: omap_hsmmc.c: only register getcd/getwp callbacks if gpio could be used

Steve Kipisz (1):
      am33xx:ddr:Fix config_sdram to work for all DDR

Tom Rini (3):
      am33xx: Add required includes to some omap/am33xx code
      am335x_evm: Add better timings for the new BeagleBoard DDR3 part
      arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* platforms

hvaibhav at ti.com (1):
      am335x: Enable DDR PHY dynamic power down bit for DDR3 boards

 MAINTAINERS                                        |    4 +
 Makefile                                           |    2 +-
 README                                             |    4 +
 arch/arm/config.mk                                 |    2 +-
 arch/arm/cpu/armv7/Makefile                        |    2 +-
 arch/arm/cpu/armv7/am33xx/Makefile                 |    3 +-
 arch/arm/cpu/armv7/am33xx/board.c                  |    4 +-
 .../cpu/armv7/am33xx/{clock.c => clock_am33xx.c}   |   33 +-
 arch/arm/cpu/armv7/am33xx/clock_ti814x.c           |  406 ++++++++++++++++++++
 arch/arm/cpu/armv7/am33xx/ddr.c                    |  104 +++--
 arch/arm/cpu/armv7/am33xx/emif4.c                  |   57 ++-
 arch/arm/cpu/armv7/am33xx/mem.c                    |    2 +-
 arch/arm/cpu/armv7/am33xx/sys_info.c               |    5 +-
 arch/arm/cpu/armv7/omap-common/Makefile            |    2 +-
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |    1 +
 arch/arm/cpu/armv7/omap-common/timer.c             |    1 +
 arch/arm/include/asm/arch-am33xx/clock.h           |    2 +-
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h   |   36 +-
 arch/arm/include/asm/arch-am33xx/cpu.h             |   11 +-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   75 +++-
 arch/arm/include/asm/arch-am33xx/hardware.h        |   40 +-
 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |   54 +++
 arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |   53 +++
 arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |    5 +
 arch/arm/include/asm/arch-am33xx/mux.h             |  235 +----------
 arch/arm/include/asm/arch-am33xx/mux_am33xx.h      |  247 ++++++++++++
 arch/arm/include/asm/arch-am33xx/mux_ti814x.h      |  311 +++++++++++++++
 arch/arm/include/asm/arch-am33xx/omap.h            |    5 +
 arch/arm/include/asm/arch-am33xx/spl.h             |    5 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    2 +
 board/cm_t35/cm_t35.c                              |   61 +++
 board/phytec/pcm051/board.c                        |    8 +-
 board/ti/am335x/board.c                            |   57 ++-
 board/ti/ti814x/Makefile                           |   46 +++
 board/ti/ti814x/evm.c                              |  198 ++++++++++
 board/ti/ti814x/evm.h                              |    7 +
 board/ti/ti814x/mux.c                              |   51 +++
 boards.cfg                                         |    1 +
 drivers/mmc/mmc.c                                  |   16 +-
 drivers/mmc/omap_hsmmc.c                           |    8 +-
 drivers/mtd/nand/omap_gpmc.c                       |    1 +
 drivers/net/cpsw.c                                 |    1 +
 drivers/serial/ns16550.c                           |    5 +-
 include/configs/am335x_evm.h                       |   28 +-
 include/configs/cm_t35.h                           |    4 +
 include/configs/igep00x0.h                         |    3 +-
 include/configs/pcm051.h                           |    3 +-
 include/configs/ti814x_evm.h                       |  221 +++++++++++
 spl/Makefile                                       |    2 +-
 49 files changed, 2037 insertions(+), 397 deletions(-)
 rename arch/arm/cpu/armv7/am33xx/{clock.c => clock_am33xx.c} (91%)
 create mode 100644 arch/arm/cpu/armv7/am33xx/clock_ti814x.c
 create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_ti814x.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/mux_am33xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/mux_ti814x.h
 create mode 100644 board/ti/ti814x/Makefile
 create mode 100644 board/ti/ti814x/evm.c
 create mode 100644 board/ti/ti814x/evm.h
 create mode 100644 board/ti/ti814x/mux.c
 create mode 100644 include/configs/ti814x_evm.h

And a full set of applied replies to the various patches coming soon,
just want this out the door.  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/20130322/5f69f74e/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-11 18:25 Tom Rini
  2013-03-12  7:03 ` Nikita Kiryanov
@ 2013-03-12 14:13 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-03-12 14:13 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 11 Mar 2013 14:25:44 -0400, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
> 
>   x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:
> 
>   Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)
> 
> ----------------------------------------------------------------
> 
> Enric Balletbo i Serra (4):
>       SPL: ONENAND: Fix some ONENAND related defines.
>       SPL: ONENAND: Fix onenand_spl_load_image implementation.
>       SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
>       OMAP3: Initialize gpmc if SPL_ONENAND_SUPPORT is enabled.
> 
> Lokesh Vutla (13):
>       ARM: OMAP4+: emif: Detect SDRAM from SDRAM config register
>       ARM: OMAP4+: Cleanup emif specific files
>       ARM: OMAP4+: Make control module register structure generic
>       ARM: OMAP5: Clean up iosettings code
>       ARM: OMAP5: Add DDR changes required for OMAP543X ES2.0 SOCs
>       ARM: OMAP5: srcomp: enable slew rate compensation cells after powerup
>       arm: dra7xx: clock: Add the prcm changes
>       arm: dra7xx: clock: Add the dplls data
>       arm: dra7xx: Add control module changes
>       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
>       arm: dra7xx: Add silicon id support for DRA752 soc
> 
> Mark Jackson (1):
>       Allow AM33xx boards to setup GPMC chipselects.
> 
> Mugunthan V N (1):
>       am335x: cpsw: optimize cpsw_send to increase network performance
> 
> Nikita Kiryanov (14):
>       omap: consolidate common mmc definitions
>       omap_hsmmc: fix out of bounds array access
>       omap_hsmmc: introduce omap_hsmmc_data struct
>       omap_hsmmc: implement driver check for card detection
>       cm-t35: implement board specific card detect check
>       mmc: add support for write protection
>       omap_hsmmc: add driver check for write protection
>       omap3: add useful dss defines
>       omap3: allow dynamic selection of gfx_format
>       lcd: add option for board specific splash screen preparation
>       cm-t35: add support for dvi displays
>       cm-t35: add support for user defined lcd parameters
>       lcd: implement a callback for splashimage
>       cm_t35: prevent splashimage from being set to a bad value
> 
> SRICHARAN R (6):
>       ARM: OMAP4+: Change the PRCM structure prototype common for all Socs
>       ARM: OMAP4+: Cleanup the clocks layer
>       ARM: OMAP4+: Clean up the pmic code
>       ARM: OMAP5: Add silicon id support for ES2.0 revision.
>       ARM: OMAP5: clock: Add the prcm register changes required for ES2.0
>       ARM: OMAP4/5: clocks: Add the required OPP settings as per the latest addendum
> 
> Tom Rini (8):
>       am335x_evm: Never set CONFIG_EXTRA_ENV_SETTINGS in SPL
>       am335x_evm: Add am335x_evm_usbspl build target
>       am33xx: Update DDR3 EMIF configuration sequence
>       am335x_evm: Enable CONFIG_CMD_BOOTZ
>       omap5_evm: Enable CONFIG_CMD_BOOTZ
>       omap3_beagle: Enable CONFIG_CMD_BOOTZ
>       omap4_common: Enable CONFIG_CMD_BOOTZ
>       Merge u-boot/master into u-boot-ti/master
> 
> The following diffstat is a little "funny" since to generate something
> close to correct I had to make a manual merge branch of
> u-boot-arm/master + u-boot/master and compare vs that.
> 
>  MAINTAINERS                                     |    1 +
>  README                                          |   19 +
>  arch/arm/cpu/arm1136/mx35/generic.c             |    2 +-
>  arch/arm/cpu/armv7/am33xx/board.c               |    4 +-
>  arch/arm/cpu/armv7/am33xx/ddr.c                 |   12 +-
>  arch/arm/cpu/armv7/omap-common/boot-common.c    |    7 +-
>  arch/arm/cpu/armv7/omap-common/clocks-common.c  |  312 +++++---
>  arch/arm/cpu/armv7/omap-common/emif-common.c    |   73 +-
>  arch/arm/cpu/armv7/omap-common/hwinit-common.c  |   23 +-
>  arch/arm/cpu/armv7/omap-common/vc.c             |   11 +-
>  arch/arm/cpu/armv7/omap3/board.c                |    6 +-
>  arch/arm/cpu/armv7/omap4/Makefile               |    3 +-
>  arch/arm/cpu/armv7/omap4/clocks.c               |  517 ------------
>  arch/arm/cpu/armv7/omap4/hw_data.c              |  491 ++++++++++++
>  arch/arm/cpu/armv7/omap4/hwinit.c               |   36 +-
>  arch/arm/cpu/armv7/omap4/prcm-regs.c            |  315 ++++++++
>  arch/arm/cpu/armv7/omap4/sdram_elpida.c         |   34 +-
>  arch/arm/cpu/armv7/omap5/Makefile               |    3 +-
>  arch/arm/cpu/armv7/omap5/clocks.c               |  494 ------------
>  arch/arm/cpu/armv7/omap5/hw_data.c              |  596 ++++++++++++++
>  arch/arm/cpu/armv7/omap5/hwinit.c               |  292 ++++---
>  arch/arm/cpu/armv7/omap5/prcm-regs.c            |  958 +++++++++++++++++++++++
>  arch/arm/cpu/armv7/omap5/sdram.c                |  214 ++++-
>  arch/arm/cpu/armv7/zynq/Makefile                |    1 +
>  arch/arm/cpu/armv7/zynq/cpu.c                   |   28 +-
>  arch/arm/cpu/armv7/zynq/slcr.c                  |   63 ++
>  arch/arm/include/asm/arch-am33xx/mmc_host_def.h |  140 +---
>  arch/arm/include/asm/arch-am33xx/spl.h          |    1 +
>  arch/arm/include/asm/arch-am33xx/sys_proto.h    |    2 +
>  arch/arm/include/asm/arch-davinci/gpio.h        |    7 +-
>  arch/arm/include/asm/arch-mx35/spl.h            |    2 +-
>  arch/arm/include/asm/arch-omap3/dss.h           |   31 +
>  arch/arm/include/asm/arch-omap3/mmc_host_def.h  |  139 +---
>  arch/arm/include/asm/arch-omap3/spl.h           |    2 +-
>  arch/arm/include/asm/arch-omap4/clocks.h        |  562 +------------
>  arch/arm/include/asm/arch-omap4/mmc_host_def.h  |  140 +---
>  arch/arm/include/asm/arch-omap4/omap.h          |   34 +-
>  arch/arm/include/asm/arch-omap4/spl.h           |    2 +-
>  arch/arm/include/asm/arch-omap4/sys_proto.h     |    2 +-
>  arch/arm/include/asm/arch-omap5/clocks.h        |  539 +------------
>  arch/arm/include/asm/arch-omap5/mmc_host_def.h  |  140 +---
>  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          |  125 +--
>  arch/arm/include/asm/arch-omap5/spl.h           |    2 +-
>  arch/arm/include/asm/arch-omap5/sys_proto.h     |   10 +-
>  arch/arm/include/asm/arch-zynq/hardware.h       |   85 ++
>  arch/arm/include/asm/arch-zynq/sys_proto.h      |   30 +
>  arch/arm/include/asm/armv7.h                    |    1 +
>  arch/arm/include/asm/emif.h                     |   20 +-
>  arch/arm/include/asm/omap_common.h              |  523 +++++++++++++
>  arch/arm/include/asm/omap_mmc.h                 |  168 ++++
>  board/cm_t35/Makefile                           |    1 +
>  board/cm_t35/cm_t35.c                           |   16 +-
>  board/cm_t35/display.c                          |  428 ++++++++++
>  board/comelit/dig297/dig297.c                   |    3 +-
>  board/corscience/tricorder/tricorder.c          |    2 +-
>  board/htkw/mcx/mcx.c                            |    3 +-
>  board/isee/igep00x0/igep00x0.c                  |    3 +-
>  board/isee/igep00x0/igep00x0.h                  |    7 +-
>  board/logicpd/am3517evm/am3517evm.c             |    3 +-
>  board/logicpd/omap3som/omap3logic.c             |    2 +-
>  board/logicpd/zoom1/zoom1.c                     |    3 +-
>  board/logicpd/zoom2/zoom2.c                     |    3 +-
>  board/matrix_vision/mvblx/fpga.c                |   14 +-
>  board/matrix_vision/mvblx/mvblx.c               |    4 +-
>  board/matrix_vision/mvblx/sys_eeprom.c          |   24 +
>  board/nokia/rx51/rx51.c                         |    4 +-
>  board/ns9750dev/config.mk                       |   16 -
>  board/ns9750dev/flash.c                         |  474 -----------
>  board/ns9750dev/led.c                           |   46 --
>  board/ns9750dev/lowlevel_init.S                 |  298 -------
>  board/ns9750dev/ns9750dev.c                     |  125 ---
>  board/overo/overo.c                             |    3 +-
>  board/pandora/pandora.c                         |    3 +-
>  board/phytec/pcm051/mux.c                       |    1 -
>  board/technexion/twister/twister.c              |    2 +-
>  board/teejet/mt_ventoux/mt_ventoux.c            |    4 +-
>  board/ti/am335x/board.c                         |   40 +-
>  board/ti/am3517crane/am3517crane.c              |    3 +-
>  board/ti/beagle/beagle.c                        |   17 +-
>  board/ti/beagle/beagle.h                        |    6 +-
>  board/{ns9750dev => ti/dra7xx}/Makefile         |   22 +-
>  board/ti/dra7xx/evm.c                           |  103 +++
>  board/ti/dra7xx/mux_data.h                      |   47 ++
>  board/ti/evm/evm.c                              |    3 +-
>  board/ti/omap5_evm/evm.c                        |    4 +-
>  board/ti/panda/panda.c                          |    3 +-
>  board/ti/sdp3430/sdp.c                          |    3 +-
>  board/ti/sdp4430/sdp.c                          |    4 +-
>  board/timll/devkit8000/devkit8000.c             |    3 +-
>  boards.cfg                                      |    5 +
>  common/cmd_mmc.c                                |    7 +
>  common/lcd.c                                    |   41 +
>  common/spl/Makefile                             |    1 +
>  common/spl/spl.c                                |   10 +
>  common/spl/spl_onenand.c                        |   47 ++
>  doc/README.displaying-bmps                      |   27 +
>  doc/README.ns9750dev                            |   36 -
>  doc/README.scrapyard                            |  161 ++--
>  doc/SPL/README.am335x-network                   |   92 +++
>  doc/driver-model/UDM-serial.txt                 |    2 +-
>  drivers/gpio/da8xx_gpio.c                       |  137 +++-
>  drivers/mmc/arm_pl180_mmci.c                    |    1 +
>  drivers/mmc/bfin_sdh.c                          |    1 +
>  drivers/mmc/davinci_mmc.c                       |    1 +
>  drivers/mmc/fsl_esdhc.c                         |    1 +
>  drivers/mmc/ftsdc010_esdhc.c                    |    1 +
>  drivers/mmc/gen_atmel_mci.c                     |    1 +
>  drivers/mmc/mmc.c                               |   17 +
>  drivers/mmc/mmc_spi.c                           |    1 +
>  drivers/mmc/mxcmmc.c                            |    1 +
>  drivers/mmc/mxsmmc.c                            |    1 +
>  drivers/mmc/omap_hsmmc.c                        |  103 ++-
>  drivers/mmc/sdhci.c                             |    1 +
>  drivers/mmc/sh_mmcif.c                          |    1 +
>  drivers/mmc/tegra_mmc.c                         |    1 +
>  drivers/mtd/onenand/onenand_spl.c               |   14 +-
>  drivers/net/cpsw.c                              |   20 +-
>  drivers/serial/Makefile                         |    1 -
>  drivers/serial/ns9750_serial.c                  |  218 ------
>  drivers/serial/serial.c                         |    2 -
>  drivers/video/omap3_dss.c                       |    2 +-
>  include/configs/am335x_evm.h                    |   83 +-
>  include/configs/cm_t35.h                        |    9 +
>  include/configs/dra7xx_evm.h                    |   36 +
>  include/configs/ea20.h                          |    1 +
>  include/configs/igep00x0.h                      |    7 +-
>  include/configs/ns9750dev.h                     |  187 -----
>  include/configs/omap3_beagle.h                  |    3 +-
>  include/configs/omap3_mvblx.h                   |   25 +-
>  include/configs/omap4_common.h                  |    2 +-
>  include/configs/omap5_common.h                  |  262 +++++++
>  include/configs/omap5_evm.h                     |  240 +-----
>  include/configs/zynq.h                          |    5 +
>  include/env_callback.h                          |    7 +
>  include/lcd.h                                   |    1 +
>  include/mmc.h                                   |    2 +
>  include/ns9750_bbus.h                           |  125 ---
>  include/ns9750_mem.h                            |  172 ----
>  include/ns9750_ser.h                            |  202 -----
>  include/ns9750_sys.h                            |  215 -----
>  include/spl.h                                   |    3 +
>  spl/Makefile                                    |    2 +
>  144 files changed, 6257 insertions(+), 5611 deletions(-)
>  delete mode 100644 arch/arm/cpu/armv7/omap4/clocks.c
>  create mode 100644 arch/arm/cpu/armv7/omap4/hw_data.c
>  create mode 100644 arch/arm/cpu/armv7/omap4/prcm-regs.c
>  delete mode 100644 arch/arm/cpu/armv7/omap5/clocks.c
>  create mode 100644 arch/arm/cpu/armv7/omap5/hw_data.c
>  create mode 100644 arch/arm/cpu/armv7/omap5/prcm-regs.c
>  create mode 100644 arch/arm/cpu/armv7/zynq/slcr.c
>  create mode 100644 arch/arm/include/asm/arch-omap5/mux_dra7xx.h
>  create mode 100644 arch/arm/include/asm/arch-zynq/hardware.h
>  create mode 100644 arch/arm/include/asm/arch-zynq/sys_proto.h
>  create mode 100644 arch/arm/include/asm/omap_mmc.h
>  create mode 100644 board/cm_t35/display.c
>  delete mode 100644 board/ns9750dev/config.mk
>  delete mode 100644 board/ns9750dev/flash.c
>  delete mode 100644 board/ns9750dev/led.c
>  delete mode 100644 board/ns9750dev/lowlevel_init.S
>  delete mode 100644 board/ns9750dev/ns9750dev.c
>  rename board/{ns9750dev => ti/dra7xx}/Makefile (74%)
>  create mode 100644 board/ti/dra7xx/evm.c
>  create mode 100644 board/ti/dra7xx/mux_data.h
>  create mode 100644 common/spl/spl_onenand.c
>  create mode 100644 doc/README.displaying-bmps
>  delete mode 100644 doc/README.ns9750dev
>  create mode 100644 doc/SPL/README.am335x-network
>  delete mode 100644 drivers/serial/ns9750_serial.c
>  create mode 100644 include/configs/dra7xx_evm.h
>  delete mode 100644 include/configs/ns9750dev.h
>  create mode 100644 include/configs/omap5_common.h
>  delete mode 100644 include/ns9750_bbus.h
>  delete mode 100644 include/ns9750_mem.h
>  delete mode 100644 include/ns9750_ser.h
>  delete mode 100644 include/ns9750_sys.h
> 
> This includes the following change as the merge commit for merging
> u-boot/master into u-boot-ti/master:
>  arch/arm/include/asm/arch-davinci/gpio.h |    5 ++++-
>  drivers/gpio/da8xx_gpio.c                |    8 ++++++--
>  2 files changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-davinci/gpio.h b/arch/arm/include/asm/arch-davinci/gpio.h
> index fbbb1f3..06390c8 100644
> --- a/arch/arm/include/asm/arch-davinci/gpio.h
> +++ b/arch/arm/include/asm/arch-davinci/gpio.h
> @@ -67,7 +67,10 @@ struct davinci_gpio_bank {
>  
>  #define gpio_status()		gpio_info()
>  #define GPIO_NAME_SIZE		20
> -#if defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
> +#if defined(CONFIG_SOC_DM644X)
> +/* GPIO0 to GPIO53, omit the V3.3 volts one */
> +#define MAX_NUM_GPIOS		70
> +#elif defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
>  #define MAX_NUM_GPIOS		128
>  #else
>  #define MAX_NUM_GPIOS		144
> diff --git a/drivers/gpio/da8xx_gpio.c b/drivers/gpio/da8xx_gpio.c
> index 271b8d9..76648d2 100644
> --- a/drivers/gpio/da8xx_gpio.c
> +++ b/drivers/gpio/da8xx_gpio.c
> @@ -31,6 +31,7 @@ static struct gpio_registry {
>  	char name[GPIO_NAME_SIZE];
>  } gpio_registry[MAX_NUM_GPIOS];
>  
> +#if defined(CONFIG_SOC_DA8XX)
>  #define pinmux(x)       (&davinci_syscfg_regs->pinmux[x])
>  
>  #if defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
> @@ -164,7 +165,7 @@ static const struct pinmux_config gpio_pinmux[] = {
>  	{ pinmux(0), 1, 0 },
>  	{ pinmux(0), 1, 1 },
>  };
> -#else
> +#else /* CONFIG_SOC_DA8XX && CONFIG_SOC_DA850 */
>  static const struct pinmux_config gpio_pinmux[] = {
>  	{ pinmux(1), 8, 7 },	/* GP0[0] */
>  	{ pinmux(1), 8, 6 },
> @@ -311,7 +312,10 @@ static const struct pinmux_config gpio_pinmux[] = {
>  	{ pinmux(18), 8, 3 },
>  	{ pinmux(18), 8, 2 },
>  };
> -#endif
> +#endif /* CONFIG_SOC_DA8XX && !CONFIG_SOC_DA850 */
> +#else /* !CONFIG_SOC_DA8XX */
> +#define davinci_configure_pin_mux(a, b)
> +#endif /* CONFIG_SOC_DA8XX */
>  
>  int gpio_request(unsigned gpio, const char *label)
>  {

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

Amicalement,
-- 
Albert.

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

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

On Tue, Mar 12, 2013 at 08:14:24AM +0100, Albert ARIBAUD wrote:
> Hi Nikita,
> 
> On Tue, 12 Mar 2013 09:03:24 +0200, Nikita Kiryanov
> <nikita@compulab.co.il> wrote:
> 
> > Hi Tom,
> > 
> > On 03/11/2013 08:25 PM, Tom Rini wrote:
> > > Hello,
> > >
> > > The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
> > >
> > >    x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
> > >
> > > are available in the git repository at:
> > >
> > >    git://git.denx.de/u-boot-ti.git master
> > >
> > > for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:
> > >
> > >    Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)
> > >
> > > ----------------------------------------------------------------
> > >
> > [...]
> > >
> > > Nikita Kiryanov (14):
> > >        omap: consolidate common mmc definitions
> > >        omap_hsmmc: fix out of bounds array access
> > >        omap_hsmmc: introduce omap_hsmmc_data struct
> > >        omap_hsmmc: implement driver check for card detection
> > >        cm-t35: implement board specific card detect check
> > >        mmc: add support for write protection
> > >        omap_hsmmc: add driver check for write protection
> > >        omap3: add useful dss defines
> > >        omap3: allow dynamic selection of gfx_format
> > >        lcd: add option for board specific splash screen preparation
> > >        cm-t35: add support for dvi displays
> > >        cm-t35: add support for user defined lcd parameters
> > >        lcd: implement a callback for splashimage
> > >        cm_t35: prevent splashimage from being set to a bad value
> > >
> > 
> > I noticed that the patch "cm-t35: add support for loading splash image
> > from NAND" is missing from the above. As I mentioned here
> > http://lists.denx.de/pipermail/u-boot/2013-February/146361.html
> > V1 is still part of the CM-T35 splash screen and should be included
> > with the rest of the patchset.
> 
> Tom: also, the automatic "Conflicts:" lines were left (voluntarily or
> involuntarily) in the ToT commit's message. I suggest they be removed
> or, if left as a warning sign that the merge contains resolutions, be
> replaced with a non-default description.

Conflicts: is how it's left in the kernel logs as well, so I'd really
lean towards keeping it as-is.

> Do you want to re-do this PR or can I take it in as-is?

As-is please, I've got a few other things I want to pull in still and I
don't want to pile more things on top of the merge to master.

-- 
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/20130312/f2751845/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-12  7:03 ` Nikita Kiryanov
  2013-03-12  7:14   ` Albert ARIBAUD
@ 2013-03-12 12:49   ` Tom Rini
  1 sibling, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-03-12 12:49 UTC (permalink / raw)
  To: u-boot

On Tue, Mar 12, 2013 at 09:03:24AM +0200, Nikita Kiryanov wrote:
> Hi Tom,
> 
> On 03/11/2013 08:25 PM, Tom Rini wrote:
> >Hello,
> >
> >The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
> >
> >   x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
> >
> >are available in the git repository at:
> >
> >   git://git.denx.de/u-boot-ti.git master
> >
> >for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:
> >
> >   Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)
> >
> >----------------------------------------------------------------
> >
> [...]
> >
> >Nikita Kiryanov (14):
> >       omap: consolidate common mmc definitions
> >       omap_hsmmc: fix out of bounds array access
> >       omap_hsmmc: introduce omap_hsmmc_data struct
> >       omap_hsmmc: implement driver check for card detection
> >       cm-t35: implement board specific card detect check
> >       mmc: add support for write protection
> >       omap_hsmmc: add driver check for write protection
> >       omap3: add useful dss defines
> >       omap3: allow dynamic selection of gfx_format
> >       lcd: add option for board specific splash screen preparation
> >       cm-t35: add support for dvi displays
> >       cm-t35: add support for user defined lcd parameters
> >       lcd: implement a callback for splashimage
> >       cm_t35: prevent splashimage from being set to a bad value
> 
> I noticed that the patch "cm-t35: add support for loading splash image
> from NAND" is missing from the above. As I mentioned here
> http://lists.denx.de/pipermail/u-boot/2013-February/146361.html
> V1 is still part of the CM-T35 splash screen and should be included
> with the rest of the patchset.

OK, I missed that, sorry.

-- 
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/20130312/af5dee6d/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-12  7:03 ` Nikita Kiryanov
@ 2013-03-12  7:14   ` Albert ARIBAUD
  2013-03-12 12:50     ` Tom Rini
  2013-03-12 12:49   ` Tom Rini
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-03-12  7:14 UTC (permalink / raw)
  To: u-boot

Hi Nikita,

On Tue, 12 Mar 2013 09:03:24 +0200, Nikita Kiryanov
<nikita@compulab.co.il> wrote:

> Hi Tom,
> 
> On 03/11/2013 08:25 PM, Tom Rini wrote:
> > Hello,
> >
> > The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
> >
> >    x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> > for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:
> >
> >    Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)
> >
> > ----------------------------------------------------------------
> >
> [...]
> >
> > Nikita Kiryanov (14):
> >        omap: consolidate common mmc definitions
> >        omap_hsmmc: fix out of bounds array access
> >        omap_hsmmc: introduce omap_hsmmc_data struct
> >        omap_hsmmc: implement driver check for card detection
> >        cm-t35: implement board specific card detect check
> >        mmc: add support for write protection
> >        omap_hsmmc: add driver check for write protection
> >        omap3: add useful dss defines
> >        omap3: allow dynamic selection of gfx_format
> >        lcd: add option for board specific splash screen preparation
> >        cm-t35: add support for dvi displays
> >        cm-t35: add support for user defined lcd parameters
> >        lcd: implement a callback for splashimage
> >        cm_t35: prevent splashimage from being set to a bad value
> >
> 
> I noticed that the patch "cm-t35: add support for loading splash image
> from NAND" is missing from the above. As I mentioned here
> http://lists.denx.de/pipermail/u-boot/2013-February/146361.html
> V1 is still part of the CM-T35 splash screen and should be included
> with the rest of the patchset.

Tom: also, the automatic "Conflicts:" lines were left (voluntarily or
involuntarily) in the ToT commit's message. I suggest they be removed
or, if left as a warning sign that the merge contains resolutions, be
replaced with a non-default description.

Do you want to re-do this PR or can I take it in as-is?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-03-11 18:25 Tom Rini
@ 2013-03-12  7:03 ` Nikita Kiryanov
  2013-03-12  7:14   ` Albert ARIBAUD
  2013-03-12 12:49   ` Tom Rini
  2013-03-12 14:13 ` Albert ARIBAUD
  1 sibling, 2 replies; 324+ messages in thread
From: Nikita Kiryanov @ 2013-03-12  7:03 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On 03/11/2013 08:25 PM, Tom Rini wrote:
> Hello,
>
> The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
>
>    x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:
>
>    Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)
>
> ----------------------------------------------------------------
>
[...]
>
> Nikita Kiryanov (14):
>        omap: consolidate common mmc definitions
>        omap_hsmmc: fix out of bounds array access
>        omap_hsmmc: introduce omap_hsmmc_data struct
>        omap_hsmmc: implement driver check for card detection
>        cm-t35: implement board specific card detect check
>        mmc: add support for write protection
>        omap_hsmmc: add driver check for write protection
>        omap3: add useful dss defines
>        omap3: allow dynamic selection of gfx_format
>        lcd: add option for board specific splash screen preparation
>        cm-t35: add support for dvi displays
>        cm-t35: add support for user defined lcd parameters
>        lcd: implement a callback for splashimage
>        cm_t35: prevent splashimage from being set to a bad value
>

I noticed that the patch "cm-t35: add support for loading splash image
from NAND" is missing from the above. As I mentioned here
http://lists.denx.de/pipermail/u-boot/2013-February/146361.html
V1 is still part of the CM-T35 splash screen and should be included
with the rest of the patchset.

-- 
Regards,
Nikita.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-03-11 18:25 Tom Rini
  2013-03-12  7:03 ` Nikita Kiryanov
  2013-03-12 14:13 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2013-03-11 18:25 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:

  x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)

are available in the git repository at:

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

for you to fetch changes up to 76b40ab41eff1f402ee52ba768b09daad293b9bb:

  Merge u-boot/master into u-boot-ti/master (2013-03-11 12:16:13 -0400)

----------------------------------------------------------------

Enric Balletbo i Serra (4):
      SPL: ONENAND: Fix some ONENAND related defines.
      SPL: ONENAND: Fix onenand_spl_load_image implementation.
      SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
      OMAP3: Initialize gpmc if SPL_ONENAND_SUPPORT is enabled.

Lokesh Vutla (13):
      ARM: OMAP4+: emif: Detect SDRAM from SDRAM config register
      ARM: OMAP4+: Cleanup emif specific files
      ARM: OMAP4+: Make control module register structure generic
      ARM: OMAP5: Clean up iosettings code
      ARM: OMAP5: Add DDR changes required for OMAP543X ES2.0 SOCs
      ARM: OMAP5: srcomp: enable slew rate compensation cells after powerup
      arm: dra7xx: clock: Add the prcm changes
      arm: dra7xx: clock: Add the dplls data
      arm: dra7xx: Add control module changes
      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
      arm: dra7xx: Add silicon id support for DRA752 soc

Mark Jackson (1):
      Allow AM33xx boards to setup GPMC chipselects.

Mugunthan V N (1):
      am335x: cpsw: optimize cpsw_send to increase network performance

Nikita Kiryanov (14):
      omap: consolidate common mmc definitions
      omap_hsmmc: fix out of bounds array access
      omap_hsmmc: introduce omap_hsmmc_data struct
      omap_hsmmc: implement driver check for card detection
      cm-t35: implement board specific card detect check
      mmc: add support for write protection
      omap_hsmmc: add driver check for write protection
      omap3: add useful dss defines
      omap3: allow dynamic selection of gfx_format
      lcd: add option for board specific splash screen preparation
      cm-t35: add support for dvi displays
      cm-t35: add support for user defined lcd parameters
      lcd: implement a callback for splashimage
      cm_t35: prevent splashimage from being set to a bad value

SRICHARAN R (6):
      ARM: OMAP4+: Change the PRCM structure prototype common for all Socs
      ARM: OMAP4+: Cleanup the clocks layer
      ARM: OMAP4+: Clean up the pmic code
      ARM: OMAP5: Add silicon id support for ES2.0 revision.
      ARM: OMAP5: clock: Add the prcm register changes required for ES2.0
      ARM: OMAP4/5: clocks: Add the required OPP settings as per the latest addendum

Tom Rini (8):
      am335x_evm: Never set CONFIG_EXTRA_ENV_SETTINGS in SPL
      am335x_evm: Add am335x_evm_usbspl build target
      am33xx: Update DDR3 EMIF configuration sequence
      am335x_evm: Enable CONFIG_CMD_BOOTZ
      omap5_evm: Enable CONFIG_CMD_BOOTZ
      omap3_beagle: Enable CONFIG_CMD_BOOTZ
      omap4_common: Enable CONFIG_CMD_BOOTZ
      Merge u-boot/master into u-boot-ti/master

The following diffstat is a little "funny" since to generate something
close to correct I had to make a manual merge branch of
u-boot-arm/master + u-boot/master and compare vs that.

 MAINTAINERS                                     |    1 +
 README                                          |   19 +
 arch/arm/cpu/arm1136/mx35/generic.c             |    2 +-
 arch/arm/cpu/armv7/am33xx/board.c               |    4 +-
 arch/arm/cpu/armv7/am33xx/ddr.c                 |   12 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c    |    7 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c  |  312 +++++---
 arch/arm/cpu/armv7/omap-common/emif-common.c    |   73 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c  |   23 +-
 arch/arm/cpu/armv7/omap-common/vc.c             |   11 +-
 arch/arm/cpu/armv7/omap3/board.c                |    6 +-
 arch/arm/cpu/armv7/omap4/Makefile               |    3 +-
 arch/arm/cpu/armv7/omap4/clocks.c               |  517 ------------
 arch/arm/cpu/armv7/omap4/hw_data.c              |  491 ++++++++++++
 arch/arm/cpu/armv7/omap4/hwinit.c               |   36 +-
 arch/arm/cpu/armv7/omap4/prcm-regs.c            |  315 ++++++++
 arch/arm/cpu/armv7/omap4/sdram_elpida.c         |   34 +-
 arch/arm/cpu/armv7/omap5/Makefile               |    3 +-
 arch/arm/cpu/armv7/omap5/clocks.c               |  494 ------------
 arch/arm/cpu/armv7/omap5/hw_data.c              |  596 ++++++++++++++
 arch/arm/cpu/armv7/omap5/hwinit.c               |  292 ++++---
 arch/arm/cpu/armv7/omap5/prcm-regs.c            |  958 +++++++++++++++++++++++
 arch/arm/cpu/armv7/omap5/sdram.c                |  214 ++++-
 arch/arm/cpu/armv7/zynq/Makefile                |    1 +
 arch/arm/cpu/armv7/zynq/cpu.c                   |   28 +-
 arch/arm/cpu/armv7/zynq/slcr.c                  |   63 ++
 arch/arm/include/asm/arch-am33xx/mmc_host_def.h |  140 +---
 arch/arm/include/asm/arch-am33xx/spl.h          |    1 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h    |    2 +
 arch/arm/include/asm/arch-davinci/gpio.h        |    7 +-
 arch/arm/include/asm/arch-mx35/spl.h            |    2 +-
 arch/arm/include/asm/arch-omap3/dss.h           |   31 +
 arch/arm/include/asm/arch-omap3/mmc_host_def.h  |  139 +---
 arch/arm/include/asm/arch-omap3/spl.h           |    2 +-
 arch/arm/include/asm/arch-omap4/clocks.h        |  562 +------------
 arch/arm/include/asm/arch-omap4/mmc_host_def.h  |  140 +---
 arch/arm/include/asm/arch-omap4/omap.h          |   34 +-
 arch/arm/include/asm/arch-omap4/spl.h           |    2 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h     |    2 +-
 arch/arm/include/asm/arch-omap5/clocks.h        |  539 +------------
 arch/arm/include/asm/arch-omap5/mmc_host_def.h  |  140 +---
 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          |  125 +--
 arch/arm/include/asm/arch-omap5/spl.h           |    2 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h     |   10 +-
 arch/arm/include/asm/arch-zynq/hardware.h       |   85 ++
 arch/arm/include/asm/arch-zynq/sys_proto.h      |   30 +
 arch/arm/include/asm/armv7.h                    |    1 +
 arch/arm/include/asm/emif.h                     |   20 +-
 arch/arm/include/asm/omap_common.h              |  523 +++++++++++++
 arch/arm/include/asm/omap_mmc.h                 |  168 ++++
 board/cm_t35/Makefile                           |    1 +
 board/cm_t35/cm_t35.c                           |   16 +-
 board/cm_t35/display.c                          |  428 ++++++++++
 board/comelit/dig297/dig297.c                   |    3 +-
 board/corscience/tricorder/tricorder.c          |    2 +-
 board/htkw/mcx/mcx.c                            |    3 +-
 board/isee/igep00x0/igep00x0.c                  |    3 +-
 board/isee/igep00x0/igep00x0.h                  |    7 +-
 board/logicpd/am3517evm/am3517evm.c             |    3 +-
 board/logicpd/omap3som/omap3logic.c             |    2 +-
 board/logicpd/zoom1/zoom1.c                     |    3 +-
 board/logicpd/zoom2/zoom2.c                     |    3 +-
 board/matrix_vision/mvblx/fpga.c                |   14 +-
 board/matrix_vision/mvblx/mvblx.c               |    4 +-
 board/matrix_vision/mvblx/sys_eeprom.c          |   24 +
 board/nokia/rx51/rx51.c                         |    4 +-
 board/ns9750dev/config.mk                       |   16 -
 board/ns9750dev/flash.c                         |  474 -----------
 board/ns9750dev/led.c                           |   46 --
 board/ns9750dev/lowlevel_init.S                 |  298 -------
 board/ns9750dev/ns9750dev.c                     |  125 ---
 board/overo/overo.c                             |    3 +-
 board/pandora/pandora.c                         |    3 +-
 board/phytec/pcm051/mux.c                       |    1 -
 board/technexion/twister/twister.c              |    2 +-
 board/teejet/mt_ventoux/mt_ventoux.c            |    4 +-
 board/ti/am335x/board.c                         |   40 +-
 board/ti/am3517crane/am3517crane.c              |    3 +-
 board/ti/beagle/beagle.c                        |   17 +-
 board/ti/beagle/beagle.h                        |    6 +-
 board/{ns9750dev => ti/dra7xx}/Makefile         |   22 +-
 board/ti/dra7xx/evm.c                           |  103 +++
 board/ti/dra7xx/mux_data.h                      |   47 ++
 board/ti/evm/evm.c                              |    3 +-
 board/ti/omap5_evm/evm.c                        |    4 +-
 board/ti/panda/panda.c                          |    3 +-
 board/ti/sdp3430/sdp.c                          |    3 +-
 board/ti/sdp4430/sdp.c                          |    4 +-
 board/timll/devkit8000/devkit8000.c             |    3 +-
 boards.cfg                                      |    5 +
 common/cmd_mmc.c                                |    7 +
 common/lcd.c                                    |   41 +
 common/spl/Makefile                             |    1 +
 common/spl/spl.c                                |   10 +
 common/spl/spl_onenand.c                        |   47 ++
 doc/README.displaying-bmps                      |   27 +
 doc/README.ns9750dev                            |   36 -
 doc/README.scrapyard                            |  161 ++--
 doc/SPL/README.am335x-network                   |   92 +++
 doc/driver-model/UDM-serial.txt                 |    2 +-
 drivers/gpio/da8xx_gpio.c                       |  137 +++-
 drivers/mmc/arm_pl180_mmci.c                    |    1 +
 drivers/mmc/bfin_sdh.c                          |    1 +
 drivers/mmc/davinci_mmc.c                       |    1 +
 drivers/mmc/fsl_esdhc.c                         |    1 +
 drivers/mmc/ftsdc010_esdhc.c                    |    1 +
 drivers/mmc/gen_atmel_mci.c                     |    1 +
 drivers/mmc/mmc.c                               |   17 +
 drivers/mmc/mmc_spi.c                           |    1 +
 drivers/mmc/mxcmmc.c                            |    1 +
 drivers/mmc/mxsmmc.c                            |    1 +
 drivers/mmc/omap_hsmmc.c                        |  103 ++-
 drivers/mmc/sdhci.c                             |    1 +
 drivers/mmc/sh_mmcif.c                          |    1 +
 drivers/mmc/tegra_mmc.c                         |    1 +
 drivers/mtd/onenand/onenand_spl.c               |   14 +-
 drivers/net/cpsw.c                              |   20 +-
 drivers/serial/Makefile                         |    1 -
 drivers/serial/ns9750_serial.c                  |  218 ------
 drivers/serial/serial.c                         |    2 -
 drivers/video/omap3_dss.c                       |    2 +-
 include/configs/am335x_evm.h                    |   83 +-
 include/configs/cm_t35.h                        |    9 +
 include/configs/dra7xx_evm.h                    |   36 +
 include/configs/ea20.h                          |    1 +
 include/configs/igep00x0.h                      |    7 +-
 include/configs/ns9750dev.h                     |  187 -----
 include/configs/omap3_beagle.h                  |    3 +-
 include/configs/omap3_mvblx.h                   |   25 +-
 include/configs/omap4_common.h                  |    2 +-
 include/configs/omap5_common.h                  |  262 +++++++
 include/configs/omap5_evm.h                     |  240 +-----
 include/configs/zynq.h                          |    5 +
 include/env_callback.h                          |    7 +
 include/lcd.h                                   |    1 +
 include/mmc.h                                   |    2 +
 include/ns9750_bbus.h                           |  125 ---
 include/ns9750_mem.h                            |  172 ----
 include/ns9750_ser.h                            |  202 -----
 include/ns9750_sys.h                            |  215 -----
 include/spl.h                                   |    3 +
 spl/Makefile                                    |    2 +
 144 files changed, 6257 insertions(+), 5611 deletions(-)
 delete mode 100644 arch/arm/cpu/armv7/omap4/clocks.c
 create mode 100644 arch/arm/cpu/armv7/omap4/hw_data.c
 create mode 100644 arch/arm/cpu/armv7/omap4/prcm-regs.c
 delete mode 100644 arch/arm/cpu/armv7/omap5/clocks.c
 create mode 100644 arch/arm/cpu/armv7/omap5/hw_data.c
 create mode 100644 arch/arm/cpu/armv7/omap5/prcm-regs.c
 create mode 100644 arch/arm/cpu/armv7/zynq/slcr.c
 create mode 100644 arch/arm/include/asm/arch-omap5/mux_dra7xx.h
 create mode 100644 arch/arm/include/asm/arch-zynq/hardware.h
 create mode 100644 arch/arm/include/asm/arch-zynq/sys_proto.h
 create mode 100644 arch/arm/include/asm/omap_mmc.h
 create mode 100644 board/cm_t35/display.c
 delete mode 100644 board/ns9750dev/config.mk
 delete mode 100644 board/ns9750dev/flash.c
 delete mode 100644 board/ns9750dev/led.c
 delete mode 100644 board/ns9750dev/lowlevel_init.S
 delete mode 100644 board/ns9750dev/ns9750dev.c
 rename board/{ns9750dev => ti/dra7xx}/Makefile (74%)
 create mode 100644 board/ti/dra7xx/evm.c
 create mode 100644 board/ti/dra7xx/mux_data.h
 create mode 100644 common/spl/spl_onenand.c
 create mode 100644 doc/README.displaying-bmps
 delete mode 100644 doc/README.ns9750dev
 create mode 100644 doc/SPL/README.am335x-network
 delete mode 100644 drivers/serial/ns9750_serial.c
 create mode 100644 include/configs/dra7xx_evm.h
 delete mode 100644 include/configs/ns9750dev.h
 create mode 100644 include/configs/omap5_common.h
 delete mode 100644 include/ns9750_bbus.h
 delete mode 100644 include/ns9750_mem.h
 delete mode 100644 include/ns9750_ser.h
 delete mode 100644 include/ns9750_sys.h

This includes the following change as the merge commit for merging
u-boot/master into u-boot-ti/master:
 arch/arm/include/asm/arch-davinci/gpio.h |    5 ++++-
 drivers/gpio/da8xx_gpio.c                |    8 ++++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/arch/arm/include/asm/arch-davinci/gpio.h b/arch/arm/include/asm/arch-davinci/gpio.h
index fbbb1f3..06390c8 100644
--- a/arch/arm/include/asm/arch-davinci/gpio.h
+++ b/arch/arm/include/asm/arch-davinci/gpio.h
@@ -67,7 +67,10 @@ struct davinci_gpio_bank {
 
 #define gpio_status()		gpio_info()
 #define GPIO_NAME_SIZE		20
-#if defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
+#if defined(CONFIG_SOC_DM644X)
+/* GPIO0 to GPIO53, omit the V3.3 volts one */
+#define MAX_NUM_GPIOS		70
+#elif defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
 #define MAX_NUM_GPIOS		128
 #else
 #define MAX_NUM_GPIOS		144
diff --git a/drivers/gpio/da8xx_gpio.c b/drivers/gpio/da8xx_gpio.c
index 271b8d9..76648d2 100644
--- a/drivers/gpio/da8xx_gpio.c
+++ b/drivers/gpio/da8xx_gpio.c
@@ -31,6 +31,7 @@ static struct gpio_registry {
 	char name[GPIO_NAME_SIZE];
 } gpio_registry[MAX_NUM_GPIOS];
 
+#if defined(CONFIG_SOC_DA8XX)
 #define pinmux(x)       (&davinci_syscfg_regs->pinmux[x])
 
 #if defined(CONFIG_SOC_DA8XX) && !defined(CONFIG_SOC_DA850)
@@ -164,7 +165,7 @@ static const struct pinmux_config gpio_pinmux[] = {
 	{ pinmux(0), 1, 0 },
 	{ pinmux(0), 1, 1 },
 };
-#else
+#else /* CONFIG_SOC_DA8XX && CONFIG_SOC_DA850 */
 static const struct pinmux_config gpio_pinmux[] = {
 	{ pinmux(1), 8, 7 },	/* GP0[0] */
 	{ pinmux(1), 8, 6 },
@@ -311,7 +312,10 @@ static const struct pinmux_config gpio_pinmux[] = {
 	{ pinmux(18), 8, 3 },
 	{ pinmux(18), 8, 2 },
 };
-#endif
+#endif /* CONFIG_SOC_DA8XX && !CONFIG_SOC_DA850 */
+#else /* !CONFIG_SOC_DA8XX */
+#define davinci_configure_pin_mux(a, b)
+#endif /* CONFIG_SOC_DA8XX */
 
 int gpio_request(unsigned gpio, const char *label)
 {
-- 
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/20130311/12c7aa54/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-19 16:14 Tom Rini
  2013-02-21 17:52 ` R Sricharan
@ 2013-02-21 21:53 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-02-21 21:53 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 19 Feb 2013 11:14:05 -0500, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 9f024f62e4604274a23213dcee30016092e32e7b:
> 
>   Merge branch 'fixes' of git://git.denx.de/u-boot-mips (2013-02-15 12:23:42 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02:
> 
>   am335x evm: Add am335x_evm_spiboot target (2013-02-18 13:51:20 -0500)
> 
> ----------------------------------------------------------------
> Chase Maupin (3):
>       am335x_evm: Add NAND environment variables
>       am335x_evm: Add SPI environment variables
>       am335x_evm: Add NET environment variables
> 
> Enric Balletbo i Serra (3):
>       OMAP3: igep00x0: use official board names.
>       OMAP3: igep00x0: add missing include mach-types.h
>       OMAP3: igep00x0: Add new IGEP COM PROTON.
> 
> Howard Gray (1):
>       omap3: mvblx: change console to ttyO0 and make silent by default.
> 
> Ilya Yanok (4):
>       spl: support for booting via usbeth
>       am33xx: support for booting via usbeth
>       am335x_evm: enable support for booting via USB
>       doc/SPL/README.am335x-network: Document using ethernet (and USB) SPL
> 
> Lars Poeschel (1):
>       am33xx: pcm051: Remove wp pin mux for sd-card
> 
> Michael Jones (2):
>       omap3: mvblx: select fpgafilename according to orientation
>       omap3: mvblx: pass FPGA version to the kernel
> 
> Tom Rini (1):
>       am335x evm: Add am335x_evm_spiboot target
> 
> Tomas Novotny (2):
>       da8xx: ea20: Add the configuration define for the exact SoC variant
>       da8xx: Add the missing pinmux for da830 to the gpio driver
> 
> robertcnelson at gmail.com (2):
>       beagle: expansion boards: retry i2c_read with 16bit addressing
>       beagle: expansion boards: add LSR COM6L adapter
> 
>  MAINTAINERS                                  |    1 +
>  arch/arm/cpu/armv7/omap-common/boot-common.c |    3 +
>  arch/arm/include/asm/arch-am33xx/spl.h       |    1 +
>  arch/arm/include/asm/arch-davinci/gpio.h     |    4 +
>  board/isee/igep00x0/igep00x0.h               |    7 +-
>  board/matrix_vision/mvblx/fpga.c             |   14 ++-
>  board/matrix_vision/mvblx/sys_eeprom.c       |   24 +++++
>  board/phytec/pcm051/mux.c                    |    1 -
>  board/ti/am335x/board.c                      |   38 ++++----
>  board/ti/beagle/beagle.c                     |   14 +++
>  boards.cfg                                   |    2 +
>  common/spl/spl.c                             |    5 +
>  doc/SPL/README.am335x-network                |   92 ++++++++++++++++++
>  drivers/gpio/da8xx_gpio.c                    |  133 ++++++++++++++++++++++++++
>  include/configs/am335x_evm.h                 |   82 +++++++++++++++-
>  include/configs/ea20.h                       |    1 +
>  include/configs/igep00x0.h                   |    7 +-
>  include/configs/omap3_mvblx.h                |   25 +++--
>  spl/Makefile                                 |    2 +
>  19 files changed, 424 insertions(+), 32 deletions(-)
>  create mode 100644 doc/SPL/README.am335x-network
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-21 17:57   ` Tom Rini
@ 2013-02-21 18:02     ` R Sricharan
  0 siblings, 0 replies; 324+ messages in thread
From: R Sricharan @ 2013-02-21 18:02 UTC (permalink / raw)
  To: u-boot

On Thursday 21 February 2013 11:27 PM, Tom Rini wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 02/21/2013 12:52 PM, R Sricharan wrote:
>> Hi Tom,
>>
>> On Tuesday 19 February 2013 09:44 PM, Tom Rini wrote:
>>> Hello,
>>>
>>> The following changes since commit
>>> 9f024f62e4604274a23213dcee30016092e32e7b:
>>>
>>> Merge branch 'fixes' of git://git.denx.de/u-boot-mips (2013-02-15
>>> 12:23:42 -0500)
>>>
>>> are available in the git repository at:
>>>
>>>
>>> git://git.denx.de/u-boot-ti.git master
>>>
>>> for you to fetch changes up to
>>> 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02:
>>>
>>> am335x evm: Add am335x_evm_spiboot target (2013-02-18 13:51:20
>>> -0500)
>>
>> How about the OMAP cleanup[1], ES2.0[2] and DRA series[3]
>>
>> [1]
>> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/152834
>>
>> [2]
>> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153424
>>
>> [3]
>> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153551
>
> The last posting of parts of those were a bit close to when I had
> hoped to post the pull request.  All 3 of those will go in the next
> go-round probably with ti814x support, so long as the feedback is
> addressed in time (and I know Matt is at ELC right now).
>
  Ok, thanks for the update.

Regards,
  Sricharan

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-21 17:52 ` R Sricharan
@ 2013-02-21 17:57   ` Tom Rini
  2013-02-21 18:02     ` R Sricharan
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-02-21 17:57 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 02/21/2013 12:52 PM, R Sricharan wrote:
> Hi Tom,
> 
> On Tuesday 19 February 2013 09:44 PM, Tom Rini wrote:
>> Hello,
>> 
>> The following changes since commit 
>> 9f024f62e4604274a23213dcee30016092e32e7b:
>> 
>> Merge branch 'fixes' of git://git.denx.de/u-boot-mips (2013-02-15
>> 12:23:42 -0500)
>> 
>> are available in the git repository at:
>> 
>> 
>> git://git.denx.de/u-boot-ti.git master
>> 
>> for you to fetch changes up to 
>> 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02:
>> 
>> am335x evm: Add am335x_evm_spiboot target (2013-02-18 13:51:20 
>> -0500)
> 
> How about the OMAP cleanup[1], ES2.0[2] and DRA series[3]
> 
> [1] 
> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/152834
> 
> [2] 
> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153424
> 
> [3] 
> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153551

The last posting of parts of those were a bit close to when I had
hoped to post the pull request.  All 3 of those will go in the next
go-round probably with ti814x support, so long as the feedback is
addressed in time (and I know Matt is at ELC right now).

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRJmAgAAoJENk4IS6UOR1WRRUP/0UBWAXI5UYGCMYQh1WyPGxz
AEQf8nKOLtvCJGfda9IXnYbMZA+81mws63XRT3/F18qnfX/YVg6w5wEG1gJKCfpT
2WfOZduNMeKe0JeLnJ/lu8awaFz5gMtLNFh9S+IOTIyMVz7yseHmo7vRXQVMZAq0
kI5QoKHQOeAWSQrOVG2fPpj3afF9d9LlJ5MeuJVIf87/6vgYUpyieg7A+zgeRN7w
YbAskys8L5LZ5Ct6zv+pcHJIseseQqjYwJrlEhCyt3I3LEkMx6oRVCbemYhNK13e
SGHN+BeAZagYSqsn3Mgv4UNEh2FNGOdyX4CFAMXoNnzAGK46n1YR+9B9JQD+mTKi
SB3SnZ048IFqBvg9pDLeKLo+MUAwnjG/Ny+B+d6KHK/i+T8SVo7DGZ3eBmEauAuL
vbLNbTiqYeLb0XtIoYPx6bJV3sYpPdpOaYD/PvbD9Lo3VdaRfFrAQeoHrXnDn/Sd
qOJcHn/BNPkLRDJP/xjZc1areNeTRztEKXCR332awkpdASLQl4M+Bk1Tbl40MlBI
zONfgFZ4ZtGSN9tAUNygcSn8l0mbnkpl2sdrlhXpJlnJTjegeiLfOx09BU3lRq7x
XopY+0NvhMkbDLJiode37CbauGl5BCvcFIGX44gCHIHbMsn9Jctd72x4slRSY0oj
hQ2ystgjOFvQzFEPusv4
=j63e
-----END PGP SIGNATURE-----

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-19 16:14 Tom Rini
@ 2013-02-21 17:52 ` R Sricharan
  2013-02-21 17:57   ` Tom Rini
  2013-02-21 21:53 ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: R Sricharan @ 2013-02-21 17:52 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tuesday 19 February 2013 09:44 PM, Tom Rini wrote:
> Hello,
>
> The following changes since commit 9f024f62e4604274a23213dcee30016092e32e7b:
>
>    Merge branch 'fixes' of git://git.denx.de/u-boot-mips (2013-02-15 12:23:42 -0500)
>
> are available in the git repository at:
>
>
>    git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02:
>
>    am335x evm: Add am335x_evm_spiboot target (2013-02-18 13:51:20 -0500)

  How about the OMAP cleanup[1], ES2.0[2] and DRA series[3]

[1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/152834

[2] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153424

[3] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153551

Regards,
  Sricharan

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-02-19 16:14 Tom Rini
  2013-02-21 17:52 ` R Sricharan
  2013-02-21 21:53 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2013-02-19 16:14 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 9f024f62e4604274a23213dcee30016092e32e7b:

  Merge branch 'fixes' of git://git.denx.de/u-boot-mips (2013-02-15 12:23:42 -0500)

are available in the git repository at:


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

for you to fetch changes up to 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02:

  am335x evm: Add am335x_evm_spiboot target (2013-02-18 13:51:20 -0500)

----------------------------------------------------------------
Chase Maupin (3):
      am335x_evm: Add NAND environment variables
      am335x_evm: Add SPI environment variables
      am335x_evm: Add NET environment variables

Enric Balletbo i Serra (3):
      OMAP3: igep00x0: use official board names.
      OMAP3: igep00x0: add missing include mach-types.h
      OMAP3: igep00x0: Add new IGEP COM PROTON.

Howard Gray (1):
      omap3: mvblx: change console to ttyO0 and make silent by default.

Ilya Yanok (4):
      spl: support for booting via usbeth
      am33xx: support for booting via usbeth
      am335x_evm: enable support for booting via USB
      doc/SPL/README.am335x-network: Document using ethernet (and USB) SPL

Lars Poeschel (1):
      am33xx: pcm051: Remove wp pin mux for sd-card

Michael Jones (2):
      omap3: mvblx: select fpgafilename according to orientation
      omap3: mvblx: pass FPGA version to the kernel

Tom Rini (1):
      am335x evm: Add am335x_evm_spiboot target

Tomas Novotny (2):
      da8xx: ea20: Add the configuration define for the exact SoC variant
      da8xx: Add the missing pinmux for da830 to the gpio driver

robertcnelson at gmail.com (2):
      beagle: expansion boards: retry i2c_read with 16bit addressing
      beagle: expansion boards: add LSR COM6L adapter

 MAINTAINERS                                  |    1 +
 arch/arm/cpu/armv7/omap-common/boot-common.c |    3 +
 arch/arm/include/asm/arch-am33xx/spl.h       |    1 +
 arch/arm/include/asm/arch-davinci/gpio.h     |    4 +
 board/isee/igep00x0/igep00x0.h               |    7 +-
 board/matrix_vision/mvblx/fpga.c             |   14 ++-
 board/matrix_vision/mvblx/sys_eeprom.c       |   24 +++++
 board/phytec/pcm051/mux.c                    |    1 -
 board/ti/am335x/board.c                      |   38 ++++----
 board/ti/beagle/beagle.c                     |   14 +++
 boards.cfg                                   |    2 +
 common/spl/spl.c                             |    5 +
 doc/SPL/README.am335x-network                |   92 ++++++++++++++++++
 drivers/gpio/da8xx_gpio.c                    |  133 ++++++++++++++++++++++++++
 include/configs/am335x_evm.h                 |   82 +++++++++++++++-
 include/configs/ea20.h                       |    1 +
 include/configs/igep00x0.h                   |    7 +-
 include/configs/omap3_mvblx.h                |   25 +++--
 spl/Makefile                                 |    2 +
 19 files changed, 424 insertions(+), 32 deletions(-)
 create mode 100644 doc/SPL/README.am335x-network

-- 
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/20130219/ab54353b/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-07 19:19 Tom Rini
@ 2013-02-08 18:50 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-02-08 18:50 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 7 Feb 2013 14:19:44 -0500, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 5bedf884a8508f1b2f5b8f74e67d987a81ff05ed:
> 
>   ARM: highbank: use wfi macro instead of inline asm (2013-02-03 14:44: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 8978f860a64eecfa088c1088bc0c2002ec316362:
> 
>   am33xx: Drop gpio0_7_pin_mux from phytec pcm051 (2013-02-07 10:36:26 -0500)
> 
> ----------------------------------------------------------------
> Javier Martinez Canillas (4):
>       OMAP3: use a single board file for IGEP devices
>       OMAP3: igep00x0: add boot status GPIO LED
>       omap4: allow the use of a plain text env file instead boot scripts
>       OMAP3: igep00x0: fix a build warning on IGEP boards
> 
> Jeff Lance (1):
>       Add DDR3 support for AM335x-EVM (Version 1.5A)
> 
> Lars Poeschel (3):
>       am33xx: add a pulldown macro to pinmux config
>       pcm051: Add support for Phytec phyCORE-AM335x
>       am335x: display msg when reading MAC from efuse
> 
> Tom Rini (1):
>       am33xx: Drop gpio0_7_pin_mux from phytec pcm051
> 
> hvaibhav at ti.com (1):
>       AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree
> 
>  MAINTAINERS                                        |    3 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
>  arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
>  board/isee/igep0020/igep0020.h                     |  151 ----------
>  board/isee/igep0030/Makefile                       |   43 ---
>  board/isee/igep0030/igep0030.c                     |  117 --------
>  board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
>  .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
>  .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
>  board/phytec/pcm051/Makefile                       |   46 +++
>  board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
>  board/phytec/pcm051/board.h                        |   33 +++
>  board/phytec/pcm051/mux.c                          |  128 +++++++++
>  board/ti/am335x/board.c                            |   43 ++-
>  boards.cfg                                         |    9 +-
>  include/configs/am335x_evm.h                       |    1 +
>  include/configs/igep00x0.h                         |    5 +
>  include/configs/omap4_common.h                     |   17 +-
>  include/configs/pcm051.h                           |  301 ++++++++++++++++++++
>  19 files changed, 946 insertions(+), 342 deletions(-)
>  delete mode 100644 board/isee/igep0020/igep0020.h
>  delete mode 100644 board/isee/igep0030/Makefile
>  delete mode 100644 board/isee/igep0030/igep0030.c
>  rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
>  rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
>  rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
>  create mode 100644 board/phytec/pcm051/Makefile
>  create mode 100644 board/phytec/pcm051/board.c
>  create mode 100644 board/phytec/pcm051/board.h
>  create mode 100644 board/phytec/pcm051/mux.c
>  create mode 100644 include/configs/pcm051.h
> 
> The only change from last time, aside from what this is based on top of
> is that I've turned Lars' Cc into an Ack, as he has acked the change.
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-02-07 19:19 Tom Rini
  2013-02-08 18:50 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-02-07 19:19 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 5bedf884a8508f1b2f5b8f74e67d987a81ff05ed:

  ARM: highbank: use wfi macro instead of inline asm (2013-02-03 14:44: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 8978f860a64eecfa088c1088bc0c2002ec316362:

  am33xx: Drop gpio0_7_pin_mux from phytec pcm051 (2013-02-07 10:36:26 -0500)

----------------------------------------------------------------
Javier Martinez Canillas (4):
      OMAP3: use a single board file for IGEP devices
      OMAP3: igep00x0: add boot status GPIO LED
      omap4: allow the use of a plain text env file instead boot scripts
      OMAP3: igep00x0: fix a build warning on IGEP boards

Jeff Lance (1):
      Add DDR3 support for AM335x-EVM (Version 1.5A)

Lars Poeschel (3):
      am33xx: add a pulldown macro to pinmux config
      pcm051: Add support for Phytec phyCORE-AM335x
      am335x: display msg when reading MAC from efuse

Tom Rini (1):
      am33xx: Drop gpio0_7_pin_mux from phytec pcm051

hvaibhav at ti.com (1):
      AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree

 MAINTAINERS                                        |    3 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
 arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
 board/isee/igep0020/igep0020.h                     |  151 ----------
 board/isee/igep0030/Makefile                       |   43 ---
 board/isee/igep0030/igep0030.c                     |  117 --------
 board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
 .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
 .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
 board/phytec/pcm051/Makefile                       |   46 +++
 board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
 board/phytec/pcm051/board.h                        |   33 +++
 board/phytec/pcm051/mux.c                          |  128 +++++++++
 board/ti/am335x/board.c                            |   43 ++-
 boards.cfg                                         |    9 +-
 include/configs/am335x_evm.h                       |    1 +
 include/configs/igep00x0.h                         |    5 +
 include/configs/omap4_common.h                     |   17 +-
 include/configs/pcm051.h                           |  301 ++++++++++++++++++++
 19 files changed, 946 insertions(+), 342 deletions(-)
 delete mode 100644 board/isee/igep0020/igep0020.h
 delete mode 100644 board/isee/igep0030/Makefile
 delete mode 100644 board/isee/igep0030/igep0030.c
 rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
 rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
 rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
 create mode 100644 board/phytec/pcm051/Makefile
 create mode 100644 board/phytec/pcm051/board.c
 create mode 100644 board/phytec/pcm051/board.h
 create mode 100644 board/phytec/pcm051/mux.c
 create mode 100644 include/configs/pcm051.h

The only change from last time, aside from what this is based on top of
is that I've turned Lars' Cc into an Ack, as he has acked the change.

-- 
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/20130207/4f9e3ff0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-02-04 20:13 Tom Rini
@ 2013-02-07 19:18 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2013-02-07 19:18 UTC (permalink / raw)
  To: u-boot

On Mon, Feb 04, 2013 at 03:13:42PM -0500, Tom Rini wrote:

> Hello,
> 
> The following changes since commit 1071e736ae1bfb4550dfac25ca865b06ef79c00e:
> 
>   Merge 'u-boot/master' (v2013.01.01) into 'u-boot-arm/master' (2013-02-03 15:30:20 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to c823894ecae9dd8cbc11e0b4387187bae7bb730c:
> 
>   am33xx: Drop gpio0_7_pin_mux from phytec pcm051 (2013-02-04 13:05:02 -0500)
> 
> ----------------------------------------------------------------
> Javier Martinez Canillas (4):
>       OMAP3: use a single board file for IGEP devices
>       OMAP3: igep00x0: add boot status GPIO LED
>       omap4: allow the use of a plain text env file instead boot scripts
>       OMAP3: igep00x0: fix a build warning on IGEP boards
> 
> Jeff Lance (1):
>       Add DDR3 support for AM335x-EVM (Version 1.5A)
> 
> Lars Poeschel (3):
>       am33xx: add a pulldown macro to pinmux config
>       pcm051: Add support for Phytec phyCORE-AM335x
>       am335x: display msg when reading MAC from efuse
> 
> Tom Rini (1):
>       am33xx: Drop gpio0_7_pin_mux from phytec pcm051
> 
> hvaibhav at ti.com (1):
>       AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree
> 
>  MAINTAINERS                                        |    3 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
>  arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
>  board/isee/igep0020/igep0020.h                     |  151 ----------
>  board/isee/igep0030/Makefile                       |   43 ---
>  board/isee/igep0030/igep0030.c                     |  117 --------
>  board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
>  .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
>  .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
>  board/phytec/pcm051/Makefile                       |   46 +++
>  board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
>  board/phytec/pcm051/board.h                        |   33 +++
>  board/phytec/pcm051/mux.c                          |  128 +++++++++
>  board/ti/am335x/board.c                            |   43 ++-
>  boards.cfg                                         |    9 +-
>  include/configs/am335x_evm.h                       |    1 +
>  include/configs/igep00x0.h                         |    5 +
>  include/configs/omap4_common.h                     |   17 +-
>  include/configs/pcm051.h                           |  301 ++++++++++++++++++++
>  19 files changed, 946 insertions(+), 342 deletions(-)
>  delete mode 100644 board/isee/igep0020/igep0020.h
>  delete mode 100644 board/isee/igep0030/Makefile
>  delete mode 100644 board/isee/igep0030/igep0030.c
>  rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
>  rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
>  rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
>  create mode 100644 board/phytec/pcm051/Makefile
>  create mode 100644 board/phytec/pcm051/board.c
>  create mode 100644 board/phytec/pcm051/board.h
>  create mode 100644 board/phytec/pcm051/mux.c
>  create mode 100644 include/configs/pcm051.h

This pull request has been replaced.

-- 
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/20130207/f3be5f21/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-02-04 20:13 Tom Rini
  2013-02-07 19:18 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-02-04 20:13 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 1071e736ae1bfb4550dfac25ca865b06ef79c00e:

  Merge 'u-boot/master' (v2013.01.01) into 'u-boot-arm/master' (2013-02-03 15:30:20 +0100)

are available in the git repository at:


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

for you to fetch changes up to c823894ecae9dd8cbc11e0b4387187bae7bb730c:

  am33xx: Drop gpio0_7_pin_mux from phytec pcm051 (2013-02-04 13:05:02 -0500)

----------------------------------------------------------------
Javier Martinez Canillas (4):
      OMAP3: use a single board file for IGEP devices
      OMAP3: igep00x0: add boot status GPIO LED
      omap4: allow the use of a plain text env file instead boot scripts
      OMAP3: igep00x0: fix a build warning on IGEP boards

Jeff Lance (1):
      Add DDR3 support for AM335x-EVM (Version 1.5A)

Lars Poeschel (3):
      am33xx: add a pulldown macro to pinmux config
      pcm051: Add support for Phytec phyCORE-AM335x
      am335x: display msg when reading MAC from efuse

Tom Rini (1):
      am33xx: Drop gpio0_7_pin_mux from phytec pcm051

hvaibhav at ti.com (1):
      AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree

 MAINTAINERS                                        |    3 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
 arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
 board/isee/igep0020/igep0020.h                     |  151 ----------
 board/isee/igep0030/Makefile                       |   43 ---
 board/isee/igep0030/igep0030.c                     |  117 --------
 board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
 .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
 .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
 board/phytec/pcm051/Makefile                       |   46 +++
 board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
 board/phytec/pcm051/board.h                        |   33 +++
 board/phytec/pcm051/mux.c                          |  128 +++++++++
 board/ti/am335x/board.c                            |   43 ++-
 boards.cfg                                         |    9 +-
 include/configs/am335x_evm.h                       |    1 +
 include/configs/igep00x0.h                         |    5 +
 include/configs/omap4_common.h                     |   17 +-
 include/configs/pcm051.h                           |  301 ++++++++++++++++++++
 19 files changed, 946 insertions(+), 342 deletions(-)
 delete mode 100644 board/isee/igep0020/igep0020.h
 delete mode 100644 board/isee/igep0030/Makefile
 delete mode 100644 board/isee/igep0030/igep0030.c
 rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
 rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
 rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
 create mode 100644 board/phytec/pcm051/Makefile
 create mode 100644 board/phytec/pcm051/board.c
 create mode 100644 board/phytec/pcm051/board.h
 create mode 100644 board/phytec/pcm051/mux.c
 create mode 100644 include/configs/pcm051.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/20130204/869ca3dd/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-01-26 10:55 ` Albert ARIBAUD
@ 2013-01-26 12:22   ` Javier Martinez Canillas
  0 siblings, 0 replies; 324+ messages in thread
From: Javier Martinez Canillas @ 2013-01-26 12:22 UTC (permalink / raw)
  To: u-boot

On Sat, Jan 26, 2013 at 11:55 AM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Tom,
>
> On Fri, 25 Jan 2013 17:13:43 -0500, Tom Rini <trini@ti.com> wrote:
>
>> Hello,
>>
>> The following changes since commit 7cb70a34b976e68f6348ea0718780e8f38901482:
>>
>>   fdt: fix dts preprocessor options (2013-01-17 09:07:59 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> for you to fetch changes up to e25a6b504bb0c6e7a3a20cc0d2afacb6d88d29b1:
>>
>>   AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree (2013-01-25 17:10:43 -0500)
>>
>> ----------------------------------------------------------------
>> Javier Martinez Canillas (3):
>>       OMAP3: use a single board file for IGEP devices
>>       OMAP3: igep00x0: add boot status GPIO LED
>>       omap4: allow the use of a plain text env file instead boot scripts
>>
>> Jeff Lance (1):
>>       Add DDR3 support for AM335x-EVM (Version 1.5A)
>>
>> Lars Poeschel (3):
>>       am33xx: add a pulldown macro to pinmux config
>>       pcm051: Add support for Phytec phyCORE-AM335x
>>       am335x: display msg when reading MAC from efuse
>>
>> hvaibhav at ti.com (1):
>>       AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree
>>
>>  MAINTAINERS                                        |    3 +
>>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
>>  arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
>>  board/isee/igep0020/igep0020.h                     |  151 ----------
>>  board/isee/igep0030/Makefile                       |   43 ---
>>  board/isee/igep0030/igep0030.c                     |  117 --------
>>  board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
>>  .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
>>  .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
>>  board/phytec/pcm051/Makefile                       |   46 +++
>>  board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
>>  board/phytec/pcm051/board.h                        |   33 +++
>>  board/phytec/pcm051/mux.c                          |  133 +++++++++
>>  board/ti/am335x/board.c                            |   43 ++-
>>  boards.cfg                                         |    9 +-
>>  include/configs/am335x_evm.h                       |    1 +
>>  include/configs/igep00x0.h                         |    5 +
>>  include/configs/omap4_common.h                     |   17 +-
>>  include/configs/pcm051.h                           |  301 ++++++++++++++++++++
>>  19 files changed, 951 insertions(+), 342 deletions(-)
>>  delete mode 100644 board/isee/igep0020/igep0020.h
>>  delete mode 100644 board/isee/igep0030/Makefile
>>  delete mode 100644 board/isee/igep0030/igep0030.c
>>  rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
>>  rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
>>  rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
>>  create mode 100644 board/phytec/pcm051/Makefile
>>  create mode 100644 board/phytec/pcm051/board.c
>>  create mode 100644 board/phytec/pcm051/board.h
>>  create mode 100644 board/phytec/pcm051/mux.c
>>  create mode 100644 include/configs/pcm051.h
>
> Tested with ELDK5.3, this PR introduces warnings in 5 boards.
>
> pcm051 (introduced by 372d1d9367265e2ca698f82197ad657567c405f9):
>
> mux.c:66:30: warning: 'gpio0_7_pin_mux' defined but not used
> [-Wunused-variable]
>
> igep0020, igem0020_nand, igep0030, igep0030_nand (introduced by
> b689cd584c17b985e15744c24710d5ad34a450b0):
>
> igep00x0.h:168:24: warning: backslash-newline at end of file [enabled
> by default]
>
> Commit authors CC:ed.
>
> Amicalement,
> --
> Albert.

Hi Albert,

I didn't see the warning until now, sorry for being so carelessly. In
the future I'll always check for warnings before sending patches.

I already sent a patch to fix this which btw is just this one-liner:

diff --git a/board/isee/igep00x0/igep00x0.h b/board/isee/igep00x0/igep00x0.h
index 3a84335..ea1e9ac 100644
--- a/board/isee/igep00x0/igep00x0.h
+++ b/board/isee/igep00x0/igep00x0.h
@@ -167,4 +167,4 @@ static void setup_net_chip(void);

 #define MUX_IGEP0030() \
        MUX_VAL(CP(UART1_TX),       (IDIS | PTD | DIS | M0)) /* UART1_TX */\
-       MUX_VAL(CP(UART1_RX),       (IEN  | PTD | DIS | M0)) /* UART1_RX */\
+       MUX_VAL(CP(UART1_RX),       (IEN  | PTD | DIS | M0)) /* UART1_RX */

Thanks a lot and sorry for the inconvenience.

Best regards,
Javier

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

* [U-Boot] Please pull u-boot-ti/master
  2013-01-25 22:13 Tom Rini
@ 2013-01-26 10:55 ` Albert ARIBAUD
  2013-01-26 12:22   ` Javier Martinez Canillas
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2013-01-26 10:55 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 25 Jan 2013 17:13:43 -0500, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 7cb70a34b976e68f6348ea0718780e8f38901482:
> 
>   fdt: fix dts preprocessor options (2013-01-17 09:07:59 -0700)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to e25a6b504bb0c6e7a3a20cc0d2afacb6d88d29b1:
> 
>   AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree (2013-01-25 17:10:43 -0500)
> 
> ----------------------------------------------------------------
> Javier Martinez Canillas (3):
>       OMAP3: use a single board file for IGEP devices
>       OMAP3: igep00x0: add boot status GPIO LED
>       omap4: allow the use of a plain text env file instead boot scripts
> 
> Jeff Lance (1):
>       Add DDR3 support for AM335x-EVM (Version 1.5A)
> 
> Lars Poeschel (3):
>       am33xx: add a pulldown macro to pinmux config
>       pcm051: Add support for Phytec phyCORE-AM335x
>       am335x: display msg when reading MAC from efuse
> 
> hvaibhav at ti.com (1):
>       AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree
> 
>  MAINTAINERS                                        |    3 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
>  arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
>  board/isee/igep0020/igep0020.h                     |  151 ----------
>  board/isee/igep0030/Makefile                       |   43 ---
>  board/isee/igep0030/igep0030.c                     |  117 --------
>  board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
>  .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
>  .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
>  board/phytec/pcm051/Makefile                       |   46 +++
>  board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
>  board/phytec/pcm051/board.h                        |   33 +++
>  board/phytec/pcm051/mux.c                          |  133 +++++++++
>  board/ti/am335x/board.c                            |   43 ++-
>  boards.cfg                                         |    9 +-
>  include/configs/am335x_evm.h                       |    1 +
>  include/configs/igep00x0.h                         |    5 +
>  include/configs/omap4_common.h                     |   17 +-
>  include/configs/pcm051.h                           |  301 ++++++++++++++++++++
>  19 files changed, 951 insertions(+), 342 deletions(-)
>  delete mode 100644 board/isee/igep0020/igep0020.h
>  delete mode 100644 board/isee/igep0030/Makefile
>  delete mode 100644 board/isee/igep0030/igep0030.c
>  rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
>  rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
>  rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
>  create mode 100644 board/phytec/pcm051/Makefile
>  create mode 100644 board/phytec/pcm051/board.c
>  create mode 100644 board/phytec/pcm051/board.h
>  create mode 100644 board/phytec/pcm051/mux.c
>  create mode 100644 include/configs/pcm051.h

Tested with ELDK5.3, this PR introduces warnings in 5 boards.

pcm051 (introduced by 372d1d9367265e2ca698f82197ad657567c405f9):

mux.c:66:30: warning: 'gpio0_7_pin_mux' defined but not used
[-Wunused-variable]

igep0020, igem0020_nand, igep0030, igep0030_nand (introduced by
b689cd584c17b985e15744c24710d5ad34a450b0):

igep00x0.h:168:24: warning: backslash-newline at end of file [enabled
by default]

Commit authors CC:ed.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2013-01-25 22:13 Tom Rini
  2013-01-26 10:55 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2013-01-25 22:13 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 7cb70a34b976e68f6348ea0718780e8f38901482:

  fdt: fix dts preprocessor options (2013-01-17 09:07:59 -0700)

are available in the git repository at:

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

for you to fetch changes up to e25a6b504bb0c6e7a3a20cc0d2afacb6d88d29b1:

  AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree (2013-01-25 17:10:43 -0500)

----------------------------------------------------------------
Javier Martinez Canillas (3):
      OMAP3: use a single board file for IGEP devices
      OMAP3: igep00x0: add boot status GPIO LED
      omap4: allow the use of a plain text env file instead boot scripts

Jeff Lance (1):
      Add DDR3 support for AM335x-EVM (Version 1.5A)

Lars Poeschel (3):
      am33xx: add a pulldown macro to pinmux config
      pcm051: Add support for Phytec phyCORE-AM335x
      am335x: display msg when reading MAC from efuse

hvaibhav at ti.com (1):
      AM335X: Set fdt_high for AM335X devices to enable booting with Device Tree

 MAINTAINERS                                        |    3 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |   34 +++
 arch/arm/include/asm/arch-am33xx/mux.h             |    3 +-
 board/isee/igep0020/igep0020.h                     |  151 ----------
 board/isee/igep0030/Makefile                       |   43 ---
 board/isee/igep0030/igep0030.c                     |  117 --------
 board/isee/{igep0020 => igep00x0}/Makefile         |    2 +-
 .../{igep0020/igep0020.c => igep00x0/igep00x0.c}   |   51 +++-
 .../{igep0030/igep0030.h => igep00x0/igep00x0.h}   |   35 ++-
 board/phytec/pcm051/Makefile                       |   46 +++
 board/phytec/pcm051/board.c                        |  266 +++++++++++++++++
 board/phytec/pcm051/board.h                        |   33 +++
 board/phytec/pcm051/mux.c                          |  133 +++++++++
 board/ti/am335x/board.c                            |   43 ++-
 boards.cfg                                         |    9 +-
 include/configs/am335x_evm.h                       |    1 +
 include/configs/igep00x0.h                         |    5 +
 include/configs/omap4_common.h                     |   17 +-
 include/configs/pcm051.h                           |  301 ++++++++++++++++++++
 19 files changed, 951 insertions(+), 342 deletions(-)
 delete mode 100644 board/isee/igep0020/igep0020.h
 delete mode 100644 board/isee/igep0030/Makefile
 delete mode 100644 board/isee/igep0030/igep0030.c
 rename board/isee/{igep0020 => igep00x0}/Makefile (98%)
 rename board/isee/{igep0020/igep0020.c => igep00x0/igep00x0.c} (86%)
 rename board/isee/{igep0030/igep0030.h => igep00x0/igep00x0.h} (93%)
 create mode 100644 board/phytec/pcm051/Makefile
 create mode 100644 board/phytec/pcm051/board.c
 create mode 100644 board/phytec/pcm051/board.h
 create mode 100644 board/phytec/pcm051/mux.c
 create mode 100644 include/configs/pcm051.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/20130125/fea4cf31/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2013-01-11  0:59 Tom Rini
@ 2013-01-11 17:23 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-01-11 17:23 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 10 Jan 2013 17:59:45 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 612404c28a64a6df300642a1550a65dcc8e01f82:
> 
>   Merge 'u-boot-atmel/master' into 'u-boot-arm/master' (2013-01-09 20:01:48 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 039cbaefcf57338cc9b6a3c656db64e7907838db:
> 
>   OMAP3: igep00x0: add CONFIG_SYS_NS16550_BROKEN_TEMT (2013-01-10 15:09:24 -0700)
> 
> ----------------------------------------------------------------
> Javier Martinez Canillas (3):
>       OMAP3: igep00x0: add CONFIG_SPL_BOARD_INIT for CONFIG_SPL_NAND_SUPPORT
>       serial/ns16550: add an option to avoid hanging on broken platforms
>       OMAP3: igep00x0: add CONFIG_SYS_NS16550_BROKEN_TEMT
> 
> Nishanth Menon (1):
>       Makefile: remove MLO.byteswap on clobber
> 
>  Makefile                   |    2 +-
>  README                     |    8 ++++++++
>  drivers/serial/ns16550.c   |    2 ++
>  include/configs/igep00x0.h |    4 ++++
>  4 files changed, 15 insertions(+), 1 deletion(-)
> 
> These are all small but important fixes that either localized to a set
> of machines (IGEP devices) or fixing the 'clean' rules.  I've put this
> through the build cycle I normally do on master and nothing unexpected
> shows up (but not everything builds as u-boot-arm is behind master).
> 

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

Amicalement,
-- 
Albert.

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

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

Hello,

The following changes since commit 612404c28a64a6df300642a1550a65dcc8e01f82:

  Merge 'u-boot-atmel/master' into 'u-boot-arm/master' (2013-01-09 20:01:48 +0100)

are available in the git repository at:


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

for you to fetch changes up to 039cbaefcf57338cc9b6a3c656db64e7907838db:

  OMAP3: igep00x0: add CONFIG_SYS_NS16550_BROKEN_TEMT (2013-01-10 15:09:24 -0700)

----------------------------------------------------------------
Javier Martinez Canillas (3):
      OMAP3: igep00x0: add CONFIG_SPL_BOARD_INIT for CONFIG_SPL_NAND_SUPPORT
      serial/ns16550: add an option to avoid hanging on broken platforms
      OMAP3: igep00x0: add CONFIG_SYS_NS16550_BROKEN_TEMT

Nishanth Menon (1):
      Makefile: remove MLO.byteswap on clobber

 Makefile                   |    2 +-
 README                     |    8 ++++++++
 drivers/serial/ns16550.c   |    2 ++
 include/configs/igep00x0.h |    4 ++++
 4 files changed, 15 insertions(+), 1 deletion(-)

These are all small but important fixes that either localized to a set
of machines (IGEP devices) or fixing the 'clean' rules.  I've put this
through the build cycle I normally do on master and nothing unexpected
shows up (but not everything builds as u-boot-arm is behind master).

-- 
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/20130110/6f21d114/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-12-10 20:18 Tom Rini
@ 2013-01-08 13:12 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2013-01-08 13:12 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 10 Dec 2012 13:18:48 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit b8a7c467960ffb4d5a5e1eef5f7783fb6f594542:
> 
>   Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2012-11-25 13:01:58 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 9bd5c1ad0db802c9f8d49d72b443f03431cf6a89:
> 
>   cm-t35: enable zero bootdelay check (2012-12-10 12:45:35 -0700)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (1):
>       omap3/mem.c: remove unused defines
> 
> Davide Bonfanti (1):
>       davinci: fixed cpu reset
> 
> Ilya Yanok (6):
>       OMAP: include sys_proto.h from boot-common
>       am335x_evm: add nand pinmux definition
>       am33xx: NAND support
>       am335x_evm: enable NAND support
>       am33xx_spl_bch: simple SPL nand loader for AM33XX
>       am335x_evm: enable SPL NAND support
> 
> Lokesh Vutla (1):
>       omap: emif: configure emif only when required
> 
> Mansoor Ahamed (2):
>       am33xx: add ELM support
>       omap_gpmc: BCH8 support (ELM based)
> 
> Nikita Kiryanov (2):
>       gpio: add gpio_is_valid() to omap_gpio API
>       cm-t35: enable zero bootdelay check
> 
> Peter Barada (1):
>       Pass sdrc timing values through board_sdrc_timings structure
> 
> Robert P. J. Day (4):
>       omap3_beagle.h: Fix comment for true/false return value.
>       omap3: Add a few comments to "#endif"s for readability.
>       omap4: Add comments on some "#endif"s for readability.
>       OMAP: Tweak omap-common/Makefile since reset.S -> reset.c
> 
> Stefano Babic (2):
>       OMAP3: fix panel timing on the mt_ventoux board
>       OMAP3: TAM3517: add macros for reading eeprom
> 
> Thomas Weber (1):
>       OMAP3: Remove unused PHYS_SDRAM_1_SIZE
> 
> Vincent Stehl? (2):
>       omap24xx_i2c: Handle wait_for_bb error
>       power: twl6035: complain on LDO9 error
> 
> Yegor Yefremov (2):
>       am335x: disable internal delay for RGMII mode
>       am335x: cpsw: make phy address configurable
> 
> ajoy (1):
>       OMAP3 SPI : Fixed bugs related to SPI transfer
> 
>  arch/arm/cpu/arm926ejs/davinci/reset.c       |    2 +-
>  arch/arm/cpu/armv7/am33xx/Makefile           |    2 +
>  arch/arm/cpu/armv7/am33xx/board.c            |    1 +
>  arch/arm/cpu/armv7/am33xx/clock.c            |   10 +
>  arch/arm/cpu/armv7/am33xx/elm.c              |  212 ++++++++++++++
>  arch/arm/cpu/armv7/am33xx/mem.c              |  101 +++++++
>  arch/arm/cpu/armv7/omap-common/Makefile      |    5 +-
>  arch/arm/cpu/armv7/omap-common/boot-common.c |    1 +
>  arch/arm/cpu/armv7/omap-common/emif-common.c |   41 ++-
>  arch/arm/cpu/armv7/omap3/board.c             |    4 +-
>  arch/arm/cpu/armv7/omap3/mem.c               |   18 +-
>  arch/arm/cpu/armv7/omap3/sdrc.c              |   36 +--
>  arch/arm/cpu/armv7/omap4/clocks.c            |    2 +-
>  arch/arm/cpu/armv7/omap4/hwinit.c            |    4 +-
>  arch/arm/include/asm/arch-am33xx/cpu.h       |   53 ++++
>  arch/arm/include/asm/arch-am33xx/elm.h       |   93 ++++++
>  arch/arm/include/asm/arch-am33xx/hardware.h  |    3 +
>  arch/arm/include/asm/arch-am33xx/mem.h       |   83 ++++++
>  arch/arm/include/asm/arch-am33xx/omap_gpmc.h |  120 ++++++++
>  arch/arm/include/asm/arch-am33xx/sys_proto.h |    3 +
>  arch/arm/include/asm/arch-omap3/sys_proto.h  |   13 +-
>  arch/arm/include/asm/omap_gpio.h             |    7 +
>  board/corscience/tricorder/tricorder.c       |   13 +-
>  board/isee/igep0020/igep0020.c               |   29 +-
>  board/isee/igep0030/igep0030.c               |   29 +-
>  board/overo/overo.c                          |   37 ++-
>  board/technexion/twister/twister.c           |   10 +-
>  board/teejet/mt_ventoux/mt_ventoux.c         |   23 +-
>  board/ti/am335x/board.c                      |    4 +-
>  board/ti/am335x/mux.c                        |   22 ++
>  board/ti/beagle/beagle.c                     |   53 ++--
>  board/ti/evm/evm.c                           |   19 +-
>  board/timll/devkit8000/devkit8000.c          |   13 +-
>  drivers/gpio/omap_gpio.c                     |   10 +-
>  drivers/i2c/omap24xx_i2c.c                   |   20 +-
>  drivers/mtd/nand/Makefile                    |    1 +
>  drivers/mtd/nand/am335x_spl_bch.c            |  238 +++++++++++++++
>  drivers/mtd/nand/omap_gpmc.c                 |  403 +++++++++++++++++++++++++-
>  drivers/net/cpsw.c                           |    5 +-
>  drivers/power/twl6035.c                      |   17 +-
>  drivers/spi/omap3_spi.c                      |   76 +++--
>  drivers/spi/omap3_spi.h                      |    1 +
>  include/configs/am335x_evm.h                 |   47 +++
>  include/configs/cm_t35.h                     |    2 +-
>  include/configs/dig297.h                     |    1 -
>  include/configs/igep00x0.h                   |    1 -
>  include/configs/mcx.h                        |    1 -
>  include/configs/omap3_beagle.h               |    2 +-
>  include/configs/omap3_mvblx.h                |    1 -
>  include/configs/omap3_pandora.h              |    1 -
>  include/configs/omap3_sdp3430.h              |    1 -
>  include/configs/omap3_zoom1.h                |    1 -
>  include/configs/omap3_zoom2.h                |    1 -
>  include/configs/tam3517-common.h             |   59 +++-
>  include/configs/tricorder.h                  |    1 -
>  include/twl6035.h                            |    2 +-
>  56 files changed, 1714 insertions(+), 244 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/am33xx/elm.c
>  create mode 100644 arch/arm/cpu/armv7/am33xx/mem.c
>  create mode 100644 arch/arm/include/asm/arch-am33xx/elm.h
>  create mode 100644 arch/arm/include/asm/arch-am33xx/mem.h
>  create mode 100644 arch/arm/include/asm/arch-am33xx/omap_gpmc.h
>  create mode 100644 drivers/mtd/nand/am335x_spl_bch.c
> 
> Thanks!
> 

Applied to u-boot-arm/master with a minor manual merge, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-12-10 20:18 Tom Rini
  2013-01-08 13:12 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-12-10 20:18 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit b8a7c467960ffb4d5a5e1eef5f7783fb6f594542:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2012-11-25 13:01:58 +0100)

are available in the git repository at:


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

for you to fetch changes up to 9bd5c1ad0db802c9f8d49d72b443f03431cf6a89:

  cm-t35: enable zero bootdelay check (2012-12-10 12:45:35 -0700)

----------------------------------------------------------------
Andreas Bie??mann (1):
      omap3/mem.c: remove unused defines

Davide Bonfanti (1):
      davinci: fixed cpu reset

Ilya Yanok (6):
      OMAP: include sys_proto.h from boot-common
      am335x_evm: add nand pinmux definition
      am33xx: NAND support
      am335x_evm: enable NAND support
      am33xx_spl_bch: simple SPL nand loader for AM33XX
      am335x_evm: enable SPL NAND support

Lokesh Vutla (1):
      omap: emif: configure emif only when required

Mansoor Ahamed (2):
      am33xx: add ELM support
      omap_gpmc: BCH8 support (ELM based)

Nikita Kiryanov (2):
      gpio: add gpio_is_valid() to omap_gpio API
      cm-t35: enable zero bootdelay check

Peter Barada (1):
      Pass sdrc timing values through board_sdrc_timings structure

Robert P. J. Day (4):
      omap3_beagle.h: Fix comment for true/false return value.
      omap3: Add a few comments to "#endif"s for readability.
      omap4: Add comments on some "#endif"s for readability.
      OMAP: Tweak omap-common/Makefile since reset.S -> reset.c

Stefano Babic (2):
      OMAP3: fix panel timing on the mt_ventoux board
      OMAP3: TAM3517: add macros for reading eeprom

Thomas Weber (1):
      OMAP3: Remove unused PHYS_SDRAM_1_SIZE

Vincent Stehl?? (2):
      omap24xx_i2c: Handle wait_for_bb error
      power: twl6035: complain on LDO9 error

Yegor Yefremov (2):
      am335x: disable internal delay for RGMII mode
      am335x: cpsw: make phy address configurable

ajoy (1):
      OMAP3 SPI : Fixed bugs related to SPI transfer

 arch/arm/cpu/arm926ejs/davinci/reset.c       |    2 +-
 arch/arm/cpu/armv7/am33xx/Makefile           |    2 +
 arch/arm/cpu/armv7/am33xx/board.c            |    1 +
 arch/arm/cpu/armv7/am33xx/clock.c            |   10 +
 arch/arm/cpu/armv7/am33xx/elm.c              |  212 ++++++++++++++
 arch/arm/cpu/armv7/am33xx/mem.c              |  101 +++++++
 arch/arm/cpu/armv7/omap-common/Makefile      |    5 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c |    1 +
 arch/arm/cpu/armv7/omap-common/emif-common.c |   41 ++-
 arch/arm/cpu/armv7/omap3/board.c             |    4 +-
 arch/arm/cpu/armv7/omap3/mem.c               |   18 +-
 arch/arm/cpu/armv7/omap3/sdrc.c              |   36 +--
 arch/arm/cpu/armv7/omap4/clocks.c            |    2 +-
 arch/arm/cpu/armv7/omap4/hwinit.c            |    4 +-
 arch/arm/include/asm/arch-am33xx/cpu.h       |   53 ++++
 arch/arm/include/asm/arch-am33xx/elm.h       |   93 ++++++
 arch/arm/include/asm/arch-am33xx/hardware.h  |    3 +
 arch/arm/include/asm/arch-am33xx/mem.h       |   83 ++++++
 arch/arm/include/asm/arch-am33xx/omap_gpmc.h |  120 ++++++++
 arch/arm/include/asm/arch-am33xx/sys_proto.h |    3 +
 arch/arm/include/asm/arch-omap3/sys_proto.h  |   13 +-
 arch/arm/include/asm/omap_gpio.h             |    7 +
 board/corscience/tricorder/tricorder.c       |   13 +-
 board/isee/igep0020/igep0020.c               |   29 +-
 board/isee/igep0030/igep0030.c               |   29 +-
 board/overo/overo.c                          |   37 ++-
 board/technexion/twister/twister.c           |   10 +-
 board/teejet/mt_ventoux/mt_ventoux.c         |   23 +-
 board/ti/am335x/board.c                      |    4 +-
 board/ti/am335x/mux.c                        |   22 ++
 board/ti/beagle/beagle.c                     |   53 ++--
 board/ti/evm/evm.c                           |   19 +-
 board/timll/devkit8000/devkit8000.c          |   13 +-
 drivers/gpio/omap_gpio.c                     |   10 +-
 drivers/i2c/omap24xx_i2c.c                   |   20 +-
 drivers/mtd/nand/Makefile                    |    1 +
 drivers/mtd/nand/am335x_spl_bch.c            |  238 +++++++++++++++
 drivers/mtd/nand/omap_gpmc.c                 |  403 +++++++++++++++++++++++++-
 drivers/net/cpsw.c                           |    5 +-
 drivers/power/twl6035.c                      |   17 +-
 drivers/spi/omap3_spi.c                      |   76 +++--
 drivers/spi/omap3_spi.h                      |    1 +
 include/configs/am335x_evm.h                 |   47 +++
 include/configs/cm_t35.h                     |    2 +-
 include/configs/dig297.h                     |    1 -
 include/configs/igep00x0.h                   |    1 -
 include/configs/mcx.h                        |    1 -
 include/configs/omap3_beagle.h               |    2 +-
 include/configs/omap3_mvblx.h                |    1 -
 include/configs/omap3_pandora.h              |    1 -
 include/configs/omap3_sdp3430.h              |    1 -
 include/configs/omap3_zoom1.h                |    1 -
 include/configs/omap3_zoom2.h                |    1 -
 include/configs/tam3517-common.h             |   59 +++-
 include/configs/tricorder.h                  |    1 -
 include/twl6035.h                            |    2 +-
 56 files changed, 1714 insertions(+), 244 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/am33xx/elm.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/mem.c
 create mode 100644 arch/arm/include/asm/arch-am33xx/elm.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/mem.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/omap_gpmc.h
 create mode 100644 drivers/mtd/nand/am335x_spl_bch.c

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/20121210/8aa271bb/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-11-02 17:08 Tom Rini
@ 2012-11-03  9:58 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-11-03  9:58 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 2 Nov 2012 10:08:22 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit c7d35bef255dedb3ec3856982f042dde514676b0:
> 
>   am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to a956bdcb3ff759f753e3f0c5e40e58f4c3056e22:
> 
>   am335x: add initial AM335x IDK board support (2012-11-02 10:04:04 -0700)
> 
> ----------------------------------------------------------------
> Andrew Bradford (4):
>       am33xx: Enable UART{1,2,3,4,5} clocks
>       am33xx: Enable UART{1,2,3,4,5} pin-mux
>       serial: ns16550: Enable COM5 and COM6
>       am335x_evm: Enable use of UART{1,2,3,4,5}
> 
> Koen Kooi (1):
>       am335x: add mux config for DDR3 version of beaglebone
> 
> Matthias Fuchs (1):
>       am335x: add initial AM335x IDK board support
> 
> Pali Roh?r (4):
>       arm bootm: Allow to pass board specified atags
>       Add power bus message definitions in twl4030.h
>       cfb_console: Add support for some ANSI terminal escape codes
>       New board support: Nokia RX-51 aka N900
> 
> Raphael Assenat (1):
>       eco5pk: Add new board and default config
> 
> Tom Rini (1):
>       omap3: Rework board.c for !CONFIG_SYS_L2CACHE_OFF
> 
>  MAINTAINERS                       |    8 +
>  README                            |    4 +
>  arch/arm/cpu/armv7/am33xx/clock.c |   35 ++
>  arch/arm/cpu/armv7/omap3/board.c  |   28 +-
>  arch/arm/include/asm/setup.h      |    5 +
>  arch/arm/lib/bootm.c              |    4 +
>  board/8dtech/eco5pk/Makefile      |   43 +++
>  board/8dtech/eco5pk/eco5pk.c      |   61 ++++
>  board/8dtech/eco5pk/eco5pk.h      |  404 ++++++++++++++++++++++
>  board/nokia/rx51/Makefile         |   46 +++
>  board/nokia/rx51/lowlevel_init.S  |  209 ++++++++++++
>  board/nokia/rx51/rx51.c           |  677 +++++++++++++++++++++++++++++++++++++
>  board/nokia/rx51/rx51.h           |  389 +++++++++++++++++++++
>  board/nokia/rx51/tag_omap.h       |  311 +++++++++++++++++
>  board/ti/am335x/board.c           |   24 +-
>  board/ti/am335x/board.h           |    5 +
>  board/ti/am335x/mux.c             |   80 +++++
>  boards.cfg                        |    9 +-
>  doc/README.nokia_rx51             |  104 ++++++
>  drivers/serial/serial_ns16550.c   |   36 +-
>  drivers/video/cfb_console.c       |  328 +++++++++++++++++-
>  include/configs/am335x_evm.h      |   12 +-
>  include/configs/eco5pk.h          |   81 +++++
>  include/configs/nokia_rx51.h      |  452 +++++++++++++++++++++++++
>  include/twl4030.h                 |   98 ++++++
>  25 files changed, 3421 insertions(+), 32 deletions(-)
>  create mode 100644 board/8dtech/eco5pk/Makefile
>  create mode 100644 board/8dtech/eco5pk/eco5pk.c
>  create mode 100644 board/8dtech/eco5pk/eco5pk.h
>  create mode 100644 board/nokia/rx51/Makefile
>  create mode 100644 board/nokia/rx51/lowlevel_init.S
>  create mode 100644 board/nokia/rx51/rx51.c
>  create mode 100644 board/nokia/rx51/rx51.h
>  create mode 100644 board/nokia/rx51/tag_omap.h
>  create mode 100644 doc/README.nokia_rx51
>  create mode 100644 include/configs/eco5pk.h
>  create mode 100644 include/configs/nokia_rx51.h
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-11-02 17:08 Tom Rini
  2012-11-03  9:58 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-11-02 17:08 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit c7d35bef255dedb3ec3856982f042dde514676b0:

  am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)

are available in the git repository at:

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

for you to fetch changes up to a956bdcb3ff759f753e3f0c5e40e58f4c3056e22:

  am335x: add initial AM335x IDK board support (2012-11-02 10:04:04 -0700)

----------------------------------------------------------------
Andrew Bradford (4):
      am33xx: Enable UART{1,2,3,4,5} clocks
      am33xx: Enable UART{1,2,3,4,5} pin-mux
      serial: ns16550: Enable COM5 and COM6
      am335x_evm: Enable use of UART{1,2,3,4,5}

Koen Kooi (1):
      am335x: add mux config for DDR3 version of beaglebone

Matthias Fuchs (1):
      am335x: add initial AM335x IDK board support

Pali Roh??r (4):
      arm bootm: Allow to pass board specified atags
      Add power bus message definitions in twl4030.h
      cfb_console: Add support for some ANSI terminal escape codes
      New board support: Nokia RX-51 aka N900

Raphael Assenat (1):
      eco5pk: Add new board and default config

Tom Rini (1):
      omap3: Rework board.c for !CONFIG_SYS_L2CACHE_OFF

 MAINTAINERS                       |    8 +
 README                            |    4 +
 arch/arm/cpu/armv7/am33xx/clock.c |   35 ++
 arch/arm/cpu/armv7/omap3/board.c  |   28 +-
 arch/arm/include/asm/setup.h      |    5 +
 arch/arm/lib/bootm.c              |    4 +
 board/8dtech/eco5pk/Makefile      |   43 +++
 board/8dtech/eco5pk/eco5pk.c      |   61 ++++
 board/8dtech/eco5pk/eco5pk.h      |  404 ++++++++++++++++++++++
 board/nokia/rx51/Makefile         |   46 +++
 board/nokia/rx51/lowlevel_init.S  |  209 ++++++++++++
 board/nokia/rx51/rx51.c           |  677 +++++++++++++++++++++++++++++++++++++
 board/nokia/rx51/rx51.h           |  389 +++++++++++++++++++++
 board/nokia/rx51/tag_omap.h       |  311 +++++++++++++++++
 board/ti/am335x/board.c           |   24 +-
 board/ti/am335x/board.h           |    5 +
 board/ti/am335x/mux.c             |   80 +++++
 boards.cfg                        |    9 +-
 doc/README.nokia_rx51             |  104 ++++++
 drivers/serial/serial_ns16550.c   |   36 +-
 drivers/video/cfb_console.c       |  328 +++++++++++++++++-
 include/configs/am335x_evm.h      |   12 +-
 include/configs/eco5pk.h          |   81 +++++
 include/configs/nokia_rx51.h      |  452 +++++++++++++++++++++++++
 include/twl4030.h                 |   98 ++++++
 25 files changed, 3421 insertions(+), 32 deletions(-)
 create mode 100644 board/8dtech/eco5pk/Makefile
 create mode 100644 board/8dtech/eco5pk/eco5pk.c
 create mode 100644 board/8dtech/eco5pk/eco5pk.h
 create mode 100644 board/nokia/rx51/Makefile
 create mode 100644 board/nokia/rx51/lowlevel_init.S
 create mode 100644 board/nokia/rx51/rx51.c
 create mode 100644 board/nokia/rx51/rx51.h
 create mode 100644 board/nokia/rx51/tag_omap.h
 create mode 100644 doc/README.nokia_rx51
 create mode 100644 include/configs/eco5pk.h
 create mode 100644 include/configs/nokia_rx51.h

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/20121102/ad7283d0/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-10-25 18:49 Tom Rini
@ 2012-10-26  5:37 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-10-26  5:37 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 25 Oct 2012 11:49:22 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 39826f09978a0a7070999acc15babf88f03e4051:
> 
>   arm: fdt: Relocate fdt along with other data (2012-10-19 21:38:27 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to c7d35bef255dedb3ec3856982f042dde514676b0:
> 
>   am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)
> 
> ----------------------------------------------------------------
> Andrew Bradford (1):
>       configs: Fix usage of mmc rescan
> 
> Igor Grinberg (1):
>       cm-t35: clean unused defines from config
> 
> Joel A Fernandes (1):
>       am33xx: Enable DDR3 for DDR3 version of beaglebone
> 
> Pankaj Bharadiya (1):
>       USB: musb_udc: Make musb_peri_rx_ep check for MUSB_RXCSR_RXPKTRDY
> 
> Peter Korsgaard (7):
>       omap3_spi: introduce CONFIG_OMAP3_SPI_D0_D1_SWAPPED
>       am33xx/board.c: make wdtimer/uart_base static
>       am33xx: move ti i2c baseboard header handling to board/ti/am335x/
>       am33xx/board: use cpu_mmc_init() for default mmc initialization
>       am33xx: move generic parts of pinmux handling out from board/ti/am335x
>       am33xx: support board specific ddr settings
>       am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers
> 
> Stefano Babic (5):
>       OMAP3: mt_ventoux: power on USB at startup
>       OMAP3: updated pinmux and environment for new revision of mcx board
>       OMAP3: mcx: updated to new hardware revision
>       VIDEO: add macro to set LCD size for DSS driver
>       OMAP3: add video support to the mcx board
> 
> Tom Rini (2):
>       omapimage: Add support for byteswapped SPI images
>       am33xx: Add SPI SPL as an option
> 
> Vaibhav Hiremath (1):
>       am335x: Enable RTC 32K OSC clock
> 
>  arch/arm/cpu/armv7/am33xx/Makefile           |    1 +
>  arch/arm/cpu/armv7/am33xx/board.c            |  239 +---------------
>  arch/arm/cpu/armv7/am33xx/clock.c            |    6 +
>  arch/arm/cpu/armv7/am33xx/config.mk          |    1 +
>  arch/arm/cpu/armv7/am33xx/emif4.c            |  114 +-------
>  arch/arm/cpu/armv7/am33xx/mux.c              |   33 +++
>  arch/arm/include/asm/arch-am33xx/cpu.h       |   15 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h  |   69 ++---
>  arch/arm/include/asm/arch-am33xx/hardware.h  |    4 +
>  arch/arm/include/asm/arch-am33xx/mux.h       |  261 ++++++++++++++++++
>  arch/arm/include/asm/arch-am33xx/spl.h       |    1 +
>  arch/arm/include/asm/arch-am33xx/sys_proto.h |   27 --
>  arch/arm/include/asm/arch-omap3/dss.h        |    1 +
>  board/htkw/mcx/mcx.c                         |   48 +++-
>  board/htkw/mcx/mcx.h                         |   30 +-
>  board/teejet/mt_ventoux/mt_ventoux.c         |    8 +
>  board/ti/am335x/Makefile                     |    1 +
>  board/ti/am335x/board.c                      |  376 ++++++++++++++++++++++++++
>  board/ti/am335x/board.h                      |   49 ++++
>  board/ti/am335x/mux.c                        |  250 +----------------
>  drivers/spi/omap3_spi.c                      |   11 +-
>  drivers/usb/musb/musb_udc.c                  |   11 +-
>  include/configs/am335x_evm.h                 |    9 +-
>  include/configs/am3517_crane.h               |    2 +-
>  include/configs/am3517_evm.h                 |    2 +-
>  include/configs/cm_t35.h                     |   14 +-
>  include/configs/devkit8000.h                 |    2 +-
>  include/configs/igep00x0.h                   |    2 +-
>  include/configs/mcx.h                        |   31 ++-
>  include/configs/mx28evk.h                    |    2 +-
>  include/configs/mx51evk.h                    |    2 +-
>  include/configs/mx53ard.h                    |    2 +-
>  include/configs/mx53evk.h                    |    2 +-
>  include/configs/mx53loco.h                   |    2 +-
>  include/configs/mx53smd.h                    |    2 +-
>  include/configs/mx6qarm2.h                   |    2 +-
>  include/configs/mx6qsabrelite.h              |    2 +-
>  include/configs/omap3_beagle.h               |    2 +-
>  include/configs/omap3_evm.h                  |    2 +-
>  include/configs/omap3_logic.h                |    2 +-
>  include/configs/omap3_overo.h                |    2 +-
>  include/configs/omap3_zoom1.h                |    2 +-
>  include/configs/omap4_common.h               |    2 +-
>  include/configs/omap5_evm.h                  |    2 +-
>  include/configs/tricorder.h                  |    2 +-
>  spl/Makefile                                 |    9 +-
>  tools/omapimage.c                            |   83 ++++--
>  47 files changed, 998 insertions(+), 744 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/am33xx/mux.c
>  create mode 100644 arch/arm/include/asm/arch-am33xx/mux.h
>  create mode 100644 board/ti/am335x/board.c
>  create mode 100644 board/ti/am335x/board.h
> 
> Thanks!
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-10-25 18:49 Tom Rini
  2012-10-26  5:37 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-10-25 18:49 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 39826f09978a0a7070999acc15babf88f03e4051:

  arm: fdt: Relocate fdt along with other data (2012-10-19 21:38:27 +0200)

are available in the git repository at:

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

for you to fetch changes up to c7d35bef255dedb3ec3856982f042dde514676b0:

  am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)

----------------------------------------------------------------
Andrew Bradford (1):
      configs: Fix usage of mmc rescan

Igor Grinberg (1):
      cm-t35: clean unused defines from config

Joel A Fernandes (1):
      am33xx: Enable DDR3 for DDR3 version of beaglebone

Pankaj Bharadiya (1):
      USB: musb_udc: Make musb_peri_rx_ep check for MUSB_RXCSR_RXPKTRDY

Peter Korsgaard (7):
      omap3_spi: introduce CONFIG_OMAP3_SPI_D0_D1_SWAPPED
      am33xx/board.c: make wdtimer/uart_base static
      am33xx: move ti i2c baseboard header handling to board/ti/am335x/
      am33xx/board: use cpu_mmc_init() for default mmc initialization
      am33xx: move generic parts of pinmux handling out from board/ti/am335x
      am33xx: support board specific ddr settings
      am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers

Stefano Babic (5):
      OMAP3: mt_ventoux: power on USB at startup
      OMAP3: updated pinmux and environment for new revision of mcx board
      OMAP3: mcx: updated to new hardware revision
      VIDEO: add macro to set LCD size for DSS driver
      OMAP3: add video support to the mcx board

Tom Rini (2):
      omapimage: Add support for byteswapped SPI images
      am33xx: Add SPI SPL as an option

Vaibhav Hiremath (1):
      am335x: Enable RTC 32K OSC clock

 arch/arm/cpu/armv7/am33xx/Makefile           |    1 +
 arch/arm/cpu/armv7/am33xx/board.c            |  239 +---------------
 arch/arm/cpu/armv7/am33xx/clock.c            |    6 +
 arch/arm/cpu/armv7/am33xx/config.mk          |    1 +
 arch/arm/cpu/armv7/am33xx/emif4.c            |  114 +-------
 arch/arm/cpu/armv7/am33xx/mux.c              |   33 +++
 arch/arm/include/asm/arch-am33xx/cpu.h       |   15 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h  |   69 ++---
 arch/arm/include/asm/arch-am33xx/hardware.h  |    4 +
 arch/arm/include/asm/arch-am33xx/mux.h       |  261 ++++++++++++++++++
 arch/arm/include/asm/arch-am33xx/spl.h       |    1 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h |   27 --
 arch/arm/include/asm/arch-omap3/dss.h        |    1 +
 board/htkw/mcx/mcx.c                         |   48 +++-
 board/htkw/mcx/mcx.h                         |   30 +-
 board/teejet/mt_ventoux/mt_ventoux.c         |    8 +
 board/ti/am335x/Makefile                     |    1 +
 board/ti/am335x/board.c                      |  376 ++++++++++++++++++++++++++
 board/ti/am335x/board.h                      |   49 ++++
 board/ti/am335x/mux.c                        |  250 +----------------
 drivers/spi/omap3_spi.c                      |   11 +-
 drivers/usb/musb/musb_udc.c                  |   11 +-
 include/configs/am335x_evm.h                 |    9 +-
 include/configs/am3517_crane.h               |    2 +-
 include/configs/am3517_evm.h                 |    2 +-
 include/configs/cm_t35.h                     |   14 +-
 include/configs/devkit8000.h                 |    2 +-
 include/configs/igep00x0.h                   |    2 +-
 include/configs/mcx.h                        |   31 ++-
 include/configs/mx28evk.h                    |    2 +-
 include/configs/mx51evk.h                    |    2 +-
 include/configs/mx53ard.h                    |    2 +-
 include/configs/mx53evk.h                    |    2 +-
 include/configs/mx53loco.h                   |    2 +-
 include/configs/mx53smd.h                    |    2 +-
 include/configs/mx6qarm2.h                   |    2 +-
 include/configs/mx6qsabrelite.h              |    2 +-
 include/configs/omap3_beagle.h               |    2 +-
 include/configs/omap3_evm.h                  |    2 +-
 include/configs/omap3_logic.h                |    2 +-
 include/configs/omap3_overo.h                |    2 +-
 include/configs/omap3_zoom1.h                |    2 +-
 include/configs/omap4_common.h               |    2 +-
 include/configs/omap5_evm.h                  |    2 +-
 include/configs/tricorder.h                  |    2 +-
 spl/Makefile                                 |    9 +-
 tools/omapimage.c                            |   83 ++++--
 47 files changed, 998 insertions(+), 744 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/am33xx/mux.c
 create mode 100644 arch/arm/include/asm/arch-am33xx/mux.h
 create mode 100644 board/ti/am335x/board.c
 create mode 100644 board/ti/am335x/board.h

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/20121025/b0880b4e/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-10-23 18:19 Tom Rini
@ 2012-10-25 18:34 ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-10-25 18:34 UTC (permalink / raw)
  To: u-boot

On Tue, Oct 23, 2012 at 11:19:29AM -0700, Tom Rini wrote:

> Hello,
> 
> The following changes since commit 39826f09978a0a7070999acc15babf88f03e4051:
> 
>   arm: fdt: Relocate fdt along with other data (2012-10-19 21:38:27 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 6b943a40273f847a29586e6aa0e756f90d75f38f:
> 
>   am33xx: Add SPI SPL as an option (2012-10-23 08:34:10 -0700)

This has been superseded by another request I will be sending shortly.

-- 
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/20121025/b7cdbe01/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-10-23 18:19 Tom Rini
  2012-10-25 18:34 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-10-23 18:19 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 39826f09978a0a7070999acc15babf88f03e4051:

  arm: fdt: Relocate fdt along with other data (2012-10-19 21:38:27 +0200)

are available in the git repository at:

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

for you to fetch changes up to 6b943a40273f847a29586e6aa0e756f90d75f38f:

  am33xx: Add SPI SPL as an option (2012-10-23 08:34:10 -0700)

----------------------------------------------------------------
Andrew Bradford (1):
      configs: Fix usage of mmc rescan

Igor Grinberg (1):
      cm-t35: clean unused defines from config

Joel A Fernandes (1):
      am33xx: Enable DDR3 for DDR3 version of beaglebone

Pankaj Bharadiya (1):
      USB: musb_udc: Make musb_peri_rx_ep check for MUSB_RXCSR_RXPKTRDY

Peter Korsgaard (1):
      omap3_spi: introduce CONFIG_OMAP3_SPI_D0_D1_SWAPPED

Stefano Babic (5):
      OMAP3: mt_ventoux: power on USB at startup
      OMAP3: updated pinmux and environment for new revision of mcx board
      OMAP3: mcx: updated to new hardware revision
      VIDEO: add macro to set LCD size for DSS driver
      OMAP3: add video support to the mcx board

Tom Rini (2):
      omapimage: Add support for byteswapped SPI images
      am33xx: Add SPI SPL as an option

Vaibhav Hiremath (1):
      am335x: Enable RTC 32K OSC clock

 arch/arm/cpu/armv7/am33xx/board.c           |   30 +++++++++-
 arch/arm/cpu/armv7/am33xx/clock.c           |    6 ++
 arch/arm/cpu/armv7/am33xx/config.mk         |    1 +
 arch/arm/include/asm/arch-am33xx/cpu.h      |   15 +++++
 arch/arm/include/asm/arch-am33xx/hardware.h |    4 ++
 arch/arm/include/asm/arch-am33xx/spl.h      |    1 +
 arch/arm/include/asm/arch-omap3/dss.h       |    1 +
 board/htkw/mcx/mcx.c                        |   48 ++++++++++++----
 board/htkw/mcx/mcx.h                        |   30 +++++-----
 board/teejet/mt_ventoux/mt_ventoux.c        |    8 +++
 drivers/spi/omap3_spi.c                     |   11 ++--
 drivers/usb/musb/musb_udc.c                 |   11 +++-
 include/configs/am335x_evm.h                |    9 ++-
 include/configs/am3517_crane.h              |    2 +-
 include/configs/am3517_evm.h                |    2 +-
 include/configs/cm_t35.h                    |   14 +----
 include/configs/devkit8000.h                |    2 +-
 include/configs/igep00x0.h                  |    2 +-
 include/configs/mcx.h                       |   31 +++++++---
 include/configs/mx28evk.h                   |    2 +-
 include/configs/mx51evk.h                   |    2 +-
 include/configs/mx53ard.h                   |    2 +-
 include/configs/mx53evk.h                   |    2 +-
 include/configs/mx53loco.h                  |    2 +-
 include/configs/mx53smd.h                   |    2 +-
 include/configs/mx6qarm2.h                  |    2 +-
 include/configs/mx6qsabrelite.h             |    2 +-
 include/configs/omap3_beagle.h              |    2 +-
 include/configs/omap3_evm.h                 |    2 +-
 include/configs/omap3_logic.h               |    2 +-
 include/configs/omap3_overo.h               |    2 +-
 include/configs/omap3_zoom1.h               |    2 +-
 include/configs/omap4_common.h              |    2 +-
 include/configs/omap5_evm.h                 |    2 +-
 include/configs/tricorder.h                 |    2 +-
 spl/Makefile                                |    9 +--
 tools/omapimage.c                           |   83 +++++++++++++++++++++------
 37 files changed, 253 insertions(+), 99 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/20121023/4b82b5b4/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-10-02  0:12 Tom Rini
@ 2012-10-03  0:01 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-10-03  0:01 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 1 Oct 2012 17:12:58 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit 1c27059a2f7158a9c9a8778535b030935d75179d:
> 
>   Merge remote-tracking branch 'u-boot/master' (2012-09-30 23:49:17 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to 3c2e616f4b20e6e23d8268e99beec91b95ce9e70:
> 
>   omap4_panda: remove CONFIG_PANDA, not used (2012-10-01 10:10:33 -0700)
> 
> ----------------------------------------------------------------
> Andreas Bie?mann (1):
>       devkit8000: add rootwait to mmcboot option
> 
> Bastian Ruppert (6):
>       davinci: ea20: reorganisation LCD startup
>       davinci: ea20: the console is always set to the serial line
>       video: cfb_console: logo can be positioned via the splashpos variable
>       video: cfb_console: add function to plot the logo area black
>       da850/omap-l138: davinci_emac: Suppress auto negotiation if needed
>       davinci: ea20: add some configs and default environmet variables
> 
> Ilya Yanok (4):
>       net/bootp: add VCI support for BOOTP also
>       OMAP: spl: call timer_init() from SPL
>       am335x_evm: enable networking in SPL
>       OMAP: networking support for SPL
> 
> Joel A Fernandes (1):
>       am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX
> 
> Koen Kooi (1):
>       am335x-evm config: decrease bootdelay to 1s and mount rootfs RO
> 
> Peter Meerwald (1):
>       omap4_panda: remove CONFIG_PANDA, not used
> 
>  arch/arm/cpu/armv7/omap-common/lowlevel_init.S |    5 +-
>  arch/arm/include/asm/arch-am33xx/spl.h         |    2 +
>  board/davinci/ea20/ea20.c                      |   32 ++++--
>  board/ti/beagle/beagle.c                       |    2 +-
>  common/Makefile                                |    4 +
>  common/cmd_nvedit.c                            |    8 ++
>  common/env_common.c                            |    7 +-
>  common/spl/Makefile                            |    1 +
>  common/spl/spl.c                               |   11 ++
>  common/spl/spl_net.c                           |   52 +++++++++
>  drivers/net/davinci_emac.c                     |    3 +-
>  drivers/video/cfb_console.c                    |  140 +++++++++++++++++++-----
>  include/bootstage.h                            |    6 +-
>  include/config_uncmd_spl.h                     |   44 ++++++++
>  include/configs/am335x_evm.h                   |    9 +-
>  include/configs/devkit8000.h                   |    1 +
>  include/configs/ea20.h                         |  108 +++++++++++-------
>  include/configs/omap4_panda.h                  |    1 -
>  include/spl.h                                  |    3 +
>  lib/Makefile                                   |    9 +-
>  lib/hashtable.c                                |    2 +
>  mkconfig                                       |    1 +
>  net/bootp.c                                    |   27 ++++-
>  spl/Makefile                                   |    3 +
>  24 files changed, 384 insertions(+), 97 deletions(-)
>  create mode 100644 common/spl/spl_net.c
>  create mode 100644 include/config_uncmd_spl.h
> 
> While we are late in the series, these changes have been around for a
> long while now and the primary delay in merging them has been to wait
> for the rest of my SPL series to hit, make its way up and let me merge
> that with these changes.
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-10-02  0:12 Tom Rini
  2012-10-03  0:01 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-10-02  0:12 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 1c27059a2f7158a9c9a8778535b030935d75179d:

  Merge remote-tracking branch 'u-boot/master' (2012-09-30 23:49:17 +0200)

are available in the git repository at:


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

for you to fetch changes up to 3c2e616f4b20e6e23d8268e99beec91b95ce9e70:

  omap4_panda: remove CONFIG_PANDA, not used (2012-10-01 10:10:33 -0700)

----------------------------------------------------------------
Andreas Bie??mann (1):
      devkit8000: add rootwait to mmcboot option

Bastian Ruppert (6):
      davinci: ea20: reorganisation LCD startup
      davinci: ea20: the console is always set to the serial line
      video: cfb_console: logo can be positioned via the splashpos variable
      video: cfb_console: add function to plot the logo area black
      da850/omap-l138: davinci_emac: Suppress auto negotiation if needed
      davinci: ea20: add some configs and default environmet variables

Ilya Yanok (4):
      net/bootp: add VCI support for BOOTP also
      OMAP: spl: call timer_init() from SPL
      am335x_evm: enable networking in SPL
      OMAP: networking support for SPL

Joel A Fernandes (1):
      am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX

Koen Kooi (1):
      am335x-evm config: decrease bootdelay to 1s and mount rootfs RO

Peter Meerwald (1):
      omap4_panda: remove CONFIG_PANDA, not used

 arch/arm/cpu/armv7/omap-common/lowlevel_init.S |    5 +-
 arch/arm/include/asm/arch-am33xx/spl.h         |    2 +
 board/davinci/ea20/ea20.c                      |   32 ++++--
 board/ti/beagle/beagle.c                       |    2 +-
 common/Makefile                                |    4 +
 common/cmd_nvedit.c                            |    8 ++
 common/env_common.c                            |    7 +-
 common/spl/Makefile                            |    1 +
 common/spl/spl.c                               |   11 ++
 common/spl/spl_net.c                           |   52 +++++++++
 drivers/net/davinci_emac.c                     |    3 +-
 drivers/video/cfb_console.c                    |  140 +++++++++++++++++++-----
 include/bootstage.h                            |    6 +-
 include/config_uncmd_spl.h                     |   44 ++++++++
 include/configs/am335x_evm.h                   |    9 +-
 include/configs/devkit8000.h                   |    1 +
 include/configs/ea20.h                         |  108 +++++++++++-------
 include/configs/omap4_panda.h                  |    1 -
 include/spl.h                                  |    3 +
 lib/Makefile                                   |    9 +-
 lib/hashtable.c                                |    2 +
 mkconfig                                       |    1 +
 net/bootp.c                                    |   27 ++++-
 spl/Makefile                                   |    3 +
 24 files changed, 384 insertions(+), 97 deletions(-)
 create mode 100644 common/spl/spl_net.c
 create mode 100644 include/config_uncmd_spl.h

While we are late in the series, these changes have been around for a
long while now and the primary delay in merging them has been to wait
for the rest of my SPL series to hit, make its way up and let me merge
that with these changes.

-- 
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/20121001/e0715963/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-09-21 21:07 ` Albert ARIBAUD
@ 2012-09-21 21:17   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-09-21 21:17 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 09/21/12 14:07, Albert ARIBAUD wrote:
> Hi Tom,
> 
> On Thu, 20 Sep 2012 16:52:14 -0700, Tom Rini <trini@ti.com> wrote:
> 
>> Hey Albert,
>> 
>> The following changes since commit 
>> d193c1b6eb05041c94ad9aacd8c94189d1dbc5f8:
>> 
>> Merge remote-tracking branch 'u-boot-imx/master' (2012-09-21 
>> 00:26:19 +0200)
>> 
>> are available in the git repository at:
>> 
>> 
>> git://git.denx.de/u-boot-ti master
>> 
>> for you to fetch changes up to 
>> 2acdff706b6e762bac3d0f8ef20812e4d05e9a6b:
>> 
>> am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX 
>> (2012-09-20 16:46:35 -0700)
> 
> This breaks two boards: ca9x4_ct_vxp and highbank, with the
> following diagnostic:
> 
> bootp.c: In function 'DhcpExtended': bootp.c:451:2: error:
> 'CONFIG_VCI_STRING' undeclared (first use in this function)
> bootp.c:451:2: note: each undeclared identifier is reported only
> once for each function it appears in
> 
> The culprit seems to be b780d62c2082e9a8ede763e83a94f41e88a1651d 
> ("net/bootp: add VCI support for BOOTP also"):
> 
> 450 #ifdef CONFIG_BOOTP_VCI_STRING 451         put_vci(e,
> CONFIG_VCI_STRING); 452 #endif
> 
> 451 should probably be 'put_vci(e, CONFIG_BOOTP_VCI_STRING);'.

You are correct.  I've corrected, pushed and am doing a MAKEALL -a arm
currently, I'll re-submit once it passes.  Sorry / Thanks!

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iQIcBAEBAgAGBQJQXNl3AAoJENk4IS6UOR1WLNwQALAMP0Cnx3K7fcrUPZTm8PYZ
22vl0Slab93lnr883PGnMch9brYe8abZfWak/z+ZBwWo26xvPQzIB9x9Op5T47P4
Mpy4JWqCeGJZpf+KDw2kxpEukDwOnCHm0C+sBFksGJ4Ujg+Wh+z2CYV0OLt+JJC1
Np0ak/kRswNbVOC5gsgrWy8LjuIONfS/92XItfMdQG+SKL6qJiJZsYvgZE+xrjDn
XCy1xw3m21Wv533UCsaKEk6HkMyObfDPQeeP+iCbJ1Zul6WFGe3quZtcAaISyVit
duJNqXxDK4TD7xhFh1YnlrLMDBc9hJe50wvDJYV2yV1o/EPvt8XHbdm7gmwzMb8/
qa3+q0aTNgS73wecOzXuO/nJ9d8tDG/hA1u6sFCjE4d5Y9/EK+SISxqNWXoo9BU7
S2GNgE7wxcuQ0UYg+3vhpDl863CzbehlxvmbVMufVAr57ZslwJeDCUrUazm9B/bT
bcPFBhVE+LTtpCtBv7i29ZVbIlHjeFdbjsh4tKh3ZkQ/ge/KYHsdjGMRj4K+tBsm
Vq9jUTU3la009LNsb1JLE9mILlP4XGWhqiZEDZlJciNsezsyjjRzcVeU6x0LVvyY
IdbAdYaRo2HR/5aTHP26nHqfgM0IJtkalBXpuU7Cz971HvNg+wzEJC8re+EN5Ru5
fiR8Ku+oY8fSzdBudxMb
=1rrq
-----END PGP SIGNATURE-----

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

* [U-Boot] Please pull u-boot-ti/master
  2012-09-20 23:52 Tom Rini
@ 2012-09-21 21:07 ` Albert ARIBAUD
  2012-09-21 21:17   ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2012-09-21 21:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 20 Sep 2012 16:52:14 -0700, Tom Rini <trini@ti.com> wrote:

> Hey Albert,
> 
> The following changes since commit
> d193c1b6eb05041c94ad9aacd8c94189d1dbc5f8:
> 
>   Merge remote-tracking branch 'u-boot-imx/master' (2012-09-21
> 00:26:19 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to
> 2acdff706b6e762bac3d0f8ef20812e4d05e9a6b:
> 
>   am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX
> (2012-09-20 16:46:35 -0700)

This breaks two boards: ca9x4_ct_vxp and highbank, with the following
diagnostic:

bootp.c: In function 'DhcpExtended':
bootp.c:451:2: error: 'CONFIG_VCI_STRING' undeclared (first use in this
function) bootp.c:451:2: note: each undeclared identifier is reported
only once for each function it appears in

The culprit seems to be b780d62c2082e9a8ede763e83a94f41e88a1651d
("net/bootp: add VCI support for BOOTP also"):

450 #ifdef CONFIG_BOOTP_VCI_STRING
451         put_vci(e, CONFIG_VCI_STRING);
452 #endif

451 should probably be 'put_vci(e, CONFIG_BOOTP_VCI_STRING);'.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-09-20 23:52 Tom Rini
  2012-09-21 21:07 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-09-20 23:52 UTC (permalink / raw)
  To: u-boot

Hey Albert,

The following changes since commit d193c1b6eb05041c94ad9aacd8c94189d1dbc5f8:

  Merge remote-tracking branch 'u-boot-imx/master' (2012-09-21 00:26:19 +0200)

are available in the git repository at:


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

for you to fetch changes up to 2acdff706b6e762bac3d0f8ef20812e4d05e9a6b:

  am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX (2012-09-20 16:46:35 -0700)

----------------------------------------------------------------
Andreas Bie??mann (1):
      devkit8000: add rootwait to mmcboot option

Bastian Ruppert (6):
      davinci: ea20: reorganisation LCD startup
      davinci: ea20: the console is always set to the serial line
      video: cfb_console: logo can be positioned via the splashpos variable
      video: cfb_console: add function to plot the logo area black
      da850/omap-l138: davinci_emac: Suppress auto negotiation if needed
      davinci: ea20: add some configs and default environmet variables

Ilya Yanok (4):
      net/bootp: add VCI support for BOOTP also
      OMAP: spl: call timer_init() from SPL
      am335x_evm: enable networking in SPL
      OMAP: networking support for SPL

Joel A Fernandes (1):
      am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX

 arch/arm/cpu/armv7/omap-common/Makefile        |    3 +
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S |    6 +-
 arch/arm/cpu/armv7/omap-common/spl.c           |   11 ++
 arch/arm/cpu/armv7/omap-common/spl_net.c       |   52 +++++++++
 arch/arm/include/asm/omap_common.h             |   13 ++-
 board/davinci/ea20/ea20.c                      |   32 ++++--
 board/ti/beagle/beagle.c                       |    2 +-
 common/Makefile                                |    4 +
 common/cmd_nvedit.c                            |    8 ++
 common/env_common.c                            |    7 +-
 drivers/net/davinci_emac.c                     |    3 +-
 drivers/video/cfb_console.c                    |  140 +++++++++++++++++++-----
 include/bootstage.h                            |    6 +-
 include/config_uncmd_spl.h                     |   44 ++++++++
 include/configs/am335x_evm.h                   |    5 +-
 include/configs/devkit8000.h                   |    1 +
 include/configs/ea20.h                         |  108 +++++++++++-------
 lib/Makefile                                   |    9 +-
 lib/hashtable.c                                |    2 +
 mkconfig                                       |    1 +
 net/bootp.c                                    |   27 ++++-
 spl/Makefile                                   |    3 +
 22 files changed, 391 insertions(+), 96 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/omap-common/spl_net.c
 create mode 100644 include/config_uncmd_spl.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/20120920/83969994/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-09-05  0:41 Tom Rini
@ 2012-09-05 20:59 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-09-05 20:59 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 4 Sep 2012 17:41:23 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit
> e62b008fe341030f4a80a09b66952bba65027b70:
> 
>   integrator: break out common config (2012-09-04 08:51:13 -0700)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to
> 14dace70580df099deb9cdce8f9cfb16a31e9d1b:
> 
>   am33xx: Remove redundant timer config (2012-09-04 17:05:39 -0700)
> 
> ----------------------------------------------------------------
> Arnout Vandecappelle (Essensium/Mind) (1):
>       OMAP3: add definition of CTRL_WKUP_CTRL register
> 
> Stefano Babic (9):
>       OMAP3: tam3517: add function to read MAC from EEPROM
>       OMAP3: twister : get MAC address from EEPROM
>       OMAP3: mt_ventoux: Correct board pinmux
>       OMAP3: mt_ventoux: activate GPIO4
>       OMAP3: mt_ventoux: read MAC address from EEPROM
>       OMAP3: mt_ventoux: disable the buzzer at start-up
>       video: drop duplicate set of DISPC_CONFIG register
>       OMAP3: video: add macros to set display parameters
>       OMAP3: mt_ventoux: added video support
> 
> Tom Rini (1):
>       am33xx: Remove redundant timer config
> 
>  arch/arm/cpu/armv7/am33xx/board.c     |   20 ------
>  arch/arm/include/asm/arch-omap3/dss.h |   11 +++-
>  arch/arm/include/asm/arch-omap3/mux.h |    5 ++
>  board/technexion/twister/twister.c    |   10 +++
>  board/teejet/mt_ventoux/mt_ventoux.c  |  113
> +++++++++++++++++++++++++++++++++
> board/teejet/mt_ventoux/mt_ventoux.h  |   80 ++++++++++-------------
> drivers/video/omap3_dss.c             |    3 +-
> include/configs/mt_ventoux.h          |   17 +++++
> include/configs/tam3517-common.h      |   66 +++++++++++++++++++ 9
> files changed, 256 insertions(+), 69 deletions(-)
> 
> A MAKEALL -a arm looks fine here.
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-09-05  0:41 Tom Rini
  2012-09-05 20:59 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-09-05  0:41 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit e62b008fe341030f4a80a09b66952bba65027b70:

  integrator: break out common config (2012-09-04 08:51:13 -0700)

are available in the git repository at:

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

for you to fetch changes up to 14dace70580df099deb9cdce8f9cfb16a31e9d1b:

  am33xx: Remove redundant timer config (2012-09-04 17:05:39 -0700)

----------------------------------------------------------------
Arnout Vandecappelle (Essensium/Mind) (1):
      OMAP3: add definition of CTRL_WKUP_CTRL register

Stefano Babic (9):
      OMAP3: tam3517: add function to read MAC from EEPROM
      OMAP3: twister : get MAC address from EEPROM
      OMAP3: mt_ventoux: Correct board pinmux
      OMAP3: mt_ventoux: activate GPIO4
      OMAP3: mt_ventoux: read MAC address from EEPROM
      OMAP3: mt_ventoux: disable the buzzer at start-up
      video: drop duplicate set of DISPC_CONFIG register
      OMAP3: video: add macros to set display parameters
      OMAP3: mt_ventoux: added video support

Tom Rini (1):
      am33xx: Remove redundant timer config

 arch/arm/cpu/armv7/am33xx/board.c     |   20 ------
 arch/arm/include/asm/arch-omap3/dss.h |   11 +++-
 arch/arm/include/asm/arch-omap3/mux.h |    5 ++
 board/technexion/twister/twister.c    |   10 +++
 board/teejet/mt_ventoux/mt_ventoux.c  |  113 +++++++++++++++++++++++++++++++++
 board/teejet/mt_ventoux/mt_ventoux.h  |   80 ++++++++++-------------
 drivers/video/omap3_dss.c             |    3 +-
 include/configs/mt_ventoux.h          |   17 +++++
 include/configs/tam3517-common.h      |   66 +++++++++++++++++++
 9 files changed, 256 insertions(+), 69 deletions(-)

A MAKEALL -a arm looks fine here.

-- 
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/20120904/183dd8f2/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-08-24 23:40 Tom Rini
@ 2012-08-25 11:30 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-08-25 11:30 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 24 Aug 2012 16:40:09 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit
> a1cd53c6b6e2e7fbf4ffa20d3548646e4c94efe5:
> 
>   sc_sps_1: Adjust board config to use 'mxs' SoC code (2012-08-14
> 00:36:30 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> for you to fetch changes up to
> 56540ed12d86a998ebd8f9ec8d55828c30ab1f14:
> 
>   davinci, c6x: Always use C version of reset code (2012-08-24
> 15:50:35 -0700)
> 
> ----------------------------------------------------------------
> Heiko Schocher (1):
>       davinci: enbw_cmc: change switch init behaviour
> 
> Jeroen Hofstee (1):
>       arm: omap: Fix switching back to nandecc sw.
> 
> Satyanarayana, Sandhya (1):
>       am33xx evm: Update secure_emif_sdram_config during ddr init
> 
> Sughosh Ganu (1):
>       da8xx/hawkboard: Add support for ohci host controller
> 
> Tom Rini (8):
>       am335x evm: Initial support for AM335x GP EVM Profiles
>       am33xx: Correct MMC1, remove MMC2 support
>       am335x evm: Enable MMC1 pinmux
>       am33xx: Add support, update omap3 McSPI driver
>       am335x evm: Enable support for spi0
>       omap4/5/am33xx: Make lowlevel_init available to all armv7
> platforms armv7: Make lowlevel_init.S's lowlevel_init do ABI
> compatible stack davinci, c6x: Always use C version of reset code
> 
>  arch/arm/cpu/arm926ejs/davinci/Makefile            |    4 +-
>  arch/arm/cpu/arm926ejs/davinci/psc.c               |    5 +
>  arch/arm/cpu/arm926ejs/davinci/reset.S             |   81
> ---------------- arch/arm/cpu/arm926ejs/davinci/reset.c
> |   33 +++++++ arch/arm/cpu/armv7/Makefile
> |    6 +- arch/arm/cpu/armv7/am33xx/board.c                  |    8 +-
>  arch/arm/cpu/armv7/am33xx/clock.c                  |    5 +
>  arch/arm/cpu/armv7/am33xx/ddr.c                    |    5 +-
>  arch/arm/cpu/armv7/lowlevel_init.S                 |   51 ++++++++++
>  arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |   18 ----
>  arch/arm/include/asm/arch-am33xx/cpu.h             |    2 +
>  arch/arm/include/asm/arch-am33xx/hardware.h        |    3 +-
>  arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |    3 +-
>  arch/arm/include/asm/arch-am33xx/omap.h            |    1 -
>  arch/arm/include/asm/arch-am33xx/sys_proto.h       |    1 +
>  .../arm/include/asm/arch-davinci/da8xx-usb.h       |    7 +-
>  arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
>  arch/arm/include/asm/arch-omap4/omap.h             |    1 -
>  arch/arm/include/asm/arch-omap5/omap.h             |    2 -
>  arch/arm/include/asm/omap_common.h                 |    2 +-
>  board/davinci/da8xxevm/hawkboard.c                 |   41 ++++++++
>  board/enbw/enbw_cmc/enbw_cmc.c                     |  102
> +++++++++++++-------
> board/ti/am335x/mux.c                              |   73
> +++++++++++++- drivers/mtd/nand/omap_gpmc.c
> |    1 + drivers/spi/omap3_spi.c                            |   16
> +++ drivers/spi/omap3_spi.h                            |    5 +
> drivers/usb/host/Makefile                          |    1 +
> drivers/usb/host/ohci-da8xx.c                      |   48 +++++++++
> drivers/usb/musb/da8xx.c                           |    3 +-
> include/configs/am335x_evm.h                       |   13 ++-
> include/configs/hawkboard.h                        |   14 ++-
> include/configs/omap4_common.h                     |    7 +-
> include/configs/omap5_evm.h                        |    7 +- 33 files
> changed, 404 insertions(+), 166 deletions(-) delete mode 100644
> arch/arm/cpu/arm926ejs/davinci/reset.S create mode 100644
> arch/arm/cpu/arm926ejs/davinci/reset.c create mode 100644
> arch/arm/cpu/armv7/lowlevel_init.S rename drivers/usb/musb/da8xx.h =>
> arch/arm/include/asm/arch-davinci/da8xx-usb.h (96%) create mode
> 100644 drivers/usb/host/ohci-da8xx.c
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-08-24 23:40 Tom Rini
  2012-08-25 11:30 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-08-24 23:40 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit a1cd53c6b6e2e7fbf4ffa20d3548646e4c94efe5:

  sc_sps_1: Adjust board config to use 'mxs' SoC code (2012-08-14 00:36:30 +0200)

are available in the git repository at:

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

for you to fetch changes up to 56540ed12d86a998ebd8f9ec8d55828c30ab1f14:

  davinci, c6x: Always use C version of reset code (2012-08-24 15:50:35 -0700)

----------------------------------------------------------------
Heiko Schocher (1):
      davinci: enbw_cmc: change switch init behaviour

Jeroen Hofstee (1):
      arm: omap: Fix switching back to nandecc sw.

Satyanarayana, Sandhya (1):
      am33xx evm: Update secure_emif_sdram_config during ddr init

Sughosh Ganu (1):
      da8xx/hawkboard: Add support for ohci host controller

Tom Rini (8):
      am335x evm: Initial support for AM335x GP EVM Profiles
      am33xx: Correct MMC1, remove MMC2 support
      am335x evm: Enable MMC1 pinmux
      am33xx: Add support, update omap3 McSPI driver
      am335x evm: Enable support for spi0
      omap4/5/am33xx: Make lowlevel_init available to all armv7 platforms
      armv7: Make lowlevel_init.S's lowlevel_init do ABI compatible stack
      davinci, c6x: Always use C version of reset code

 arch/arm/cpu/arm926ejs/davinci/Makefile            |    4 +-
 arch/arm/cpu/arm926ejs/davinci/psc.c               |    5 +
 arch/arm/cpu/arm926ejs/davinci/reset.S             |   81 ----------------
 arch/arm/cpu/arm926ejs/davinci/reset.c             |   33 +++++++
 arch/arm/cpu/armv7/Makefile                        |    6 +-
 arch/arm/cpu/armv7/am33xx/board.c                  |    8 +-
 arch/arm/cpu/armv7/am33xx/clock.c                  |    5 +
 arch/arm/cpu/armv7/am33xx/ddr.c                    |    5 +-
 arch/arm/cpu/armv7/lowlevel_init.S                 |   51 ++++++++++
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |   18 ----
 arch/arm/include/asm/arch-am33xx/cpu.h             |    2 +
 arch/arm/include/asm/arch-am33xx/hardware.h        |    3 +-
 arch/arm/include/asm/arch-am33xx/mmc_host_def.h    |    3 +-
 arch/arm/include/asm/arch-am33xx/omap.h            |    1 -
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    1 +
 .../arm/include/asm/arch-davinci/da8xx-usb.h       |    7 +-
 arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
 arch/arm/include/asm/arch-omap4/omap.h             |    1 -
 arch/arm/include/asm/arch-omap5/omap.h             |    2 -
 arch/arm/include/asm/omap_common.h                 |    2 +-
 board/davinci/da8xxevm/hawkboard.c                 |   41 ++++++++
 board/enbw/enbw_cmc/enbw_cmc.c                     |  102 +++++++++++++-------
 board/ti/am335x/mux.c                              |   73 +++++++++++++-
 drivers/mtd/nand/omap_gpmc.c                       |    1 +
 drivers/spi/omap3_spi.c                            |   16 +++
 drivers/spi/omap3_spi.h                            |    5 +
 drivers/usb/host/Makefile                          |    1 +
 drivers/usb/host/ohci-da8xx.c                      |   48 +++++++++
 drivers/usb/musb/da8xx.c                           |    3 +-
 include/configs/am335x_evm.h                       |   13 ++-
 include/configs/hawkboard.h                        |   14 ++-
 include/configs/omap4_common.h                     |    7 +-
 include/configs/omap5_evm.h                        |    7 +-
 33 files changed, 404 insertions(+), 166 deletions(-)
 delete mode 100644 arch/arm/cpu/arm926ejs/davinci/reset.S
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/reset.c
 create mode 100644 arch/arm/cpu/armv7/lowlevel_init.S
 rename drivers/usb/musb/da8xx.h => arch/arm/include/asm/arch-davinci/da8xx-usb.h (96%)
 create mode 100644 drivers/usb/host/ohci-da8xx.c

-- 
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/20120824/01a82394/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-08-07 17:08 Tom Rini
@ 2012-08-13 23:14 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-08-13 23:14 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Tue, 7 Aug 2012 10:08:39 -0700, Tom Rini <trini@ti.com> wrote:

> Hello,
> 
> The following changes since commit
> 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08:
> 
>   DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti next
> 
> for you to fetch changes up to
> a47233a30055660ad64d865f1fde19503ed02696:
> 
>   am335x_evm: enable SMSC PHY driver (2012-08-07 10:07:22 -0700)
> 
> ----------------------------------------------------------------
> Enric Balletb? i Serra (1):
>       OMAP3: fix DRAM size for IGEP-based boards.
> 
> Ilya Yanok (1):
>       am335x_evm: enable SMSC PHY driver
> 
>  board/isee/igep0020/igep0020.c |    6 +++---
>  board/isee/igep0030/igep0030.c |    6 +++---
>  include/configs/am335x_evm.h   |    1 +
>  3 files changed, 7 insertions(+), 6 deletions(-)
> 

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-08-07 17:08 Tom Rini
  2012-08-13 23:14 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-08-07 17:08 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08:

  DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200)

are available in the git repository at:

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

for you to fetch changes up to a47233a30055660ad64d865f1fde19503ed02696:

  am335x_evm: enable SMSC PHY driver (2012-08-07 10:07:22 -0700)

----------------------------------------------------------------
Enric Balletb?? i Serra (1):
      OMAP3: fix DRAM size for IGEP-based boards.

Ilya Yanok (1):
      am335x_evm: enable SMSC PHY driver

 board/isee/igep0020/igep0020.c |    6 +++---
 board/isee/igep0030/igep0030.c |    6 +++---
 include/configs/am335x_evm.h   |    1 +
 3 files changed, 7 insertions(+), 6 deletions(-)

-- 
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/20120807/e9ae82f2/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-08-03 16:16 Tom Rini
@ 2012-08-05 20:26 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-08-05 20:26 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 3 Aug 2012 09:16:26 -0700, Tom Rini <trini@ti.com> wrote:
> Hello,
> 
> The following changes since commit 30a5f098e261b00b9c3ce43b8d4a641e106d26a0:
> 
>   Revert "arm: armv7: add compile option -mno-unaligned-access if available" (2012-07-29 11:19:37 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to c7dd0935555429d46d28ccbb0bde81a3e2f9c86e:
> 
>   DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-03 09:00:57 -0700)
> 
> ----------------------------------------------------------------
> Chandan Nath (3):
>       am33xx: CPSW init and definitions
>       am33xx: pin mux defintions for CPSW switch
>       am335x_evm: CPSW support
> 
> Cyril Chemparathy (1):
>       cpsw: add driver for cpsw ethernet device
> 
> Ilya Yanok (1):
>       am335x_evm: read the on-board EEPROM
> 
> Javier Martinez Canillas (3):
>       OMAP3: igep00x0: Add config option to choose flash storage memory
>       OMAP3: mem: Add Numonyx OneNAND 200MHz timing information
>       OMAP3: igep00x0: add SPL support for IGEP-based boards
> 
> Laurence Withers (4):
>       DaVinci DA8xx: tidy up clock ID definition
>       DaVinci DA850: UART2 clock ID comes from ASYNC3
>       DaVinci DA8xx: replace magic number for DDR speed
>       DaVinci DA8xx: fix set_cpu_clk_info()
> 
> Marek Vasut (2):
>       dm: Select CONFIG_SPL_GPIO_SUPPORT on OMAP
>       dm: Move OMAP GPIO driver to drivers/gpio/
> 
> Mikhail Kshevetskiy (3):
>       arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138
>       arm/davinci/da850: add uart0 pinmux
>       serial/ns16550: ns16550 has a different register layout on SOC_DA8XX
> 
> Peter Meerwald (1):
>       beagle: only call DSS code when #defined CONFIG_VIDEO_OMAP3
> 
> Tom Rini (25):
>       am33xx: Enable gpio0 clock
>       am335x_evm: Update config for common usage
>       am33xx: Remove DMM_BASE define
>       am33xx: Convert to using <asm/emif.h> to describe the EMIF
>       am33xx: Remove extra check in enable_ddr_clocks
>       am33xx: Bugfix to config_sdram()
>       am33xx: Rework DDR2 EMIF initalization slightly
>       am33xx: Make config_cmd_ctrl / config_ddr_data take const structs
>       am33xx: Pass to config_ddr the type of memory that is connected
>       am33xx: Move the call to ddr_pll_config, make it take the frequency
>       am33xx: Clean up unused DDR defines, prefix more with 'DDR2'
>       am33xx: Document what we're doing with ddrctrl->ddrckectrl
>       am33xx: Turn a number of 'int' functions to 'void'
>       am33xx: Use emif_regs struct for storing initialization values
>       am33xx: Rework config_io_ctrl slightly
>       am33xx: Do not touch 'ratio1' fields
>       am33xx: Correct and clean up ddr_regs struct
>       am33xx: Move some variables in emif4.c, mark them static.
>       am33xx: Rework config_ddr to make DDR3 support easier.
>       am33xx: Add DDR3 (Micron MT41J128M16JT-125) timings and support
>       am33xx: Remove board/ti/am335x/evm.c
>       am33xx: Add support for TI AM335x StarterKit EVM
>       am33xx evm: Add CONFIG_CMD_EEPROM and related
>       am33xx: Rework pinmux functions
>       doc/git-mailrc: Update 'ti' alias
> 
> Vaibhav Bedia (1):
>       am335x: ddr_defs: Update EMIF parameters
> 
>  arch/arm/cpu/arm926ejs/davinci/cpu.c               |   22 +-
>  arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |   26 +-
>  arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |    5 +
>  arch/arm/cpu/armv7/am33xx/board.c                  |  194 +++-
>  arch/arm/cpu/armv7/am33xx/clock.c                  |   22 +-
>  arch/arm/cpu/armv7/am33xx/ddr.c                    |   87 +-
>  arch/arm/cpu/armv7/am33xx/emif4.c                  |  240 +++--
>  arch/arm/cpu/armv7/omap-common/Makefile            |    3 -
>  arch/arm/include/asm/arch-am33xx/common_def.h      |   23 -
>  arch/arm/include/asm/arch-am33xx/cpu.h             |   11 +
>  arch/arm/include/asm/arch-am33xx/ddr_defs.h        |  184 ++--
>  arch/arm/include/asm/arch-am33xx/hardware.h        |    6 +-
>  arch/arm/include/asm/arch-am33xx/sys_proto.h       |   29 +
>  arch/arm/include/asm/arch-davinci/hardware.h       |   60 +-
>  arch/arm/include/asm/arch-davinci/pinmux_defs.h    |    1 +
>  arch/arm/include/asm/arch-omap3/mem.h              |   29 +
>  arch/arm/include/asm/emif.h                        |    8 +-
>  board/isee/igep0020/config.mk                      |   33 -
>  board/isee/igep0020/igep0020.c                     |   42 +-
>  board/isee/igep0020/igep0020.h                     |    4 +
>  board/isee/igep0030/config.mk                      |   33 -
>  board/isee/igep0030/igep0030.c                     |   42 +-
>  board/isee/igep0030/igep0030.h                     |    4 +
>  board/ti/am335x/Makefile                           |    4 +-
>  board/ti/am335x/evm.c                              |   40 -
>  board/ti/am335x/mux.c                              |   87 +-
>  board/ti/beagle/beagle.c                           |    4 +
>  boards.cfg                                         |    6 +-
>  doc/git-mailrc                                     |    2 +-
>  drivers/gpio/Makefile                              |    1 +
>  .../omap-common/gpio.c => drivers/gpio/omap_gpio.c |    0
>  drivers/net/Makefile                               |    1 +
>  drivers/net/cpsw.c                                 |  991 ++++++++++++++++++++
>  drivers/serial/ns16550.c                           |    2 +-
>  include/configs/am335x_evm.h                       |   97 +-
>  include/configs/cm_t35.h                           |    1 +
>  include/configs/devkit8000.h                       |    3 +
>  include/configs/dig297.h                           |    1 +
>  include/configs/igep00x0.h                         |   85 ++
>  include/configs/mcx.h                              |    1 +
>  include/configs/omap3_beagle.h                     |    2 +
>  include/configs/omap3_evm_common.h                 |    1 +
>  include/configs/omap3_logic.h                      |    1 +
>  include/configs/omap3_mvblx.h                      |    1 +
>  include/configs/omap3_overo.h                      |    2 +
>  include/configs/omap3_pandora.h                    |    1 +
>  include/configs/omap3_zoom2.h                      |    1 +
>  include/configs/omap4_common.h                     |    2 +
>  include/configs/omap5_evm.h                        |    1 +
>  include/configs/tam3517-common.h                   |    2 +
>  include/cpsw.h                                     |   51 +
>  include/ns16550.h                                  |    9 +
>  52 files changed, 1984 insertions(+), 524 deletions(-)
>  delete mode 100644 arch/arm/include/asm/arch-am33xx/common_def.h
>  delete mode 100644 board/isee/igep0020/config.mk
>  delete mode 100644 board/isee/igep0030/config.mk
>  delete mode 100644 board/ti/am335x/evm.c
>  rename arch/arm/cpu/armv7/omap-common/gpio.c => drivers/gpio/omap_gpio.c (100%)
>  create mode 100644 drivers/net/cpsw.c
>  create mode 100644 include/cpsw.h
> 
> Please note that my tree is based on current u-boot-arm/next and I've
> updated my next and master branches to the same content.  I also did a
> quick test and all of these merge easily onto Wolfgang's current tree.
> 
> Thanks!

Applied to u-boot-arm/next moved into u-bootarm/master and above u-boot/master,
thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-08-03 16:16 Tom Rini
  2012-08-05 20:26 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-08-03 16:16 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 30a5f098e261b00b9c3ce43b8d4a641e106d26a0:

  Revert "arm: armv7: add compile option -mno-unaligned-access if available" (2012-07-29 11:19:37 +0200)

are available in the git repository at:

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

for you to fetch changes up to c7dd0935555429d46d28ccbb0bde81a3e2f9c86e:

  DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-03 09:00:57 -0700)

----------------------------------------------------------------
Chandan Nath (3):
      am33xx: CPSW init and definitions
      am33xx: pin mux defintions for CPSW switch
      am335x_evm: CPSW support

Cyril Chemparathy (1):
      cpsw: add driver for cpsw ethernet device

Ilya Yanok (1):
      am335x_evm: read the on-board EEPROM

Javier Martinez Canillas (3):
      OMAP3: igep00x0: Add config option to choose flash storage memory
      OMAP3: mem: Add Numonyx OneNAND 200MHz timing information
      OMAP3: igep00x0: add SPL support for IGEP-based boards

Laurence Withers (4):
      DaVinci DA8xx: tidy up clock ID definition
      DaVinci DA850: UART2 clock ID comes from ASYNC3
      DaVinci DA8xx: replace magic number for DDR speed
      DaVinci DA8xx: fix set_cpu_clk_info()

Marek Vasut (2):
      dm: Select CONFIG_SPL_GPIO_SUPPORT on OMAP
      dm: Move OMAP GPIO driver to drivers/gpio/

Mikhail Kshevetskiy (3):
      arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138
      arm/davinci/da850: add uart0 pinmux
      serial/ns16550: ns16550 has a different register layout on SOC_DA8XX

Peter Meerwald (1):
      beagle: only call DSS code when #defined CONFIG_VIDEO_OMAP3

Tom Rini (25):
      am33xx: Enable gpio0 clock
      am335x_evm: Update config for common usage
      am33xx: Remove DMM_BASE define
      am33xx: Convert to using <asm/emif.h> to describe the EMIF
      am33xx: Remove extra check in enable_ddr_clocks
      am33xx: Bugfix to config_sdram()
      am33xx: Rework DDR2 EMIF initalization slightly
      am33xx: Make config_cmd_ctrl / config_ddr_data take const structs
      am33xx: Pass to config_ddr the type of memory that is connected
      am33xx: Move the call to ddr_pll_config, make it take the frequency
      am33xx: Clean up unused DDR defines, prefix more with 'DDR2'
      am33xx: Document what we're doing with ddrctrl->ddrckectrl
      am33xx: Turn a number of 'int' functions to 'void'
      am33xx: Use emif_regs struct for storing initialization values
      am33xx: Rework config_io_ctrl slightly
      am33xx: Do not touch 'ratio1' fields
      am33xx: Correct and clean up ddr_regs struct
      am33xx: Move some variables in emif4.c, mark them static.
      am33xx: Rework config_ddr to make DDR3 support easier.
      am33xx: Add DDR3 (Micron MT41J128M16JT-125) timings and support
      am33xx: Remove board/ti/am335x/evm.c
      am33xx: Add support for TI AM335x StarterKit EVM
      am33xx evm: Add CONFIG_CMD_EEPROM and related
      am33xx: Rework pinmux functions
      doc/git-mailrc: Update 'ti' alias

Vaibhav Bedia (1):
      am335x: ddr_defs: Update EMIF parameters

 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   22 +-
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |   26 +-
 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |    5 +
 arch/arm/cpu/armv7/am33xx/board.c                  |  194 +++-
 arch/arm/cpu/armv7/am33xx/clock.c                  |   22 +-
 arch/arm/cpu/armv7/am33xx/ddr.c                    |   87 +-
 arch/arm/cpu/armv7/am33xx/emif4.c                  |  240 +++--
 arch/arm/cpu/armv7/omap-common/Makefile            |    3 -
 arch/arm/include/asm/arch-am33xx/common_def.h      |   23 -
 arch/arm/include/asm/arch-am33xx/cpu.h             |   11 +
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |  184 ++--
 arch/arm/include/asm/arch-am33xx/hardware.h        |    6 +-
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |   29 +
 arch/arm/include/asm/arch-davinci/hardware.h       |   60 +-
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |    1 +
 arch/arm/include/asm/arch-omap3/mem.h              |   29 +
 arch/arm/include/asm/emif.h                        |    8 +-
 board/isee/igep0020/config.mk                      |   33 -
 board/isee/igep0020/igep0020.c                     |   42 +-
 board/isee/igep0020/igep0020.h                     |    4 +
 board/isee/igep0030/config.mk                      |   33 -
 board/isee/igep0030/igep0030.c                     |   42 +-
 board/isee/igep0030/igep0030.h                     |    4 +
 board/ti/am335x/Makefile                           |    4 +-
 board/ti/am335x/evm.c                              |   40 -
 board/ti/am335x/mux.c                              |   87 +-
 board/ti/beagle/beagle.c                           |    4 +
 boards.cfg                                         |    6 +-
 doc/git-mailrc                                     |    2 +-
 drivers/gpio/Makefile                              |    1 +
 .../omap-common/gpio.c => drivers/gpio/omap_gpio.c |    0
 drivers/net/Makefile                               |    1 +
 drivers/net/cpsw.c                                 |  991 ++++++++++++++++++++
 drivers/serial/ns16550.c                           |    2 +-
 include/configs/am335x_evm.h                       |   97 +-
 include/configs/cm_t35.h                           |    1 +
 include/configs/devkit8000.h                       |    3 +
 include/configs/dig297.h                           |    1 +
 include/configs/igep00x0.h                         |   85 ++
 include/configs/mcx.h                              |    1 +
 include/configs/omap3_beagle.h                     |    2 +
 include/configs/omap3_evm_common.h                 |    1 +
 include/configs/omap3_logic.h                      |    1 +
 include/configs/omap3_mvblx.h                      |    1 +
 include/configs/omap3_overo.h                      |    2 +
 include/configs/omap3_pandora.h                    |    1 +
 include/configs/omap3_zoom2.h                      |    1 +
 include/configs/omap4_common.h                     |    2 +
 include/configs/omap5_evm.h                        |    1 +
 include/configs/tam3517-common.h                   |    2 +
 include/cpsw.h                                     |   51 +
 include/ns16550.h                                  |    9 +
 52 files changed, 1984 insertions(+), 524 deletions(-)
 delete mode 100644 arch/arm/include/asm/arch-am33xx/common_def.h
 delete mode 100644 board/isee/igep0020/config.mk
 delete mode 100644 board/isee/igep0030/config.mk
 delete mode 100644 board/ti/am335x/evm.c
 rename arch/arm/cpu/armv7/omap-common/gpio.c => drivers/gpio/omap_gpio.c (100%)
 create mode 100644 drivers/net/cpsw.c
 create mode 100644 include/cpsw.h

Please note that my tree is based on current u-boot-arm/next and I've
updated my next and master branches to the same content.  I also did a
quick test and all of these merge easily onto Wolfgang's current tree.

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/20120803/a4e1fe45/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-07-09 18:43 Tom Rini
@ 2012-07-09 20:38 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-07-09 20:38 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Mon, 9 Jul 2012 11:43:56 -0700, Tom Rini <trini@ti.com> wrote:
> Hello,
> 
> The following changes since commit d702b0811df53a1fc2d8049e35431e4591d093c6:
> 
>   ARM: cache: Move the cp15 CR register read before flushing the cache. (2012-07-07 14:07:44 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to a92cc088d32e58b53b6a6d2fae8888c5288f4ed1:
> 
>   beagle: add eeprom expansion board info for bct brettl4 (2012-07-09 05:53:00 -0700)
> 
> ----------------------------------------------------------------
> Peter Meerwald (1):
>       beagle: add eeprom expansion board info for bct brettl4
> 
>  board/ti/beagle/beagle.c |    8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> This is a small change and one that I believe is best served being in
> mainline and releases sooner rather than later.  Thanks!

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-07-09 18:43 Tom Rini
  2012-07-09 20:38 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-07-09 18:43 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit d702b0811df53a1fc2d8049e35431e4591d093c6:

  ARM: cache: Move the cp15 CR register read before flushing the cache. (2012-07-07 14:07:44 +0200)

are available in the git repository at:

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

for you to fetch changes up to a92cc088d32e58b53b6a6d2fae8888c5288f4ed1:

  beagle: add eeprom expansion board info for bct brettl4 (2012-07-09 05:53:00 -0700)

----------------------------------------------------------------
Peter Meerwald (1):
      beagle: add eeprom expansion board info for bct brettl4

 board/ti/beagle/beagle.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

This is a small change and one that I believe is best served being in
mainline and releases sooner rather than later.  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/20120709/6724bb3f/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-07-05 16:18 Tom Rini
@ 2012-07-05 21:31 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-07-05 21:31 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 5 Jul 2012 09:18:38 -0700, Tom Rini <trini@ti.com> wrote:
> Hi Albert,
> 
> The following changes since commit 863ba81c70d8ca8dc49e0c5a28a1fd0fb23ca62d:
> 
>   arm: bugfix: Move vector table before jumping relocated code (2012-07-05 14:01:28 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti master
> 
> for you to fetch changes up to 5af86f75c46f15ae7d499593d52cd7db998b8428:
> 
>   cm-t35: fix incorrect NAND_ECC layout selection (2012-07-05 09:05:53 -0700)

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

Note: Ubuntu's Linaro toolchain still builds 280 boards clean, although some
'attention' messages are emitted which escape the build system's warning
detection.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-07-05 16:18 Tom Rini
  2012-07-05 21:31 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-07-05 16:18 UTC (permalink / raw)
  To: u-boot

Hi Albert,

The following changes since commit 863ba81c70d8ca8dc49e0c5a28a1fd0fb23ca62d:

  arm: bugfix: Move vector table before jumping relocated code (2012-07-05 14:01:28 +0200)

are available in the git repository at:

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

for you to fetch changes up to 5af86f75c46f15ae7d499593d52cd7db998b8428:

  cm-t35: fix incorrect NAND_ECC layout selection (2012-07-05 09:05:53 -0700)

----------------------------------------------------------------
Lokesh Vutla (3):
      ARM: OMAP3+: Detect reset type
      OMAP4+: Handle sdram init after warm reset
      OMAP4+: Force DDR in self-refresh after warm reset

Nikita Kiryanov (1):
      cm-t35: fix incorrect NAND_ECC layout selection

Rajashekhara, Sudhakar (1):
      da850/omap-l138: Enable auto negotiation in RMII mode

SRICHARAN R (5):
      ARM: OMAP4+: Move external phy initialisations to arch specific place.
      ARM: OMAP4/5: Move gpmc clocks to essential group.
      ARM: OMAP4/5: Move USB clocks to essential group.
      ARM: OMAP4/5: Move USB pads to essential list.
      ARM: OMAP4/5: Do not configure non essential pads, clocks, dplls.

Sebastien Jan (1):
      omap4: Use a smaller M,N couple for IVA DPLL

Steve Sakoman (3):
      omap: emif: deal with rams that return duplicate mr data on all byte lanes
      omap: emif: fix bug in manufacturer code test
      omap: am33xx: accomodate input clocks other than 24 Mhz

 arch/arm/cpu/armv7/omap-common/emif-common.c     |   72 ++++++++++++----------
 arch/arm/cpu/armv7/omap-common/hwinit-common.c   |    4 ++
 arch/arm/cpu/armv7/omap-common/reset.c           |    5 ++
 arch/arm/cpu/armv7/omap4/clocks.c                |   14 ++---
 arch/arm/cpu/armv7/omap4/sdram_elpida.c          |    1 -
 arch/arm/cpu/armv7/omap5/clocks.c                |    8 +--
 arch/arm/cpu/armv7/omap5/sdram.c                 |   31 ++++++++++
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h |   10 +--
 arch/arm/include/asm/arch-am33xx/cpu.h           |    2 +
 arch/arm/include/asm/arch-omap3/cpu.h            |    2 +
 arch/arm/include/asm/arch-omap3/sys_proto.h      |    1 +
 arch/arm/include/asm/arch-omap4/cpu.h            |    2 +
 arch/arm/include/asm/arch-omap4/sys_proto.h      |    2 +
 arch/arm/include/asm/arch-omap5/cpu.h            |    2 +
 arch/arm/include/asm/arch-omap5/sys_proto.h      |    2 +
 arch/arm/include/asm/emif.h                      |    2 +
 board/ti/omap5_evm/mux_data.h                    |   18 +++---
 board/ti/sdp4430/sdp4430_mux_data.h              |   25 ++++----
 drivers/net/davinci_emac.c                       |    8 +++
 include/configs/cm_t35.h                         |    2 +-
 include/configs/omap4_common.h                   |    5 --
 include/configs/omap5_evm.h                      |    2 -
 22 files changed, 140 insertions(+), 80 deletions(-)

Please take this for the pull request that goes to Wolfgang for -rc1 if
possible.  If you can't, I've got other stuff I need to sort over that
should go in for the release as well but I want to get this out now.

Everyone else that's posted TI-related patches, if your patch isn't here
but is assigned to me in patchwork I haven't lost it and will place it
in either master or next soon.  If your patch isn't assigned to me,
please move it to me (you should be able to manage your own patches) and
email me the link either way.  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/20120705/5e4a21ea/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-05-25 15:02 Tom Rini
@ 2012-06-10 21:39 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-06-10 21:39 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 25/05/2012 17:02, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 2ca4a209a5b961ad1be8782c68dabe326d77dfaf:
>
>    OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer (2012-05-15 08:31:41 +0200)
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to aa54ece4e24f6ddd14914ca8c0c02ce5f279020e:
>
>    cm-t35: print PCB revision information (2012-05-25 07:58:41 -0700)

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-05-25 15:02 Tom Rini
  2012-06-10 21:39 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-05-25 15:02 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 2ca4a209a5b961ad1be8782c68dabe326d77dfaf:

  OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer (2012-05-15 08:31:41 +0200)

are available in the git repository at:

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

for you to fetch changes up to aa54ece4e24f6ddd14914ca8c0c02ce5f279020e:

  cm-t35: print PCB revision information (2012-05-25 07:58:41 -0700)

----------------------------------------------------------------
Heiko Schocher (1):
      arm,davinci: update for enbw_cmc board

Igor Grinberg (1):
      cm-t35: reduce the environment size

Lokesh Vutla (7):
      OMAP5: Adding correct Control id code for OMAP5430
      OMAP5: ADD chip detection for OMAP5432 SOC
      OMAP5: Configure the io settings for omap5432 uevm board
      OMAP5: ADD precalculated timings for ddr3
      OMAP5: EMIF: Add support for DDR3 device
      OMAP5: DPLL core lock for OMAP5432
      OMAP5: Change voltages for omap5432

Nikita Kiryanov (3):
      cm-t35: fix incorrect BOARD_REV_SIZE value
      cm-t35: fix legacy board revision representation
      cm-t35: print PCB revision information

SRICHARAN R (5):
      ARM: OMAP4+: dmm: Take care of overlapping dmm and trap sections.
      ARM: OMAP5: dmm: Create a tiler trap section.
      ARM: OMAP5: Align memory used for testing to the power of 2
      ARM: OMAP5: Correct the DRAM_ADDR_SPACE_END macro.
      ARM: OMAP4: Correct the lpddr2 io settings register value.

Thomas Weber (1):
      omap4/5: Use CPUDIR for .lds script

Tom Rini (10):
      am33xx: Do not call init_timer twice
      Revert "I2C: OMAP: detect more devices when probing an i2c bus"
      am335x: Correct i2c sysc offset
      am33xx: Fill in more cm_wkuppll / cm_perpll
      am33xx: Fix i2c sampling rate typo
      omap24xx_i2c: Add AM33XX support
      OMAP3 Beagle: Set BOOTDELAY to 3
      omap3evm: Set BOOTDELAY to 3
      omap3_beagle: Add CONFIG_CMD_ASKENV
      omap3evm: Add CONFIG_CMD_ASKENV

Troy Kisky (1):
      DaVinci: fix ddr2 vtp i/o calibration

 arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S |    7 +-
 arch/arm/cpu/armv7/am33xx/board.c              |   30 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |    8 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c   |  121 ++++++++-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c |   20 +-
 arch/arm/cpu/armv7/omap4/hwinit.c              |    5 +
 arch/arm/cpu/armv7/omap4/sdram_elpida.c        |    1 +
 arch/arm/cpu/armv7/omap5/clocks.c              |   31 ++-
 arch/arm/cpu/armv7/omap5/hwinit.c              |  123 +++++++--
 arch/arm/cpu/armv7/omap5/sdram.c               |   56 +++-
 arch/arm/include/asm/arch-am33xx/cpu.h         |   42 ++-
 arch/arm/include/asm/arch-am33xx/i2c.h         |    8 +-
 arch/arm/include/asm/arch-omap4/clocks.h       |    5 +
 arch/arm/include/asm/arch-omap4/omap.h         |    2 +-
 arch/arm/include/asm/arch-omap5/clocks.h       |   15 +
 arch/arm/include/asm/arch-omap5/omap.h         |   20 +-
 arch/arm/include/asm/emif.h                    |   50 +++-
 arch/arm/include/asm/omap_common.h             |    1 +
 board/cm_t35/cm_t35.c                          |   33 +++
 board/cm_t35/eeprom.c                          |   26 +-
 board/cm_t35/eeprom.h                          |    5 +
 board/enbw/enbw_cmc/enbw_cmc.c                 |  347 ++++++++++++++++++++++--
 board/ti/am335x/evm.c                          |   13 +-
 doc/README.switch_config                       |   25 ++
 drivers/i2c/omap24xx_i2c.c                     |   46 +++-
 include/configs/cm_t35.h                       |    3 +-
 include/configs/enbw_cmc.h                     |   20 +-
 include/configs/omap3_beagle.h                 |    4 +-
 include/configs/omap3_evm.h                    |    4 +-
 include/configs/omap4_common.h                 |    2 +-
 include/configs/omap5_evm.h                    |    2 +-
 31 files changed, 922 insertions(+), 153 deletions(-)
 create mode 100644 doc/README.switch_config

With this, I'm considering anything that's not a bugfix to existing code
(that's in my custodial area) to be for the 'next' branch and not for
the v2012.07 release (since we're a little bit past the official merge
window closing).

-- 
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/20120525/8345a895/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-05-14 21:26 Tom Rini
@ 2012-05-15  6:29 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-05-15  6:29 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 14/05/2012 23:26, Tom Rini a ?crit :
> Hello,
>
> This replaces my previous pull request and has been build-tested on both
> ELDK5.2 and 4.1 and the only failures are the expected ones of
> ELDK4.1+omap4/5 (too old to generate working thumb in this case).
>
> omap3_beagle and omap4_panda are boot tested (with 3.4-rc7+b6255ee) to a
> login prompt and am335x_evm (on beaglebone) is also tested, but not
> booted to Linux.
>
> The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4:
>
>    EXYNOS: Change bits per pixel value proper for u-boot. (2012-04-25 16:23:26 +0900)
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 2e3175ff61dc6f76d2c92c1a207053f03964c4b1:
>
>    OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer (2012-05-14 09:22:07 -0700)

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-05-14 21:26 Tom Rini
  2012-05-15  6:29 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-05-14 21:26 UTC (permalink / raw)
  To: u-boot

Hello,

This replaces my previous pull request and has been build-tested on both
ELDK5.2 and 4.1 and the only failures are the expected ones of
ELDK4.1+omap4/5 (too old to generate working thumb in this case).

omap3_beagle and omap4_panda are boot tested (with 3.4-rc7+b6255ee) to a
login prompt and am335x_evm (on beaglebone) is also tested, but not
booted to Linux.

The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4:

  EXYNOS: Change bits per pixel value proper for u-boot. (2012-04-25 16:23:26 +0900)

are available in the git repository at:

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

for you to fetch changes up to 2e3175ff61dc6f76d2c92c1a207053f03964c4b1:

  OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer (2012-05-14 09:22:07 -0700)

----------------------------------------------------------------
Enric Balletbo i Serra (2):
      igep00x0: enable the use of a plain text file
      igep00x0: change mpurate from 500 to auto

Jon Hunter (1):
      OMAP4: Set fdt_high for OMAP4 devices to enable booting with Device Tree

Matt Porter (1):
      arm, omap3: fix warm reset serial output on OMAP36xx/AM/DM37xx

SRICHARAN R (1):
      OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer

Tero Kristo (3):
      omap4: panda: disable uart2 pads during boot
      omap4: do not enable fs-usb module
      omap4: do not enable auxiliary cores

Tom Rini (2):
      ARM: omap3: Set SPL stack size to 8KB, image to 54KB.
      ARM: omap3: Add CONFIG_SPL_BOARD_INIT for CONFIG_SPL_MMC_SUPPORT

 MAINTAINERS                        |   12 ++++++------
 arch/arm/cpu/armv7/omap3/clock.c   |   16 ++++++++++++++++
 arch/arm/cpu/armv7/omap4/clocks.c  |    6 ------
 board/ti/panda/panda_mux_data.h    |    8 ++++----
 doc/SPL/README.omap3               |    4 ++--
 include/configs/am3517_crane.h     |    2 +-
 include/configs/am3517_evm.h       |    2 +-
 include/configs/devkit8000.h       |    2 +-
 include/configs/igep00x0.h         |   30 +++++++++++++++++-------------
 include/configs/mcx.h              |    2 +-
 include/configs/omap3_beagle.h     |    3 ++-
 include/configs/omap3_evm_common.h |    3 ++-
 include/configs/omap3_overo.h      |    3 ++-
 include/configs/omap4_common.h     |    1 +
 include/configs/tam3517-common.h   |    2 +-
 include/configs/tricorder.h        |    3 ++-
 16 files changed, 59 insertions(+), 40 deletions(-)

-- 
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/20120514/abad1dbc/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-05-08 15:11 ` Albert ARIBAUD
@ 2012-05-08 17:08   ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-05-08 17:08 UTC (permalink / raw)
  To: u-boot

On Tue, May 08, 2012 at 05:11:56PM +0200, Albert ARIBAUD wrote:
> Hi Tom,
> 
> Le 03/05/2012 17:53, Tom Rini a ?crit :
> >Hello,
> >
> >The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4:
> >
> >   EXYNOS: Change bits per pixel value proper for u-boot. (2012-04-25 16:23:26 +0900)
> >
> >are available in the git repository at:
> >
> >   git://git.denx.de/u-boot-ti.git master
> >
> >for you to fetch changes up to 72cbb6bb66b8e5a16197fab546712da9c10c8e89:
> >
> >   beagle: fix 'timed out in wait_for_bb' message in SPL (2012-05-03 08:51:05 -0700)
> >
> >----------------------------------------------------------------
> >Enric Balletbo i Serra (2):
> >       igep00x0: enable the use of a plain text file
> >       igep00x0: change mpurate from 500 to auto
> >
> >Peter Meerwald (1):
> >       beagle: fix 'timed out in wait_for_bb' message in SPL
> >
> >  include/configs/igep00x0.h     |   30 +++++++++++++++++-------------
> >  include/configs/omap3_beagle.h |    1 +
> >  2 files changed, 18 insertions(+), 13 deletions(-)
> 
> This seems to break omap3_beagle with
> 
> 	arm-linux-ld: region .sram is full (u-boot-spl section .data)
> 
> Using ELDK4.2.

Blah, OK, I'll fix things up.  We can safely have a higher SPL size on
these parts anyhow.

-- 
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/20120508/b00ab323/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-05-03 15:53 Tom Rini
@ 2012-05-08 15:11 ` Albert ARIBAUD
  2012-05-08 17:08   ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2012-05-08 15:11 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 03/05/2012 17:53, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4:
>
>    EXYNOS: Change bits per pixel value proper for u-boot. (2012-04-25 16:23:26 +0900)
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 72cbb6bb66b8e5a16197fab546712da9c10c8e89:
>
>    beagle: fix 'timed out in wait_for_bb' message in SPL (2012-05-03 08:51:05 -0700)
>
> ----------------------------------------------------------------
> Enric Balletbo i Serra (2):
>        igep00x0: enable the use of a plain text file
>        igep00x0: change mpurate from 500 to auto
>
> Peter Meerwald (1):
>        beagle: fix 'timed out in wait_for_bb' message in SPL
>
>   include/configs/igep00x0.h     |   30 +++++++++++++++++-------------
>   include/configs/omap3_beagle.h |    1 +
>   2 files changed, 18 insertions(+), 13 deletions(-)

This seems to break omap3_beagle with

	arm-linux-ld: region .sram is full (u-boot-spl section .data)

Using ELDK4.2.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-05-03 15:53 Tom Rini
  2012-05-08 15:11 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-05-03 15:53 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4:

  EXYNOS: Change bits per pixel value proper for u-boot. (2012-04-25 16:23:26 +0900)

are available in the git repository at:

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

for you to fetch changes up to 72cbb6bb66b8e5a16197fab546712da9c10c8e89:

  beagle: fix 'timed out in wait_for_bb' message in SPL (2012-05-03 08:51:05 -0700)

----------------------------------------------------------------
Enric Balletbo i Serra (2):
      igep00x0: enable the use of a plain text file
      igep00x0: change mpurate from 500 to auto

Peter Meerwald (1):
      beagle: fix 'timed out in wait_for_bb' message in SPL

 include/configs/igep00x0.h     |   30 +++++++++++++++++-------------
 include/configs/omap3_beagle.h |    1 +
 2 files changed, 18 insertions(+), 13 deletions(-)

-- 
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/20120503/c0b2dd32/attachment.pgp>

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

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

Hi Tom,

Le 23/04/2012 19:19, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 5697158fd27c9cc938eb3e3308e3c1483a2a1ef8:
>    Tom Rini (1):
>          include/configs: Remove CONFIG_SYS_64BIT_STRTOUL
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti master
>
> Nikita Kiryanov (1):
>        cm-t35: add I2C multi-bus support
>
> Nobuhiro Iwamatsu (2):
>        arm: cam_enc_4xx: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT
>        arm: ea20: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT
>
>   board/cm_t35/cm_t35.c         |    6 ++++++
>   board/davinci/ea20/ea20.c     |    4 ++--
>   include/configs/cam_enc_4xx.h |    2 +-
>   include/configs/cm_t35.h      |    1 +
>   include/configs/ea20.h        |    2 +-
>   5 files changed, 11 insertions(+), 4 deletions(-)

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

Amicalement,
-- 
Albert.

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

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

Hello,

The following changes since commit 5697158fd27c9cc938eb3e3308e3c1483a2a1ef8:
  Tom Rini (1):
        include/configs: Remove CONFIG_SYS_64BIT_STRTOUL

are available in the git repository at:

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

Nikita Kiryanov (1):
      cm-t35: add I2C multi-bus support

Nobuhiro Iwamatsu (2):
      arm: cam_enc_4xx: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT
      arm: ea20: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT

 board/cm_t35/cm_t35.c         |    6 ++++++
 board/davinci/ea20/ea20.c     |    4 ++--
 include/configs/cam_enc_4xx.h |    2 +-
 include/configs/cm_t35.h      |    1 +
 include/configs/ea20.h        |    2 +-
 5 files changed, 11 insertions(+), 4 deletions(-)

-- 
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/20120423/9a208470/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-04-10 17:57 Tom Rini
@ 2012-04-16 12:46 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-04-16 12:46 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 10/04/2012 19:57, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 4a0764858b0bdcb3508f01b96e3fa32b16cdb30f:
>    Simon Glass (1):
>          arm: Use common .lds file where possible
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti master
>
> Bernhard Walle (2):
>        tricorder: Add UBIFS
>        tricorder: Load kernel from ubifs
>
> Igor Grinberg (1):
>        cm-t35: fix Ethernet reset timing
>
> Joel Fernandes (1):
>        BeagleBoard: Remove userbutton command and use gpio command instead
>
> Tom Rini (2):
>        OMAP: Move omap1510inn to Unmaintained / Orphaned
>        hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
>
>   MAINTAINERS                    |    7 ++---
>   board/cm_t35/cm_t35.c          |   11 ++++---
>   board/ti/beagle/beagle.c       |   55 ----------------------------------------
>   include/configs/hawkboard.h    |    1 +
>   include/configs/omap3_beagle.h |   11 ++++++-
>   include/configs/tricorder.h    |   15 ++++++++---
>   6 files changed, 30 insertions(+), 70 deletions(-)
>
> These changes are either long-standing patches (Joel), bugfixes (Igor,
> my hawkboard change) or minor changes requested by board maintainers
> (Bernhard), or trivial (just move omap1510inn in MAINTAINERS).

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-04-10 17:57 Tom Rini
  2012-04-16 12:46 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-04-10 17:57 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 4a0764858b0bdcb3508f01b96e3fa32b16cdb30f:
  Simon Glass (1):
        arm: Use common .lds file where possible

are available in the git repository at:

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

Bernhard Walle (2):
      tricorder: Add UBIFS
      tricorder: Load kernel from ubifs

Igor Grinberg (1):
      cm-t35: fix Ethernet reset timing

Joel Fernandes (1):
      BeagleBoard: Remove userbutton command and use gpio command instead

Tom Rini (2):
      OMAP: Move omap1510inn to Unmaintained / Orphaned
      hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT

 MAINTAINERS                    |    7 ++---
 board/cm_t35/cm_t35.c          |   11 ++++---
 board/ti/beagle/beagle.c       |   55 ----------------------------------------
 include/configs/hawkboard.h    |    1 +
 include/configs/omap3_beagle.h |   11 ++++++-
 include/configs/tricorder.h    |   15 ++++++++---
 6 files changed, 30 insertions(+), 70 deletions(-)

These changes are either long-standing patches (Joel), bugfixes (Igor,
my hawkboard change) or minor changes requested by board maintainers
(Bernhard), or trivial (just move omap1510inn in MAINTAINERS).

-- 
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/20120410/c8e3e804/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-30  5:35       ` Albert ARIBAUD
@ 2012-03-30 14:16         ` Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-03-30 14:16 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 29, 2012 at 10:35 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Tom,
>
> Le 30/03/2012 02:58, Tom Rini a ?crit :
>
>> On Thu, Mar 29, 2012 at 4:51 PM, Albert ARIBAUD
>> <albert.u.boot@aribaud.net> ?wrote:
>>>
>>> Hi Tom,
>>>
>>> Le 29/03/2012 20:01, Tom Rini a ?crit :
>>>>
>>>>
>>>> On Wed, Mar 28, 2012 at 2:54 PM, Tom Rini<trini@ti.com> ? ?wrote:
>>>>>
>>>>>
>>>>> Hello,
>>>>>
>>>>> The following changes since commit
>>>>> 4a3ea216414ad762b3718775a65437c13f0accbc:
>>>>> ?Rob Herring (1):
>>>>> ? ? ? ?ARM: highbank: setup env from boot source register
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>> ?git://git.denx.de/u-boot-ti master
>>>>>
>>>>> Anatolij Gustschin (2):
>>>>> ? ? ?board/ti/beagle/beagle.c: Fix build warnings
>>>>> ? ? ?arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>>>>>
>>>>> Tom Rini (3):
>>>>> ? ? ?sdrc.c: Fix typo in do_sdrc_init() for SPL
>>>>> ? ? ?OMAP: Remove omap1610inn-based boards
>>>>> ? ? ?OMAP: Move omap1510inn to Unmaintained / Orphaned
>>>>
>>>>
>>>>
>>>> Well this is embarrassing. ?I'd have sworn I tested -s omap but I must
>>>> not have as omap1510inn doesn't build after that change as it doesn't
>>>> build as there's no such thing as arch/arm/cpu/arm925t/omap/. ?Please
>>>> drop that change out, sorry for the noise.
>>>
>>>
>>>
>>> Hmm... I would not expect omap1510inn to build after it has been
>>> orphaned,
>>> so I am unsure what you mean exactly here. Also, can you precisely list
>>> the
>>> change(s) that I should drop?
>>
>>
>> So, omap1510inn has no active maintainer, it's listed as the same as
>> omap1610inn which was not building. ?omap1510inn was however building
>> until 'OMAP: Move omap1510inn to Unmaintained / Orphaned' in which I
>> also added it to the omap SoC family, forgetting that it also forced
>> trying to build a non-existent directory, breaking it.
>
>
> Ok, throwing out 'OMAP: Move omap1510inn to Unmaintained / Orphaned' from
> u-boot-arm/master.

Thanks, sorry again for the noise.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-30  0:58     ` Tom Rini
@ 2012-03-30  5:35       ` Albert ARIBAUD
  2012-03-30 14:16         ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-30  5:35 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 30/03/2012 02:58, Tom Rini a ?crit :
> On Thu, Mar 29, 2012 at 4:51 PM, Albert ARIBAUD
> <albert.u.boot@aribaud.net>  wrote:
>> Hi Tom,
>>
>> Le 29/03/2012 20:01, Tom Rini a ?crit :
>>>
>>> On Wed, Mar 28, 2012 at 2:54 PM, Tom Rini<trini@ti.com>    wrote:
>>>>
>>>> Hello,
>>>>
>>>> The following changes since commit
>>>> 4a3ea216414ad762b3718775a65437c13f0accbc:
>>>>   Rob Herring (1):
>>>>         ARM: highbank: setup env from boot source register
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://git.denx.de/u-boot-ti master
>>>>
>>>> Anatolij Gustschin (2):
>>>>       board/ti/beagle/beagle.c: Fix build warnings
>>>>       arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>>>>
>>>> Tom Rini (3):
>>>>       sdrc.c: Fix typo in do_sdrc_init() for SPL
>>>>       OMAP: Remove omap1610inn-based boards
>>>>       OMAP: Move omap1510inn to Unmaintained / Orphaned
>>>
>>>
>>> Well this is embarrassing.  I'd have sworn I tested -s omap but I must
>>> not have as omap1510inn doesn't build after that change as it doesn't
>>> build as there's no such thing as arch/arm/cpu/arm925t/omap/.  Please
>>> drop that change out, sorry for the noise.
>>
>>
>> Hmm... I would not expect omap1510inn to build after it has been orphaned,
>> so I am unsure what you mean exactly here. Also, can you precisely list the
>> change(s) that I should drop?
>
> So, omap1510inn has no active maintainer, it's listed as the same as
> omap1610inn which was not building.  omap1510inn was however building
> until 'OMAP: Move omap1510inn to Unmaintained / Orphaned' in which I
> also added it to the omap SoC family, forgetting that it also forced
> trying to build a non-existent directory, breaking it.

Ok, throwing out 'OMAP: Move omap1510inn to Unmaintained / Orphaned' 
from u-boot-arm/master.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-29 23:51   ` Albert ARIBAUD
@ 2012-03-30  0:58     ` Tom Rini
  2012-03-30  5:35       ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-30  0:58 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 29, 2012 at 4:51 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Tom,
>
> Le 29/03/2012 20:01, Tom Rini a ?crit :
>>
>> On Wed, Mar 28, 2012 at 2:54 PM, Tom Rini<trini@ti.com> ?wrote:
>>>
>>> Hello,
>>>
>>> The following changes since commit
>>> 4a3ea216414ad762b3718775a65437c13f0accbc:
>>> ?Rob Herring (1):
>>> ? ? ? ?ARM: highbank: setup env from boot source register
>>>
>>> are available in the git repository at:
>>>
>>> ?git://git.denx.de/u-boot-ti master
>>>
>>> Anatolij Gustschin (2):
>>> ? ? ?board/ti/beagle/beagle.c: Fix build warnings
>>> ? ? ?arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>>>
>>> Tom Rini (3):
>>> ? ? ?sdrc.c: Fix typo in do_sdrc_init() for SPL
>>> ? ? ?OMAP: Remove omap1610inn-based boards
>>> ? ? ?OMAP: Move omap1510inn to Unmaintained / Orphaned
>>
>>
>> Well this is embarrassing. ?I'd have sworn I tested -s omap but I must
>> not have as omap1510inn doesn't build after that change as it doesn't
>> build as there's no such thing as arch/arm/cpu/arm925t/omap/. ?Please
>> drop that change out, sorry for the noise.
>
>
> Hmm... I would not expect omap1510inn to build after it has been orphaned,
> so I am unsure what you mean exactly here. Also, can you precisely list the
> change(s) that I should drop?

So, omap1510inn has no active maintainer, it's listed as the same as
omap1610inn which was not building.  omap1510inn was however building
until 'OMAP: Move omap1510inn to Unmaintained / Orphaned' in which I
also added it to the omap SoC family, forgetting that it also forced
trying to build a non-existent directory, breaking it.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-29 18:01 ` Tom Rini
@ 2012-03-29 23:51   ` Albert ARIBAUD
  2012-03-30  0:58     ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-29 23:51 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 29/03/2012 20:01, Tom Rini a ?crit :
> On Wed, Mar 28, 2012 at 2:54 PM, Tom Rini<trini@ti.com>  wrote:
>> Hello,
>>
>> The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc:
>>   Rob Herring (1):
>>         ARM: highbank: setup env from boot source register
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti master
>>
>> Anatolij Gustschin (2):
>>       board/ti/beagle/beagle.c: Fix build warnings
>>       arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>>
>> Tom Rini (3):
>>       sdrc.c: Fix typo in do_sdrc_init() for SPL
>>       OMAP: Remove omap1610inn-based boards
>>       OMAP: Move omap1510inn to Unmaintained / Orphaned
>
> Well this is embarrassing.  I'd have sworn I tested -s omap but I must
> not have as omap1510inn doesn't build after that change as it doesn't
> build as there's no such thing as arch/arm/cpu/arm925t/omap/.  Please
> drop that change out, sorry for the noise.

Hmm... I would not expect omap1510inn to build after it has been 
orphaned, so I am unsure what you mean exactly here. Also, can you 
precisely list the change(s) that I should drop?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-28 21:54 Tom Rini
  2012-03-29  6:21 ` Albert ARIBAUD
@ 2012-03-29 18:01 ` Tom Rini
  2012-03-29 23:51   ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-29 18:01 UTC (permalink / raw)
  To: u-boot

On Wed, Mar 28, 2012 at 2:54 PM, Tom Rini <trini@ti.com> wrote:
> Hello,
>
> The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc:
> ?Rob Herring (1):
> ? ? ? ?ARM: highbank: setup env from boot source register
>
> are available in the git repository at:
>
> ?git://git.denx.de/u-boot-ti master
>
> Anatolij Gustschin (2):
> ? ? ?board/ti/beagle/beagle.c: Fix build warnings
> ? ? ?arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>
> Tom Rini (3):
> ? ? ?sdrc.c: Fix typo in do_sdrc_init() for SPL
> ? ? ?OMAP: Remove omap1610inn-based boards
> ? ? ?OMAP: Move omap1510inn to Unmaintained / Orphaned

Well this is embarrassing.  I'd have sworn I tested -s omap but I must
not have as omap1510inn doesn't build after that change as it doesn't
build as there's no such thing as arch/arm/cpu/arm925t/omap/.  Please
drop that change out, sorry for the noise.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-28 21:54 Tom Rini
@ 2012-03-29  6:21 ` Albert ARIBAUD
  2012-03-29 18:01 ` Tom Rini
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-29  6:21 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 28/03/2012 23:54, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc:
>    Rob Herring (1):
>          ARM: highbank: setup env from boot source register
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti master
>
> Anatolij Gustschin (2):
>        board/ti/beagle/beagle.c: Fix build warnings
>        arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings
>
> Tom Rini (3):
>        sdrc.c: Fix typo in do_sdrc_init() for SPL
>        OMAP: Remove omap1610inn-based boards
>        OMAP: Move omap1510inn to Unmaintained / Orphaned
>
>   MAINTAINERS                                    |    8 +-
>   arch/arm/cpu/armv7/omap-common/clocks-common.c |    4 +-
>   arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
>   board/ti/beagle/beagle.c                       |    3 +-
>   board/ti/omap1610inn/Makefile                  |   45 ---
>   board/ti/omap1610inn/config.mk                 |   26 --
>   board/ti/omap1610inn/flash.c                   |  495 ------------------------
>   board/ti/omap1610inn/lowlevel_init.S           |  452 ---------------------
>   board/ti/omap1610inn/omap1610innovator.c       |  309 ---------------
>   boards.cfg                                     |   10 +-
>   include/configs/omap1610h2.h                   |  197 ----------
>   include/configs/omap1610inn.h                  |  202 ----------
>   12 files changed, 8 insertions(+), 1745 deletions(-)
>   delete mode 100644 board/ti/omap1610inn/Makefile
>   delete mode 100644 board/ti/omap1610inn/config.mk
>   delete mode 100644 board/ti/omap1610inn/flash.c
>   delete mode 100644 board/ti/omap1610inn/lowlevel_init.S
>   delete mode 100644 board/ti/omap1610inn/omap1610innovator.c
>   delete mode 100644 include/configs/omap1610h2.h
>   delete mode 100644 include/configs/omap1610inn.h
>
>
> While not all of these patches have been around for long, they are
> either:
> - Remove broken boards (omap1610inn) or make doing so in the future
>    easier (omap1510inn)
> - Long-standing warning fixes
> - Obvious thinko fixes.
>

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-03-28 21:54 Tom Rini
  2012-03-29  6:21 ` Albert ARIBAUD
  2012-03-29 18:01 ` Tom Rini
  0 siblings, 2 replies; 324+ messages in thread
From: Tom Rini @ 2012-03-28 21:54 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc:
  Rob Herring (1):
        ARM: highbank: setup env from boot source register

are available in the git repository at:

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

Anatolij Gustschin (2):
      board/ti/beagle/beagle.c: Fix build warnings
      arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings

Tom Rini (3):
      sdrc.c: Fix typo in do_sdrc_init() for SPL
      OMAP: Remove omap1610inn-based boards
      OMAP: Move omap1510inn to Unmaintained / Orphaned

 MAINTAINERS                                    |    8 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |    4 +-
 arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
 board/ti/beagle/beagle.c                       |    3 +-
 board/ti/omap1610inn/Makefile                  |   45 ---
 board/ti/omap1610inn/config.mk                 |   26 --
 board/ti/omap1610inn/flash.c                   |  495 ------------------------
 board/ti/omap1610inn/lowlevel_init.S           |  452 ---------------------
 board/ti/omap1610inn/omap1610innovator.c       |  309 ---------------
 boards.cfg                                     |   10 +-
 include/configs/omap1610h2.h                   |  197 ----------
 include/configs/omap1610inn.h                  |  202 ----------
 12 files changed, 8 insertions(+), 1745 deletions(-)
 delete mode 100644 board/ti/omap1610inn/Makefile
 delete mode 100644 board/ti/omap1610inn/config.mk
 delete mode 100644 board/ti/omap1610inn/flash.c
 delete mode 100644 board/ti/omap1610inn/lowlevel_init.S
 delete mode 100644 board/ti/omap1610inn/omap1610innovator.c
 delete mode 100644 include/configs/omap1610h2.h
 delete mode 100644 include/configs/omap1610inn.h


While not all of these patches have been around for long, they are
either:
- Remove broken boards (omap1610inn) or make doing so in the future
  easier (omap1510inn)
- Long-standing warning fixes
- Obvious thinko fixes.

-- 
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/20120328/bc98d121/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-26 22:40 Tom Rini
@ 2012-03-27 20:07 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-27 20:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 27/03/2012 00:40, Tom Rini a ?crit :
> Hello,
>
> I've resolved the conflict with the SPL Linux series.
>
> The following changes since commit cd207cde948ecf9ff50a0fa1ae2650f65579c9c9:
>    Marek Vasut (1):
>          IXP: Fix GPIO_INT_ACT_LOW_SET()
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti master
>
> Christian Riesch (1):
>        calimain, enbw_cmc: Fix typo in comments
>
> Grazvydas Ignotas (1):
>        twl4030: fix potential power supply handling issues
>
> Heiko Schocher (1):
>        ARM: davinci: fixes for cam_enc_4xx board
>
> Simon Schwarz (8):
>        Add cmd_spl command
>        devkit8000: add config for spl command
>        omap-common: Add NAND SPL linux booting
>        devkit8000/spl: init GPMC for dm9000 in SPL
>        omap-common/spl: Add linux boot to SPL
>        omap/spl: change output of spl_parse_image_header
>        devkit8000: Implement and activate direct OS boot
>        arm: Add Prep subcommand support to bootm
>
> Stefano Babic (8):
>        Add cache functions to SPL for armv7
>        OMAP3: SPL: do not call I2C init if no I2C is set.
>        SPL: call cleanup_before_linux() before booting Linux
>        OMAP3: twister: add support to boot Linux from SPL
>        NAND: TI: fix warnings in omap_gpmc.c
>        OMAP3: mt_ventoux: updated timing for FPGA
>        OMAP3: mt_ventoux: sets its own mtdparts
>        Davinci: ea20: use gpio framework to access gpios
>
> Tom Rini (1):
>        cam_enc_4xx: Rename 'images' to 'imgs'
>
> jacopo mondi (1):
>        omap3_spi: receive transmit mode
>
>   arch/arm/cpu/armv7/Makefile               |    2 -
>   arch/arm/cpu/armv7/cpu.c                  |    2 +
>   arch/arm/cpu/armv7/omap-common/spl.c      |   46 ++++-
>   arch/arm/cpu/armv7/omap-common/spl_nand.c |   47 ++++-
>   arch/arm/cpu/armv7/omap3/board.c          |    2 +
>   arch/arm/include/asm/bootm.h              |   26 +++
>   arch/arm/include/asm/omap_common.h        |    2 +
>   arch/arm/lib/Makefile                     |    5 +-
>   arch/arm/lib/bootm.c                      |  349 +++++++++++++++--------------
>   board/ait/cam_enc_4xx/cam_enc_4xx.c       |  103 +++++----
>   board/ait/cam_enc_4xx/config.mk           |    7 +
>   board/ait/cam_enc_4xx/u-boot-spl.lds      |    2 +-
>   board/davinci/ea20/ea20.c                 |   38 +---
>   board/enbw/enbw_cmc/enbw_cmc.c            |    2 +-
>   board/omicron/calimain/calimain.c         |    2 +-
>   board/technexion/twister/twister.c        |   23 ++
>   board/teejet/mt_ventoux/mt_ventoux.h      |   11 +-
>   board/timll/devkit8000/devkit8000.c       |   37 +++
>   common/Makefile                           |    1 +
>   common/cmd_spl.c                          |  188 ++++++++++++++++
>   doc/README.commands.spl                   |   31 +++
>   drivers/mtd/nand/omap_gpmc.c              |   14 +-
>   drivers/power/twl4030.c                   |   18 ++-
>   drivers/spi/omap3_spi.c                   |   66 +++++-
>   drivers/spi/omap3_spi.h                   |    2 +
>   include/cmd_spl.h                         |   31 +++
>   include/configs/cam_enc_4xx.h             |   13 +-
>   include/configs/devkit8000.h              |   15 +-
>   include/configs/ea20.h                    |    2 +
>   include/configs/mt_ventoux.h              |   10 +
>   include/configs/twister.h                 |   12 +
>   include/image.h                           |    2 +
>   32 files changed, 835 insertions(+), 276 deletions(-)
>   create mode 100644 arch/arm/include/asm/bootm.h
>   create mode 100644 common/cmd_spl.c
>   create mode 100644 doc/README.commands.spl
>   create mode 100644 include/cmd_spl.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-03-26 22:40 Tom Rini
  2012-03-27 20:07 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-26 22:40 UTC (permalink / raw)
  To: u-boot

Hello,

I've resolved the conflict with the SPL Linux series.

The following changes since commit cd207cde948ecf9ff50a0fa1ae2650f65579c9c9:
  Marek Vasut (1):
        IXP: Fix GPIO_INT_ACT_LOW_SET()

are available in the git repository at:

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

Christian Riesch (1):
      calimain, enbw_cmc: Fix typo in comments

Grazvydas Ignotas (1):
      twl4030: fix potential power supply handling issues

Heiko Schocher (1):
      ARM: davinci: fixes for cam_enc_4xx board

Simon Schwarz (8):
      Add cmd_spl command
      devkit8000: add config for spl command
      omap-common: Add NAND SPL linux booting
      devkit8000/spl: init GPMC for dm9000 in SPL
      omap-common/spl: Add linux boot to SPL
      omap/spl: change output of spl_parse_image_header
      devkit8000: Implement and activate direct OS boot
      arm: Add Prep subcommand support to bootm

Stefano Babic (8):
      Add cache functions to SPL for armv7
      OMAP3: SPL: do not call I2C init if no I2C is set.
      SPL: call cleanup_before_linux() before booting Linux
      OMAP3: twister: add support to boot Linux from SPL
      NAND: TI: fix warnings in omap_gpmc.c
      OMAP3: mt_ventoux: updated timing for FPGA
      OMAP3: mt_ventoux: sets its own mtdparts
      Davinci: ea20: use gpio framework to access gpios

Tom Rini (1):
      cam_enc_4xx: Rename 'images' to 'imgs'

jacopo mondi (1):
      omap3_spi: receive transmit mode

 arch/arm/cpu/armv7/Makefile               |    2 -
 arch/arm/cpu/armv7/cpu.c                  |    2 +
 arch/arm/cpu/armv7/omap-common/spl.c      |   46 ++++-
 arch/arm/cpu/armv7/omap-common/spl_nand.c |   47 ++++-
 arch/arm/cpu/armv7/omap3/board.c          |    2 +
 arch/arm/include/asm/bootm.h              |   26 +++
 arch/arm/include/asm/omap_common.h        |    2 +
 arch/arm/lib/Makefile                     |    5 +-
 arch/arm/lib/bootm.c                      |  349 +++++++++++++++--------------
 board/ait/cam_enc_4xx/cam_enc_4xx.c       |  103 +++++----
 board/ait/cam_enc_4xx/config.mk           |    7 +
 board/ait/cam_enc_4xx/u-boot-spl.lds      |    2 +-
 board/davinci/ea20/ea20.c                 |   38 +---
 board/enbw/enbw_cmc/enbw_cmc.c            |    2 +-
 board/omicron/calimain/calimain.c         |    2 +-
 board/technexion/twister/twister.c        |   23 ++
 board/teejet/mt_ventoux/mt_ventoux.h      |   11 +-
 board/timll/devkit8000/devkit8000.c       |   37 +++
 common/Makefile                           |    1 +
 common/cmd_spl.c                          |  188 ++++++++++++++++
 doc/README.commands.spl                   |   31 +++
 drivers/mtd/nand/omap_gpmc.c              |   14 +-
 drivers/power/twl4030.c                   |   18 ++-
 drivers/spi/omap3_spi.c                   |   66 +++++-
 drivers/spi/omap3_spi.h                   |    2 +
 include/cmd_spl.h                         |   31 +++
 include/configs/cam_enc_4xx.h             |   13 +-
 include/configs/devkit8000.h              |   15 +-
 include/configs/ea20.h                    |    2 +
 include/configs/mt_ventoux.h              |   10 +
 include/configs/twister.h                 |   12 +
 include/image.h                           |    2 +
 32 files changed, 835 insertions(+), 276 deletions(-)
 create mode 100644 arch/arm/include/asm/bootm.h
 create mode 100644 common/cmd_spl.c
 create mode 100644 doc/README.commands.spl
 create mode 100644 include/cmd_spl.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/20120326/24f7ef83/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-26 20:45   ` Albert ARIBAUD
@ 2012-03-26 21:09     ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-26 21:09 UTC (permalink / raw)
  To: u-boot

Le 26/03/2012 22:45, Albert ARIBAUD a ?crit :
> Hi Tom,
>
> Le 26/03/2012 19:36, Tom Rini a ?crit :
>> On Mon, Mar 19, 2012 at 11:29:06AM -0700, Tom Rini wrote:
>>> Hello,
>>>
>>> The following changes since commit
>>> 32ec258f829808dd7cf74fd83ba999fdaaeab715:
>>> Marek Vasut (1):
>>> IXP: Fix GPIO_INT_ACT_LOW_SET()
>> [snip]
>>
>> This pull request is now updated as such:
>>
>> The following changes since commit
>> 32ec258f829808dd7cf74fd83ba999fdaaeab715:
>> Marek Vasut (1):
>> IXP: Fix GPIO_INT_ACT_LOW_SET()
>>
>> are available in the git repository at:
>>
>> git://git.denx.de/u-boot-ti master
>>
>> Christian Riesch (1):
>> calimain, enbw_cmc: Fix typo in comments
>>
>> Grazvydas Ignotas (1):
>> twl4030: fix potential power supply handling issues
>>
>> Simon Schwarz (8):
>> Add cmd_spl command
>> devkit8000: add config for spl command
>> omap-common: Add NAND SPL linux booting
>> devkit8000/spl: init GPMC for dm9000 in SPL
>> omap-common/spl: Add linux boot to SPL
>> omap/spl: change output of spl_parse_image_header
>> devkit8000: Implement and activate direct OS boot
>> arm: Add Prep subcommand support to bootm
>>
>> Stefano Babic (8):
>> Add cache functions to SPL for armv7
>> OMAP3: SPL: do not call I2C init if no I2C is set.
>> SPL: call cleanup_before_linux() before booting Linux
>> OMAP3: twister: add support to boot Linux from SPL
>> NAND: TI: fix warnings in omap_gpmc.c
>> OMAP3: mt_ventoux: updated timing for FPGA
>> OMAP3: mt_ventoux: sets its own mtdparts
>> Davinci: ea20: use gpio framework to access gpios
>>
>> Tom Rini (1):
>> cam_enc_4xx: Rename 'images' to 'imgs'
>>
>> jacopo mondi (1):
>> omap3_spi: receive transmit mode
>>
>> arch/arm/cpu/armv7/Makefile | 2 -
>> arch/arm/cpu/armv7/cpu.c | 2 +
>> arch/arm/cpu/armv7/omap-common/spl.c | 46 ++++-
>> arch/arm/cpu/armv7/omap-common/spl_nand.c | 47 ++++-
>> arch/arm/cpu/armv7/omap3/board.c | 2 +
>> arch/arm/include/asm/bootm.h | 26 +++
>> arch/arm/include/asm/omap_common.h | 2 +
>> arch/arm/lib/Makefile | 5 +-
>> arch/arm/lib/bootm.c | 341 +++++++++++++++--------------
>> board/ait/cam_enc_4xx/cam_enc_4xx.c | 48 ++--
>> board/davinci/ea20/ea20.c | 38 +---
>> board/enbw/enbw_cmc/enbw_cmc.c | 2 +-
>> board/omicron/calimain/calimain.c | 2 +-
>> board/technexion/twister/twister.c | 23 ++
>> board/teejet/mt_ventoux/mt_ventoux.h | 11 +-
>> board/timll/devkit8000/devkit8000.c | 37 +++
>> common/Makefile | 1 +
>> common/cmd_spl.c | 188 ++++++++++++++++
>> doc/README.commands.spl | 31 +++
>> drivers/mtd/nand/omap_gpmc.c | 14 +-
>> drivers/power/twl4030.c | 18 ++-
>> drivers/spi/omap3_spi.c | 66 ++++++-
>> drivers/spi/omap3_spi.h | 2 +
>> include/cmd_spl.h | 31 +++
>> include/configs/devkit8000.h | 15 +-
>> include/configs/ea20.h | 2 +
>> include/configs/mt_ventoux.h | 10 +
>> include/configs/twister.h | 12 +
>> include/image.h | 2 +
>> 29 files changed, 777 insertions(+), 249 deletions(-)
>> create mode 100644 arch/arm/include/asm/bootm.h
>> create mode 100644 common/cmd_spl.c
>> create mode 100644 doc/README.commands.spl
>> create mode 100644 include/cmd_spl.h
>
> Applied to u-boot-arm/master, thanks.
>
> Amicalement,

Correction: the "arm: Add Prep subcommand support to bootm" commit does 
not apply cleanly to the u-boot tree. I am rolling by my tree. Please 
rebase on it and re-request a pull.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-26 17:36 ` Tom Rini
@ 2012-03-26 20:45   ` Albert ARIBAUD
  2012-03-26 21:09     ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-26 20:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 26/03/2012 19:36, Tom Rini a ?crit :
> On Mon, Mar 19, 2012 at 11:29:06AM -0700, Tom Rini wrote:
>> Hello,
>>
>> The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:
>>    Marek Vasut (1):
>>          IXP: Fix GPIO_INT_ACT_LOW_SET()
> [snip]
>
> This pull request is now updated as such:
>
> The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:
>    Marek Vasut (1):
>          IXP: Fix GPIO_INT_ACT_LOW_SET()
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti master
>
> Christian Riesch (1):
>        calimain, enbw_cmc: Fix typo in comments
>
> Grazvydas Ignotas (1):
>        twl4030: fix potential power supply handling issues
>
> Simon Schwarz (8):
>        Add cmd_spl command
>        devkit8000: add config for spl command
>        omap-common: Add NAND SPL linux booting
>        devkit8000/spl: init GPMC for dm9000 in SPL
>        omap-common/spl: Add linux boot to SPL
>        omap/spl: change output of spl_parse_image_header
>        devkit8000: Implement and activate direct OS boot
>        arm: Add Prep subcommand support to bootm
>
> Stefano Babic (8):
>        Add cache functions to SPL for armv7
>        OMAP3: SPL: do not call I2C init if no I2C is set.
>        SPL: call cleanup_before_linux() before booting Linux
>        OMAP3: twister: add support to boot Linux from SPL
>        NAND: TI: fix warnings in omap_gpmc.c
>        OMAP3: mt_ventoux: updated timing for FPGA
>        OMAP3: mt_ventoux: sets its own mtdparts
>        Davinci: ea20: use gpio framework to access gpios
>
> Tom Rini (1):
>        cam_enc_4xx: Rename 'images' to 'imgs'
>
> jacopo mondi (1):
>        omap3_spi: receive transmit mode
>
>   arch/arm/cpu/armv7/Makefile               |    2 -
>   arch/arm/cpu/armv7/cpu.c                  |    2 +
>   arch/arm/cpu/armv7/omap-common/spl.c      |   46 ++++-
>   arch/arm/cpu/armv7/omap-common/spl_nand.c |   47 ++++-
>   arch/arm/cpu/armv7/omap3/board.c          |    2 +
>   arch/arm/include/asm/bootm.h              |   26 +++
>   arch/arm/include/asm/omap_common.h        |    2 +
>   arch/arm/lib/Makefile                     |    5 +-
>   arch/arm/lib/bootm.c                      |  341 +++++++++++++++--------------
>   board/ait/cam_enc_4xx/cam_enc_4xx.c       |   48 ++--
>   board/davinci/ea20/ea20.c                 |   38 +---
>   board/enbw/enbw_cmc/enbw_cmc.c            |    2 +-
>   board/omicron/calimain/calimain.c         |    2 +-
>   board/technexion/twister/twister.c        |   23 ++
>   board/teejet/mt_ventoux/mt_ventoux.h      |   11 +-
>   board/timll/devkit8000/devkit8000.c       |   37 +++
>   common/Makefile                           |    1 +
>   common/cmd_spl.c                          |  188 ++++++++++++++++
>   doc/README.commands.spl                   |   31 +++
>   drivers/mtd/nand/omap_gpmc.c              |   14 +-
>   drivers/power/twl4030.c                   |   18 ++-
>   drivers/spi/omap3_spi.c                   |   66 ++++++-
>   drivers/spi/omap3_spi.h                   |    2 +
>   include/cmd_spl.h                         |   31 +++
>   include/configs/devkit8000.h              |   15 +-
>   include/configs/ea20.h                    |    2 +
>   include/configs/mt_ventoux.h              |   10 +
>   include/configs/twister.h                 |   12 +
>   include/image.h                           |    2 +
>   29 files changed, 777 insertions(+), 249 deletions(-)
>   create mode 100644 arch/arm/include/asm/bootm.h
>   create mode 100644 common/cmd_spl.c
>   create mode 100644 doc/README.commands.spl
>   create mode 100644 include/cmd_spl.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-19 18:29 Tom Rini
@ 2012-03-26 17:36 ` Tom Rini
  2012-03-26 20:45   ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-26 17:36 UTC (permalink / raw)
  To: u-boot

On Mon, Mar 19, 2012 at 11:29:06AM -0700, Tom Rini wrote:
> Hello,
> 
> The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:
>   Marek Vasut (1):
>         IXP: Fix GPIO_INT_ACT_LOW_SET()
[snip]

This pull request is now updated as such:

The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:
  Marek Vasut (1):
        IXP: Fix GPIO_INT_ACT_LOW_SET()

are available in the git repository at:

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

Christian Riesch (1):
      calimain, enbw_cmc: Fix typo in comments

Grazvydas Ignotas (1):
      twl4030: fix potential power supply handling issues

Simon Schwarz (8):
      Add cmd_spl command
      devkit8000: add config for spl command
      omap-common: Add NAND SPL linux booting
      devkit8000/spl: init GPMC for dm9000 in SPL
      omap-common/spl: Add linux boot to SPL
      omap/spl: change output of spl_parse_image_header
      devkit8000: Implement and activate direct OS boot
      arm: Add Prep subcommand support to bootm

Stefano Babic (8):
      Add cache functions to SPL for armv7
      OMAP3: SPL: do not call I2C init if no I2C is set.
      SPL: call cleanup_before_linux() before booting Linux
      OMAP3: twister: add support to boot Linux from SPL
      NAND: TI: fix warnings in omap_gpmc.c
      OMAP3: mt_ventoux: updated timing for FPGA
      OMAP3: mt_ventoux: sets its own mtdparts
      Davinci: ea20: use gpio framework to access gpios

Tom Rini (1):
      cam_enc_4xx: Rename 'images' to 'imgs'

jacopo mondi (1):
      omap3_spi: receive transmit mode

 arch/arm/cpu/armv7/Makefile               |    2 -
 arch/arm/cpu/armv7/cpu.c                  |    2 +
 arch/arm/cpu/armv7/omap-common/spl.c      |   46 ++++-
 arch/arm/cpu/armv7/omap-common/spl_nand.c |   47 ++++-
 arch/arm/cpu/armv7/omap3/board.c          |    2 +
 arch/arm/include/asm/bootm.h              |   26 +++
 arch/arm/include/asm/omap_common.h        |    2 +
 arch/arm/lib/Makefile                     |    5 +-
 arch/arm/lib/bootm.c                      |  341 +++++++++++++++--------------
 board/ait/cam_enc_4xx/cam_enc_4xx.c       |   48 ++--
 board/davinci/ea20/ea20.c                 |   38 +---
 board/enbw/enbw_cmc/enbw_cmc.c            |    2 +-
 board/omicron/calimain/calimain.c         |    2 +-
 board/technexion/twister/twister.c        |   23 ++
 board/teejet/mt_ventoux/mt_ventoux.h      |   11 +-
 board/timll/devkit8000/devkit8000.c       |   37 +++
 common/Makefile                           |    1 +
 common/cmd_spl.c                          |  188 ++++++++++++++++
 doc/README.commands.spl                   |   31 +++
 drivers/mtd/nand/omap_gpmc.c              |   14 +-
 drivers/power/twl4030.c                   |   18 ++-
 drivers/spi/omap3_spi.c                   |   66 ++++++-
 drivers/spi/omap3_spi.h                   |    2 +
 include/cmd_spl.h                         |   31 +++
 include/configs/devkit8000.h              |   15 +-
 include/configs/ea20.h                    |    2 +
 include/configs/mt_ventoux.h              |   10 +
 include/configs/twister.h                 |   12 +
 include/image.h                           |    2 +
 29 files changed, 777 insertions(+), 249 deletions(-)
 create mode 100644 arch/arm/include/asm/bootm.h
 create mode 100644 common/cmd_spl.c
 create mode 100644 doc/README.commands.spl
 create mode 100644 include/cmd_spl.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/20120326/f059a7a5/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-03-19 18:29 Tom Rini
  2012-03-26 17:36 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-19 18:29 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:
  Marek Vasut (1):
        IXP: Fix GPIO_INT_ACT_LOW_SET()

are available in the git repository at:

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

Simon Schwarz (8):
      Add cmd_spl command
      devkit8000: add config for spl command
      omap-common: Add NAND SPL linux booting
      devkit8000/spl: init GPMC for dm9000 in SPL
      omap-common/spl: Add linux boot to SPL
      omap/spl: change output of spl_parse_image_header
      devkit8000: Implement and activate direct OS boot
      arm: Add Prep subcommand support to bootm

Stefano Babic (4):
      Add cache functions to SPL for armv7
      OMAP3: SPL: do not call I2C init if no I2C is set.
      SPL: call cleanup_before_linux() before booting Linux
      OMAP3: twister: add support to boot Linux from SPL

Tom Rini (1):
      cam_enc_4xx: Rename 'images' to 'imgs'

 arch/arm/cpu/armv7/Makefile               |    2 -
 arch/arm/cpu/armv7/cpu.c                  |    2 +
 arch/arm/cpu/armv7/omap-common/spl.c      |   46 ++++-
 arch/arm/cpu/armv7/omap-common/spl_nand.c |   47 ++++-
 arch/arm/cpu/armv7/omap3/board.c          |    2 +
 arch/arm/include/asm/bootm.h              |   26 +++
 arch/arm/include/asm/omap_common.h        |    2 +
 arch/arm/lib/Makefile                     |    5 +-
 arch/arm/lib/bootm.c                      |  341 +++++++++++++++--------------
 board/ait/cam_enc_4xx/cam_enc_4xx.c       |   48 ++--
 board/technexion/twister/twister.c        |   23 ++
 board/timll/devkit8000/devkit8000.c       |   37 +++
 common/Makefile                           |    1 +
 common/cmd_spl.c                          |  188 ++++++++++++++++
 doc/README.commands.spl                   |   31 +++
 include/cmd_spl.h                         |   31 +++
 include/configs/devkit8000.h              |   15 +-
 include/configs/twister.h                 |   12 +
 include/image.h                           |    2 +
 19 files changed, 662 insertions(+), 199 deletions(-)
 create mode 100644 arch/arm/include/asm/bootm.h
 create mode 100644 common/cmd_spl.c
 create mode 100644 doc/README.commands.spl
 create mode 100644 include/cmd_spl.h

These patches have been in progress for quite some time and Wolfgang has
requested that they go in now rather than after the upcoming release.

-- 
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/20120319/bc493770/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-06 20:16   ` Wolfgang Denk
@ 2012-03-07  7:22     ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-07  7:22 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

Le 06/03/2012 21:16, Wolfgang Denk a ?crit :
> Dear Albert ARIBAUD,
>
> In message<4F55BCDC.70208@aribaud.net>  you wrote:
>>
>>> With the documentation / related changes, Wolfgang said on IRC he was OK
>>> for now with the additional SPL bits going on.
>>
>> All these commits are feature additions posted after the merge window,
>> aren't they?
>
> Yes, but they got added because I asked for them before I wanted to
> see the SPL stuff go in.
>
> So let's pull this into the upcoming release anyway, please.
>
> Best regards,
>
> Wolfgang Denk

Applied to u-boot-arm/master, then.

(a pull req from ARM will follow once I've checked that ARM subrepos and 
pending ARM repo patches are all in)

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-06  7:29 ` Albert ARIBAUD
  2012-03-06 14:28   ` Tom Rini
@ 2012-03-06 20:16   ` Wolfgang Denk
  2012-03-07  7:22     ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Wolfgang Denk @ 2012-03-06 20:16 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4F55BCDC.70208@aribaud.net> you wrote:
> 
> > With the documentation / related changes, Wolfgang said on IRC he was OK
> > for now with the additional SPL bits going on.
>
> All these commits are feature additions posted after the merge window,
> aren't they?

Yes, but they got added because I asked for them before I wanted to
see the SPL stuff go in. 

So let's pull this into the upcoming release anyway, please.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I mean, I . . . think to understand you, I just don't know  what  you
are saying ...                        - Terry Pratchett, _Soul Music_

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-06  7:29 ` Albert ARIBAUD
@ 2012-03-06 14:28   ` Tom Rini
  2012-03-06 20:16   ` Wolfgang Denk
  1 sibling, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-03-06 14:28 UTC (permalink / raw)
  To: u-boot

On Tue, Mar 6, 2012 at 12:29 AM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Tom,
>
> Le 06/03/2012 00:03, Tom Rini a ?crit :
>
>> Hello,
>>
>> The following changes since commit
>> 3513896e57c6757c411e0633ccb5da08c36ad7d4:
>> ? Robert Delien (1):
>> ? ? ? ? Fix erroneous 32-bit access to hw_clkctrl_frac0 and
>> hw_clkctrl_frac1 registers
>>
>> are available in the git repository at:
>>
>> ? git://git.denx.de/u-boot-ti.git master
>>
>> Matt Porter (2):
>> ? ? ? SPL: Add YMODEM over UART load support
>> ? ? ? SPL: Enable YMODEM support on BeagleBone and AM335x EVM
>>
>> Tom Rini (6):
>> ? ? ? .gitignore: Add .su files
>> ? ? ? config.mk: Make cc-option create a file under include/generated
>> ? ? ? config.mk: Check for -fstack-usage support
>> ? ? ? spl.c: Use __noreturn decorator
>> ? ? ? README: document more SPL config options
>> ? ? ? SPL: Add README.omap3
>>
>> ?.gitignore ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
>> ?Makefile ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?2 +-
>> ?README ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? 69
>> +++++++++++++++++++++----
>> ?arch/arm/cpu/armv7/omap-common/Makefile ? ? | ? ?3 +
>> ?arch/arm/cpu/armv7/omap-common/spl.c ? ? ? ?| ? 10 +++-
>> ?arch/arm/cpu/armv7/omap-common/spl_ymodem.c | ? 76
>> +++++++++++++++++++++++++++
>> ?arch/arm/include/asm/omap_common.h ? ? ? ? ?| ? ?3 +
>> ?common/Makefile ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +
>> ?config.mk ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? 11 +++--
>> ?doc/SPL/README.omap3 ? ? ? ? ? ? ? ? ? ? ? ?| ? 74
>> ++++++++++++++++++++++++++
>> ?include/configs/am335x_evm.h ? ? ? ? ? ? ? ?| ? ?1 +
>> ?lib/Makefile ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?3 +
>> ?12 files changed, 238 insertions(+), 18 deletions(-)
>> ?create mode 100644 arch/arm/cpu/armv7/omap-common/spl_ymodem.c
>> ?create mode 100644 doc/SPL/README.omap3
>>
>>
>> With the documentation / related changes, Wolfgang said on IRC he was OK
>> for now with the additional SPL bits going on.
>
>
> All these commits are feature additions posted after the merge window,
> aren't they?

The first part was a little late (Jan 31st) and that was held up until
Wolfgang was happy with the second set.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-03-05 23:03 Tom Rini
@ 2012-03-06  7:29 ` Albert ARIBAUD
  2012-03-06 14:28   ` Tom Rini
  2012-03-06 20:16   ` Wolfgang Denk
  0 siblings, 2 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-03-06  7:29 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 06/03/2012 00:03, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 3513896e57c6757c411e0633ccb5da08c36ad7d4:
>    Robert Delien (1):
>          Fix erroneous 32-bit access to hw_clkctrl_frac0 and hw_clkctrl_frac1 registers
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Matt Porter (2):
>        SPL: Add YMODEM over UART load support
>        SPL: Enable YMODEM support on BeagleBone and AM335x EVM
>
> Tom Rini (6):
>        .gitignore: Add .su files
>        config.mk: Make cc-option create a file under include/generated
>        config.mk: Check for -fstack-usage support
>        spl.c: Use __noreturn decorator
>        README: document more SPL config options
>        SPL: Add README.omap3
>
>   .gitignore                                  |    1 +
>   Makefile                                    |    2 +-
>   README                                      |   69 +++++++++++++++++++++----
>   arch/arm/cpu/armv7/omap-common/Makefile     |    3 +
>   arch/arm/cpu/armv7/omap-common/spl.c        |   10 +++-
>   arch/arm/cpu/armv7/omap-common/spl_ymodem.c |   76 +++++++++++++++++++++++++++
>   arch/arm/include/asm/omap_common.h          |    3 +
>   common/Makefile                             |    3 +
>   config.mk                                   |   11 +++--
>   doc/SPL/README.omap3                        |   74 ++++++++++++++++++++++++++
>   include/configs/am335x_evm.h                |    1 +
>   lib/Makefile                                |    3 +
>   12 files changed, 238 insertions(+), 18 deletions(-)
>   create mode 100644 arch/arm/cpu/armv7/omap-common/spl_ymodem.c
>   create mode 100644 doc/SPL/README.omap3
>
>
> With the documentation / related changes, Wolfgang said on IRC he was OK
> for now with the additional SPL bits going on.

All these commits are feature additions posted after the merge window, 
aren't they?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-03-05 23:03 Tom Rini
  2012-03-06  7:29 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-03-05 23:03 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 3513896e57c6757c411e0633ccb5da08c36ad7d4:
  Robert Delien (1):
        Fix erroneous 32-bit access to hw_clkctrl_frac0 and hw_clkctrl_frac1 registers

are available in the git repository at:

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

Matt Porter (2):
      SPL: Add YMODEM over UART load support
      SPL: Enable YMODEM support on BeagleBone and AM335x EVM

Tom Rini (6):
      .gitignore: Add .su files
      config.mk: Make cc-option create a file under include/generated
      config.mk: Check for -fstack-usage support
      spl.c: Use __noreturn decorator
      README: document more SPL config options
      SPL: Add README.omap3

 .gitignore                                  |    1 +
 Makefile                                    |    2 +-
 README                                      |   69 +++++++++++++++++++++----
 arch/arm/cpu/armv7/omap-common/Makefile     |    3 +
 arch/arm/cpu/armv7/omap-common/spl.c        |   10 +++-
 arch/arm/cpu/armv7/omap-common/spl_ymodem.c |   76 +++++++++++++++++++++++++++
 arch/arm/include/asm/omap_common.h          |    3 +
 common/Makefile                             |    3 +
 config.mk                                   |   11 +++--
 doc/SPL/README.omap3                        |   74 ++++++++++++++++++++++++++
 include/configs/am335x_evm.h                |    1 +
 lib/Makefile                                |    3 +
 12 files changed, 238 insertions(+), 18 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/omap-common/spl_ymodem.c
 create mode 100644 doc/SPL/README.omap3


With the documentation / related changes, Wolfgang said on IRC he was OK
for now with the additional SPL bits going on.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-02-23 16:01 Tom Rini
@ 2012-02-27 20:17 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-02-27 20:17 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 23/02/2012 17:01, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 417c2c787e32784b5de975065a7d1dd5b3cc8ecd:
>    Daniel Gorsulowski (1):
>          at91: modified NAND flash timing on otc570 board
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (1):
>        armv7: omap3: leave outer cache enabled
>
>   arch/arm/cpu/armv7/omap3/board.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> While this was not submitted by the normal cutoff what happened was that
> in v2011.12 we disabled all of the caches with the expectation that the
> kernel was re-enabling them.  This however is not true (and so most
> distributions that ship v2011.12 revert the cache disable patch for
> non-omap4).  The outcome of discussing with the kernel folks what they
> want is Aneesh's patch.

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-02-23 16:01 Tom Rini
  2012-02-27 20:17 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-02-23 16:01 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 417c2c787e32784b5de975065a7d1dd5b3cc8ecd:
  Daniel Gorsulowski (1):
        at91: modified NAND flash timing on otc570 board

are available in the git repository at:

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

Aneesh V (1):
      armv7: omap3: leave outer cache enabled

 arch/arm/cpu/armv7/omap3/board.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

While this was not submitted by the normal cutoff what happened was that
in v2011.12 we disabled all of the caches with the expectation that the
kernel was re-enabling them.  This however is not true (and so most
distributions that ship v2011.12 revert the cache disable patch for
non-omap4).  The outcome of discussing with the kernel folks what they
want is Aneesh's patch.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-02-14 18:00 Tom Rini
@ 2012-02-17  8:02 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-02-17  8:02 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 14/02/2012 19:00, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit f5f57dc6196a0a0f93b210aff2212f0946981a91:
>    Shawn Guo (1):
>          common/image.c: align usage of fdt_high with initrd_high
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Chase Maupin (1):
>        am33xx: ddr_defs.h: Change DDR timings
>
> Detlev Zundel (1):
>        mcx: Enable command line editing
>
> Hadli, Manjunath (3):
>        davinci: cleanup davinci_sync_env_enetaddr() fucntion
>        da850evm: add support to read mac address from SPI flash
>        da850evm: read mac address from I2C EEPROM on AM18x EVM
>
> Peter Meerwald (1):
>        beagle: enable DVI_PUP
>
> Thomas Weber (2):
>        Tricorder: Switch env to generic mmc driver
>        OMAP3: Remove unused CONFIG_SYS_NAND_ECCSTEPS/TOTAL
>
> Tom Rini (2):
>        am335x_evm: Change MAINTAINERS entry
>        omap3_beagle: Change MAINTAINERS entry
>
> prabhakar.csengg at gmail.com (1):
>        dm6467Tevm: Use a common configuration file for davinci_dm6467evm and davinci_dm6467Tevm
>
>   MAINTAINERS                                 |   10 +--
>   arch/arm/cpu/arm926ejs/davinci/cpu.c        |    2 +-
>   arch/arm/cpu/arm926ejs/davinci/misc.c       |    9 +-
>   arch/arm/include/asm/arch-am33xx/ddr_defs.h |    2 +-
>   board/davinci/da8xxevm/da850evm.c           |  103 ++++++++++++++++
>   board/davinci/dm6467evm/dm6467evm.c         |    2 +-
>   board/ti/beagle/beagle.c                    |   34 ++++++
>   boards.cfg                                  |    8 +-
>   include/configs/davinci_dm6467Tevm.h        |  167 ---------------------------
>   include/configs/davinci_dm6467evm.h         |    1 -
>   include/configs/mcx.h                       |    7 +-
>   include/configs/omap3_overo.h               |    4 -
>   include/configs/tricorder.h                 |   12 +--
>   13 files changed, 158 insertions(+), 203 deletions(-)
>   delete mode 100644 include/configs/davinci_dm6467Tevm.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-02-14 18:00 Tom Rini
  2012-02-17  8:02 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-02-14 18:00 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit f5f57dc6196a0a0f93b210aff2212f0946981a91:
  Shawn Guo (1):
        common/image.c: align usage of fdt_high with initrd_high

are available in the git repository at:

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

Chase Maupin (1):
      am33xx: ddr_defs.h: Change DDR timings

Detlev Zundel (1):
      mcx: Enable command line editing

Hadli, Manjunath (3):
      davinci: cleanup davinci_sync_env_enetaddr() fucntion
      da850evm: add support to read mac address from SPI flash
      da850evm: read mac address from I2C EEPROM on AM18x EVM

Peter Meerwald (1):
      beagle: enable DVI_PUP

Thomas Weber (2):
      Tricorder: Switch env to generic mmc driver
      OMAP3: Remove unused CONFIG_SYS_NAND_ECCSTEPS/TOTAL

Tom Rini (2):
      am335x_evm: Change MAINTAINERS entry
      omap3_beagle: Change MAINTAINERS entry

prabhakar.csengg at gmail.com (1):
      dm6467Tevm: Use a common configuration file for davinci_dm6467evm and davinci_dm6467Tevm

 MAINTAINERS                                 |   10 +--
 arch/arm/cpu/arm926ejs/davinci/cpu.c        |    2 +-
 arch/arm/cpu/arm926ejs/davinci/misc.c       |    9 +-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h |    2 +-
 board/davinci/da8xxevm/da850evm.c           |  103 ++++++++++++++++
 board/davinci/dm6467evm/dm6467evm.c         |    2 +-
 board/ti/beagle/beagle.c                    |   34 ++++++
 boards.cfg                                  |    8 +-
 include/configs/davinci_dm6467Tevm.h        |  167 ---------------------------
 include/configs/davinci_dm6467evm.h         |    1 -
 include/configs/mcx.h                       |    7 +-
 include/configs/omap3_overo.h               |    4 -
 include/configs/tricorder.h                 |   12 +--
 13 files changed, 158 insertions(+), 203 deletions(-)
 delete mode 100644 include/configs/davinci_dm6467Tevm.h

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-02-10 22:56 Tom Rini
@ 2012-02-12  9:10 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-02-12  9:10 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 10/02/2012 23:56, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit ca849aa4b86b282f837c58a0b129460ebfad2239:
>    David M?ller (ELSOFT AG) (1):
>          ARM: activate DISPLAY_CPUINFO for VCMA9 + SMDK2410 board
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (1):
>        OMAP4460: Reduce MPU clock speed from 920 to 700
>
> Christian Riesch (5):
>        arm, davinci: Add lowlevel_init for SoCs other than DM644X
>        arm, arm926ejs: Do cpu critical inits only for boards that require it
>        arm, arm926ejs: Add option CONFIG_SYS_EXCEPTION_VECTORS_HIGH
>        arm, arm926ejs: Enable icache only if CONFIG_SYS_ICACHE_OFF is not defined
>        arm, davinci: Add support for the Calimain board from OMICRON electronics
>
> Govindraj.R (6):
>        usb: ulpi: Extend the existing ulpi framework.
>        usb: ulpi: Add omap-ulpi-view port support
>        ehci-omap: Clean up added ehci-omap.c
>        OMAP3+: Clock: Adding ehci clock enabling
>        OMAP4: clock-common: Move the usb dppl configuration to new func
>        OMAP4: ehci-omap: enable ehci-omap for panda boards
>
> Hadli, Manjunath (2):
>        davinci: remove macro CONFIG_DISPLAY_CPUINFO
>        davinci: add support for printing clock frequency
>
> Ilya Yanok (2):
>        ehci-omap: driver for EHCI host on OMAP3
>        mcx: support for HTKW mcx board
>
> Peter Barada (2):
>        omap3logic: Add missing GPMC pinmux for LAN92xx access
>        ARMV7: Fix duplicate use of "b" parameter in ACTIM_CTRLA definition
>
> Peter Meerwald (3):
>        beagle: fix typos
>        omap3: fix comment typos
>        doc: fix typos
>
> Schuyler Patton (1):
>        AM3517: Changed default clock rate for AM3517
>
> Stefano Babic (2):
>        OMAP3: TAM3517: update ehci interface
>        ARM: omap3: Added Teejet mt_ventoux
>
> Sughosh Ganu (2):
>        arm, arm926ejs: Flush the data cache before disabling it
>        Changes to move hawkboard to the new spl infrastructure
>
>   MAINTAINERS                                        |   10 +
>   README                                             |    6 +
>   arch/arm/cpu/arm926ejs/davinci/cpu.c               |   76 ++--
>   arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |   24 +-
>   arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S     |    4 +
>   arch/arm/cpu/arm926ejs/davinci/spl.c               |    4 +-
>   arch/arm/cpu/arm926ejs/start.S                     |   28 +-
>   arch/arm/cpu/armv7/omap-common/clocks-common.c     |   54 ++-
>   arch/arm/cpu/armv7/omap3/board.c                   |    8 +-
>   arch/arm/cpu/armv7/omap3/clock.c                   |   20 +
>   arch/arm/cpu/armv7/omap4/clocks.c                  |   27 +-
>   arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    9 +
>   arch/arm/include/asm/arch-omap3/clocks_omap3.h     |    2 +-
>   .../asm/arch-omap3/{ehci_omap3.h =>  ehci.h}        |   45 +--
>   arch/arm/include/asm/arch-omap3/mem.h              |   57 ++--
>   arch/arm/include/asm/arch-omap3/sys_proto.h        |    1 +
>   arch/arm/include/asm/arch-omap4/ehci.h             |   49 +++
>   arch/arm/include/asm/ehci-omap.h                   |  142 +++++++
>   arch/arm/include/asm/u-boot.h                      |    3 +
>   arch/arm/lib/board.c                               |   10 +-
>   board/davinci/da8xxevm/da850evm.c                  |    4 +-
>   board/davinci/da8xxevm/hawkboard.c                 |   23 +
>   board/davinci/da8xxevm/hawkboard_nand_spl.c        |  115 ------
>   .../{u-boot-spl.lds =>  u-boot-spl-da850evm.lds}    |    0
>   .../davinci/da8xxevm/u-boot-spl-hawk.lds           |   22 +-
>   board/efikamx/efikamx-usb.c                        |   24 +-
>   board/enbw/enbw_cmc/enbw_cmc.c                     |   13 +-
>   board/htkw/mcx/Makefile                            |   38 ++
>   board/htkw/mcx/mcx.c                               |  112 +++++
>   board/htkw/mcx/mcx.h                               |  408 +++++++++++++++++++
>   board/logicpd/omap3som/omap3logic.c                |   15 +
>   board/omicron/calimain/Makefile                    |   45 ++
>   board/omicron/calimain/calimain.c                  |  188 +++++++++
>   board/technexion/twister/twister.c                 |   22 +
>   board/teejet/mt_ventoux/Makefile                   |   38 ++
>   board/teejet/mt_ventoux/mt_ventoux.c               |  233 +++++++++++
>   board/teejet/mt_ventoux/mt_ventoux.h               |  429 ++++++++++++++++++++
>   board/ti/beagle/beagle.c                           |  109 +-----
>   board/ti/beagle/beagle.h                           |    4 +-
>   board/ti/panda/panda.c                             |   38 ++
>   board/ti/panda/panda_mux_data.h                    |   16 +-
>   boards.cfg                                         |    4 +-
>   common/cmd_bdinfo.c                                |    9 +
>   doc/README.SPL                                     |    4 +-
>   doc/README.hawkboard                               |   43 +-
>   doc/README.omap-ulpi-viewport                      |   27 ++
>   drivers/usb/host/Makefile                          |    1 +
>   drivers/usb/host/ehci-omap.c                       |  255 ++++++++++++
>   drivers/usb/ulpi/Makefile                          |    1 +
>   drivers/usb/ulpi/omap-ulpi-viewport.c              |  105 +++++
>   drivers/usb/ulpi/ulpi-viewport.c                   |   32 +-
>   drivers/usb/ulpi/ulpi.c                            |   54 ++--
>   include/common.h                                   |    1 +
>   include/configs/calimain.h                         |  363 +++++++++++++++++
>   include/configs/cam_enc_4xx.h                      |   11 +-
>   include/configs/da830evm.h                         |    4 +
>   include/configs/da850evm.h                         |   11 +-
>   include/configs/davinci_dm355evm.h                 |    5 +-
>   include/configs/davinci_dm355leopard.h             |    5 +-
>   include/configs/davinci_dm365evm.h                 |    4 +
>   include/configs/davinci_dm6467Tevm.h               |    5 +-
>   include/configs/davinci_dm6467evm.h                |    5 +-
>   include/configs/davinci_dvevm.h                    |    6 +-
>   include/configs/davinci_schmoogie.h                |    5 +-
>   include/configs/davinci_sffsdr.h                   |    5 +-
>   include/configs/davinci_sonata.h                   |    5 +-
>   include/configs/ea20.h                             |    4 +
>   include/configs/enbw_cmc.h                         |   11 +-
>   include/configs/hawkboard.h                        |   28 ++-
>   include/configs/mcx.h                              |  378 +++++++++++++++++
>   include/configs/mt_ventoux.h                       |   58 +++
>   include/configs/omap3_beagle.h                     |    8 +
>   include/configs/omap4_panda.h                      |   26 ++-
>   include/configs/tam3517-common.h                   |    6 +-
>   include/usb/ulpi.h                                 |   36 ++-
>   nand_spl/board/davinci/da8xxevm/Makefile           |  155 -------
>   76 files changed, 3496 insertions(+), 659 deletions(-)
>   rename arch/arm/include/asm/arch-omap3/{ehci_omap3.h =>  ehci.h} (51%)
>   create mode 100644 arch/arm/include/asm/arch-omap4/ehci.h
>   create mode 100644 arch/arm/include/asm/ehci-omap.h
>   delete mode 100644 board/davinci/da8xxevm/hawkboard_nand_spl.c
>   rename board/davinci/da8xxevm/{u-boot-spl.lds =>  u-boot-spl-da850evm.lds} (100%)
>   rename nand_spl/board/davinci/da8xxevm/u-boot.lds =>  board/davinci/da8xxevm/u-boot-spl-hawk.lds (86%)
>   create mode 100644 board/htkw/mcx/Makefile
>   create mode 100644 board/htkw/mcx/mcx.c
>   create mode 100644 board/htkw/mcx/mcx.h
>   create mode 100644 board/omicron/calimain/Makefile
>   create mode 100644 board/omicron/calimain/calimain.c
>   create mode 100644 board/teejet/mt_ventoux/Makefile
>   create mode 100644 board/teejet/mt_ventoux/mt_ventoux.c
>   create mode 100644 board/teejet/mt_ventoux/mt_ventoux.h
>   create mode 100644 doc/README.omap-ulpi-viewport
>   create mode 100644 drivers/usb/host/ehci-omap.c
>   create mode 100644 drivers/usb/ulpi/omap-ulpi-viewport.c
>   create mode 100644 include/configs/calimain.h
>   create mode 100644 include/configs/mcx.h
>   create mode 100644 include/configs/mt_ventoux.h
>   delete mode 100644 nand_spl/board/davinci/da8xxevm/Makefile
>
> I've tested the USB changes on Beagleboard xM and Pandaboard ES.

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-02-10 22:56 Tom Rini
  2012-02-12  9:10 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-02-10 22:56 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit ca849aa4b86b282f837c58a0b129460ebfad2239:
  David M?ller (ELSOFT AG) (1):
        ARM: activate DISPLAY_CPUINFO for VCMA9 + SMDK2410 board

are available in the git repository at:

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

Aneesh V (1):
      OMAP4460: Reduce MPU clock speed from 920 to 700

Christian Riesch (5):
      arm, davinci: Add lowlevel_init for SoCs other than DM644X
      arm, arm926ejs: Do cpu critical inits only for boards that require it
      arm, arm926ejs: Add option CONFIG_SYS_EXCEPTION_VECTORS_HIGH
      arm, arm926ejs: Enable icache only if CONFIG_SYS_ICACHE_OFF is not defined
      arm, davinci: Add support for the Calimain board from OMICRON electronics

Govindraj.R (6):
      usb: ulpi: Extend the existing ulpi framework.
      usb: ulpi: Add omap-ulpi-view port support
      ehci-omap: Clean up added ehci-omap.c
      OMAP3+: Clock: Adding ehci clock enabling
      OMAP4: clock-common: Move the usb dppl configuration to new func
      OMAP4: ehci-omap: enable ehci-omap for panda boards

Hadli, Manjunath (2):
      davinci: remove macro CONFIG_DISPLAY_CPUINFO
      davinci: add support for printing clock frequency

Ilya Yanok (2):
      ehci-omap: driver for EHCI host on OMAP3
      mcx: support for HTKW mcx board

Peter Barada (2):
      omap3logic: Add missing GPMC pinmux for LAN92xx access
      ARMV7: Fix duplicate use of "b" parameter in ACTIM_CTRLA definition

Peter Meerwald (3):
      beagle: fix typos
      omap3: fix comment typos
      doc: fix typos

Schuyler Patton (1):
      AM3517: Changed default clock rate for AM3517

Stefano Babic (2):
      OMAP3: TAM3517: update ehci interface
      ARM: omap3: Added Teejet mt_ventoux

Sughosh Ganu (2):
      arm, arm926ejs: Flush the data cache before disabling it
      Changes to move hawkboard to the new spl infrastructure

 MAINTAINERS                                        |   10 +
 README                                             |    6 +
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   76 ++--
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |   24 +-
 arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S     |    4 +
 arch/arm/cpu/arm926ejs/davinci/spl.c               |    4 +-
 arch/arm/cpu/arm926ejs/start.S                     |   28 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |   54 ++-
 arch/arm/cpu/armv7/omap3/board.c                   |    8 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |   20 +
 arch/arm/cpu/armv7/omap4/clocks.c                  |   27 +-
 arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    9 +
 arch/arm/include/asm/arch-omap3/clocks_omap3.h     |    2 +-
 .../asm/arch-omap3/{ehci_omap3.h => ehci.h}        |   45 +--
 arch/arm/include/asm/arch-omap3/mem.h              |   57 ++--
 arch/arm/include/asm/arch-omap3/sys_proto.h        |    1 +
 arch/arm/include/asm/arch-omap4/ehci.h             |   49 +++
 arch/arm/include/asm/ehci-omap.h                   |  142 +++++++
 arch/arm/include/asm/u-boot.h                      |    3 +
 arch/arm/lib/board.c                               |   10 +-
 board/davinci/da8xxevm/da850evm.c                  |    4 +-
 board/davinci/da8xxevm/hawkboard.c                 |   23 +
 board/davinci/da8xxevm/hawkboard_nand_spl.c        |  115 ------
 .../{u-boot-spl.lds => u-boot-spl-da850evm.lds}    |    0
 .../davinci/da8xxevm/u-boot-spl-hawk.lds           |   22 +-
 board/efikamx/efikamx-usb.c                        |   24 +-
 board/enbw/enbw_cmc/enbw_cmc.c                     |   13 +-
 board/htkw/mcx/Makefile                            |   38 ++
 board/htkw/mcx/mcx.c                               |  112 +++++
 board/htkw/mcx/mcx.h                               |  408 +++++++++++++++++++
 board/logicpd/omap3som/omap3logic.c                |   15 +
 board/omicron/calimain/Makefile                    |   45 ++
 board/omicron/calimain/calimain.c                  |  188 +++++++++
 board/technexion/twister/twister.c                 |   22 +
 board/teejet/mt_ventoux/Makefile                   |   38 ++
 board/teejet/mt_ventoux/mt_ventoux.c               |  233 +++++++++++
 board/teejet/mt_ventoux/mt_ventoux.h               |  429 ++++++++++++++++++++
 board/ti/beagle/beagle.c                           |  109 +-----
 board/ti/beagle/beagle.h                           |    4 +-
 board/ti/panda/panda.c                             |   38 ++
 board/ti/panda/panda_mux_data.h                    |   16 +-
 boards.cfg                                         |    4 +-
 common/cmd_bdinfo.c                                |    9 +
 doc/README.SPL                                     |    4 +-
 doc/README.hawkboard                               |   43 +-
 doc/README.omap-ulpi-viewport                      |   27 ++
 drivers/usb/host/Makefile                          |    1 +
 drivers/usb/host/ehci-omap.c                       |  255 ++++++++++++
 drivers/usb/ulpi/Makefile                          |    1 +
 drivers/usb/ulpi/omap-ulpi-viewport.c              |  105 +++++
 drivers/usb/ulpi/ulpi-viewport.c                   |   32 +-
 drivers/usb/ulpi/ulpi.c                            |   54 ++--
 include/common.h                                   |    1 +
 include/configs/calimain.h                         |  363 +++++++++++++++++
 include/configs/cam_enc_4xx.h                      |   11 +-
 include/configs/da830evm.h                         |    4 +
 include/configs/da850evm.h                         |   11 +-
 include/configs/davinci_dm355evm.h                 |    5 +-
 include/configs/davinci_dm355leopard.h             |    5 +-
 include/configs/davinci_dm365evm.h                 |    4 +
 include/configs/davinci_dm6467Tevm.h               |    5 +-
 include/configs/davinci_dm6467evm.h                |    5 +-
 include/configs/davinci_dvevm.h                    |    6 +-
 include/configs/davinci_schmoogie.h                |    5 +-
 include/configs/davinci_sffsdr.h                   |    5 +-
 include/configs/davinci_sonata.h                   |    5 +-
 include/configs/ea20.h                             |    4 +
 include/configs/enbw_cmc.h                         |   11 +-
 include/configs/hawkboard.h                        |   28 ++-
 include/configs/mcx.h                              |  378 +++++++++++++++++
 include/configs/mt_ventoux.h                       |   58 +++
 include/configs/omap3_beagle.h                     |    8 +
 include/configs/omap4_panda.h                      |   26 ++-
 include/configs/tam3517-common.h                   |    6 +-
 include/usb/ulpi.h                                 |   36 ++-
 nand_spl/board/davinci/da8xxevm/Makefile           |  155 -------
 76 files changed, 3496 insertions(+), 659 deletions(-)
 rename arch/arm/include/asm/arch-omap3/{ehci_omap3.h => ehci.h} (51%)
 create mode 100644 arch/arm/include/asm/arch-omap4/ehci.h
 create mode 100644 arch/arm/include/asm/ehci-omap.h
 delete mode 100644 board/davinci/da8xxevm/hawkboard_nand_spl.c
 rename board/davinci/da8xxevm/{u-boot-spl.lds => u-boot-spl-da850evm.lds} (100%)
 rename nand_spl/board/davinci/da8xxevm/u-boot.lds => board/davinci/da8xxevm/u-boot-spl-hawk.lds (86%)
 create mode 100644 board/htkw/mcx/Makefile
 create mode 100644 board/htkw/mcx/mcx.c
 create mode 100644 board/htkw/mcx/mcx.h
 create mode 100644 board/omicron/calimain/Makefile
 create mode 100644 board/omicron/calimain/calimain.c
 create mode 100644 board/teejet/mt_ventoux/Makefile
 create mode 100644 board/teejet/mt_ventoux/mt_ventoux.c
 create mode 100644 board/teejet/mt_ventoux/mt_ventoux.h
 create mode 100644 doc/README.omap-ulpi-viewport
 create mode 100644 drivers/usb/host/ehci-omap.c
 create mode 100644 drivers/usb/ulpi/omap-ulpi-viewport.c
 create mode 100644 include/configs/calimain.h
 create mode 100644 include/configs/mcx.h
 create mode 100644 include/configs/mt_ventoux.h
 delete mode 100644 nand_spl/board/davinci/da8xxevm/Makefile

I've tested the USB changes on Beagleboard xM and Pandaboard ES.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-02-02 18:10 Tom Rini
@ 2012-02-03 18:49 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-02-03 18:49 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 02/02/2012 19:10, Tom Rini a ?crit :
> Hello,
>
> The following changes since commit 78936e6d110bbcfe6db3406456c16a7a174ae031:
>    Tom Rini (1):
>          OMAP3: Correct get_sdr_cs_offset mask
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Dechesne, Nicolas (1):
>        OMAP SPL: Fix missing timer_init() call in OMAP4 s_init()
>
> Heiko Schocher (7):
>        arm, davinci: add workaround for not resetting DMA bus and VPSS modules
>        arm, davinci: add timer defines for tcr field
>        common: add possibility for readline_into_buffer timeout
>        common, menu: add statusline support
>        common, menu: show menu on startup if CONFIG_MENU_SHOW is defined
>        common, menu: do not trigger timeout again, if a line is read
>        arm, davinci: cam_enc_4xx board updates
>
> Thomas Weber (1):
>        OMAP3: Add Corscience Tricorder board
>
>   MAINTAINERS                                        |    1 +
>   arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |   52 ++-
>   arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    2 +
>   arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |    1 -
>   arch/arm/include/asm/arch-davinci/hardware.h       |    9 +
>   arch/arm/include/asm/arch-davinci/timer_defs.h     |   16 +
>   board/ait/cam_enc_4xx/cam_enc_4xx.c                |  667 +++++++++++++++++++-
>   board/ait/cam_enc_4xx/ublimage.cfg                 |    3 +-
>   board/corscience/tricorder/Makefile                |   46 ++
>   board/corscience/tricorder/tricorder.c             |  105 +++
>   board/corscience/tricorder/tricorder.h             |  375 +++++++++++
>   boards.cfg                                         |    1 +
>   common/cmd_nvedit.c                                |    2 +-
>   common/main.c                                      |   24 +-
>   common/menu.c                                      |   15 +-
>   doc/README.menu                                    |   10 +
>   include/common.h                                   |    3 +-
>   include/configs/cam_enc_4xx.h                      |  131 +++-
>   include/configs/tricorder.h                        |  320 ++++++++++
>   include/menu.h                                     |    4 +
>   20 files changed, 1745 insertions(+), 42 deletions(-)
>   create mode 100644 board/corscience/tricorder/Makefile
>   create mode 100644 board/corscience/tricorder/tricorder.c
>   create mode 100644 board/corscience/tricorder/tricorder.h
>   create mode 100644 include/configs/tricorder.h
>
> After talking with Wolfgang off-list, he's fine with the common menu
> changes coming in via this tree.

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-02-02 18:10 Tom Rini
  2012-02-03 18:49 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-02-02 18:10 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 78936e6d110bbcfe6db3406456c16a7a174ae031:
  Tom Rini (1):
        OMAP3: Correct get_sdr_cs_offset mask

are available in the git repository at:

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

Dechesne, Nicolas (1):
      OMAP SPL: Fix missing timer_init() call in OMAP4 s_init()

Heiko Schocher (7):
      arm, davinci: add workaround for not resetting DMA bus and VPSS modules
      arm, davinci: add timer defines for tcr field
      common: add possibility for readline_into_buffer timeout
      common, menu: add statusline support
      common, menu: show menu on startup if CONFIG_MENU_SHOW is defined
      common, menu: do not trigger timeout again, if a line is read
      arm, davinci: cam_enc_4xx board updates

Thomas Weber (1):
      OMAP3: Add Corscience Tricorder board

 MAINTAINERS                                        |    1 +
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |   52 ++-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    2 +
 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |    1 -
 arch/arm/include/asm/arch-davinci/hardware.h       |    9 +
 arch/arm/include/asm/arch-davinci/timer_defs.h     |   16 +
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |  667 +++++++++++++++++++-
 board/ait/cam_enc_4xx/ublimage.cfg                 |    3 +-
 board/corscience/tricorder/Makefile                |   46 ++
 board/corscience/tricorder/tricorder.c             |  105 +++
 board/corscience/tricorder/tricorder.h             |  375 +++++++++++
 boards.cfg                                         |    1 +
 common/cmd_nvedit.c                                |    2 +-
 common/main.c                                      |   24 +-
 common/menu.c                                      |   15 +-
 doc/README.menu                                    |   10 +
 include/common.h                                   |    3 +-
 include/configs/cam_enc_4xx.h                      |  131 +++-
 include/configs/tricorder.h                        |  320 ++++++++++
 include/menu.h                                     |    4 +
 20 files changed, 1745 insertions(+), 42 deletions(-)
 create mode 100644 board/corscience/tricorder/Makefile
 create mode 100644 board/corscience/tricorder/tricorder.c
 create mode 100644 board/corscience/tricorder/tricorder.h
 create mode 100644 include/configs/tricorder.h

After talking with Wolfgang off-list, he's fine with the common menu
changes coming in via this tree.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-01-25 21:34 Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2012-01-25 21:34 UTC (permalink / raw)
  To: u-boot

Hello,

The following changes since commit 5d250e52ffd5554834a45ac8d53762fbbf36933c:
  Simon Glass (1):
        tegra2: Enable data cache

are available in the git repository at:

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

Ben Gardiner (1):
      arm, davinci: add PLL0 prediv to da850 lowlevel setup

Pali Roh?r (1):
      arm: omap3: Define save_boot_params in lowlevel_init.S for SPL only

Yegor Yefremov (1):
      am3517evm: remove rootfstype kernel parameter for MMC boot device

 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c |    7 +++++++
 arch/arm/cpu/armv7/omap3/lowlevel_init.S        |    4 ++--
 arch/arm/include/asm/arch-davinci/pll_defs.h    |    3 ++-
 include/configs/am3517_evm.h                    |    3 +--
 4 files changed, 12 insertions(+), 5 deletions(-)

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2012-01-04 16:19 Tom Rini
@ 2012-01-12 22:06 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2012-01-12 22:06 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 04/01/2012 17:19, Tom Rini a ?crit :
> Hi Albert,
>
> This replaces the pull request I sent for u-boot-ti/next back around
> Dec 23rd that wasn't pulled.
>
> The following changes since commit a747cc0a8c55d69a56a6db80a35cdb48c853447d:
>    Thierry Reding (1):
>          tegra2: Optimize out-of-tree build for Ventana.
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (1):
>        omap4: fix boot issue on ES2.0 Panda
>
> Christian Riesch (3):
>        arm, davinci: Use a common configuration file for da850evm and
> da850_am18xxevm
>        da850evm: Remove CONFIG_SYS_xxCACHE_OFF defines
>        arm, davinci: Change byte order of RTC kick register values
>
> Peter Barada (1):
>        ARMV7: Add support For Logic OMAP35x/DM37x modules
>
> Peter Meerwald (1):
>        beagle: add eeprom expansion board info for bct brettl3
>
> Thomas Weber (1):
>        OMAP3: Remove unused define CONFIG_OMAP3_*_DDR
>
>   MAINTAINERS                                  |    4 +
>   arch/arm/cpu/armv7/omap4/hwinit.c            |    4 +-
>   arch/arm/include/asm/arch-davinci/hardware.h |    4 +-
>   arch/arm/include/asm/arch-omap4/omap.h       |    2 +-
>   board/enbw/enbw_cmc/enbw_cmc.c               |    4 +-
>   board/logicpd/omap3som/Makefile              |   42 +++
>   board/logicpd/omap3som/omap3logic.c          |  247 ++++++++++++++++++
>   board/logicpd/omap3som/omap3logic.h          |   47 ++++
>   board/ti/beagle/beagle.c                     |    4 +
>   boards.cfg                                   |    3 +-
>   include/configs/cm_t35.h                     |    3 -
>   include/configs/da850_am18xxevm.h            |  246 -----------------
>   include/configs/da850evm.h                   |    3 -
>   include/configs/dig297.h                     |    3 -
>   include/configs/igep0020.h                   |    3 -
>   include/configs/igep0030.h                   |    3 -
>   include/configs/omap3_logic.h                |  362 ++++++++++++++++++++++++++
>   include/configs/omap3_mvblx.h                |    3 -
>   include/configs/omap3_overo.h                |    3 -
>   include/configs/omap3_pandora.h              |    3 -
>   include/configs/omap3_sdp3430.h              |    3 -
>   include/configs/omap3_zoom1.h                |    3 -
>   include/configs/omap3_zoom2.h                |    3 -
>   23 files changed, 715 insertions(+), 287 deletions(-)
>   create mode 100644 board/logicpd/omap3som/Makefile
>   create mode 100644 board/logicpd/omap3som/omap3logic.c
>   create mode 100644 board/logicpd/omap3som/omap3logic.h
>   delete mode 100644 include/configs/da850_am18xxevm.h
>   create mode 100644 include/configs/omap3_logic.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2012-01-04 16:19 Tom Rini
  2012-01-12 22:06 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2012-01-04 16:19 UTC (permalink / raw)
  To: u-boot

Hi Albert,

This replaces the pull request I sent for u-boot-ti/next back around
Dec 23rd that wasn't pulled.

The following changes since commit a747cc0a8c55d69a56a6db80a35cdb48c853447d:
  Thierry Reding (1):
        tegra2: Optimize out-of-tree build for Ventana.

are available in the git repository at:

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

Aneesh V (1):
      omap4: fix boot issue on ES2.0 Panda

Christian Riesch (3):
      arm, davinci: Use a common configuration file for da850evm and
da850_am18xxevm
      da850evm: Remove CONFIG_SYS_xxCACHE_OFF defines
      arm, davinci: Change byte order of RTC kick register values

Peter Barada (1):
      ARMV7: Add support For Logic OMAP35x/DM37x modules

Peter Meerwald (1):
      beagle: add eeprom expansion board info for bct brettl3

Thomas Weber (1):
      OMAP3: Remove unused define CONFIG_OMAP3_*_DDR

 MAINTAINERS                                  |    4 +
 arch/arm/cpu/armv7/omap4/hwinit.c            |    4 +-
 arch/arm/include/asm/arch-davinci/hardware.h |    4 +-
 arch/arm/include/asm/arch-omap4/omap.h       |    2 +-
 board/enbw/enbw_cmc/enbw_cmc.c               |    4 +-
 board/logicpd/omap3som/Makefile              |   42 +++
 board/logicpd/omap3som/omap3logic.c          |  247 ++++++++++++++++++
 board/logicpd/omap3som/omap3logic.h          |   47 ++++
 board/ti/beagle/beagle.c                     |    4 +
 boards.cfg                                   |    3 +-
 include/configs/cm_t35.h                     |    3 -
 include/configs/da850_am18xxevm.h            |  246 -----------------
 include/configs/da850evm.h                   |    3 -
 include/configs/dig297.h                     |    3 -
 include/configs/igep0020.h                   |    3 -
 include/configs/igep0030.h                   |    3 -
 include/configs/omap3_logic.h                |  362 ++++++++++++++++++++++++++
 include/configs/omap3_mvblx.h                |    3 -
 include/configs/omap3_overo.h                |    3 -
 include/configs/omap3_pandora.h              |    3 -
 include/configs/omap3_sdp3430.h              |    3 -
 include/configs/omap3_zoom1.h                |    3 -
 include/configs/omap3_zoom2.h                |    3 -
 23 files changed, 715 insertions(+), 287 deletions(-)
 create mode 100644 board/logicpd/omap3som/Makefile
 create mode 100644 board/logicpd/omap3som/omap3logic.c
 create mode 100644 board/logicpd/omap3som/omap3logic.h
 delete mode 100644 include/configs/da850_am18xxevm.h
 create mode 100644 include/configs/omap3_logic.h

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-12-13 18:58 Tom Rini
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2011-12-13 18:58 UTC (permalink / raw)
  To: u-boot

The following changes since commit
953209bf5ef0889a1baa02aa0ed5324f53ff8fda:? Wolfgang Grandegger (1):
? ? arm: add __aeabi_unwind_cpp_pr1() function to avoid linker
complaints
are available in the git repository at:
? git://git.denx.de/u-boot-ti.git master
Ilya Yanok (1):? ? ? arm926ejs: remove noop flush_dcache_all function
?arch/arm/cpu/arm926ejs/cache.c | ? ?5 -----?1 files changed, 0
insertions(+), 5 deletions(-)
This is a bugfix to the cache changes that were pushed before and
without them some boards get stuck in an infinite loop.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-12-06 22:40 ` Tom Rini
@ 2011-12-06 22:54   ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-12-06 22:54 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 06/12/2011 23:40, Tom Rini a ?crit :
> On Mon, Dec 5, 2011 at 4:52 PM, Tom Rini<tom.rini@gmail.com>  wrote:
>> Hi Albert,
>>
>> The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:
>>   Stefano Babic (1):
>>        MX35: flea3: changes due to hardware revision B
>
> Update!
>
>
> The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:
>    Stefano Babic (1):
>          MX35: flea3: changes due to hardware revision B
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Anatolij Gustschin (3):
>        arch/arm/cpu/armv7/omap-common/spl.c: Fix GCC 4.2 warnings
>        arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix GCC 4.6 warnings
>        arch/arm/include/asm/arch-omap5/clocks.h: Fix GCC 4.2 warnings
>
> Manjunath Hadli (1):
>        da850evm: pass board revision info to kernel
>
> Simon Schwarz (1):
>        devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
>
> Sughosh Ganu (1):
>        davinci: Remove unwanted memsize.c from hawkboard's nand spl build
>
>   arch/arm/cpu/armv7/omap-common/clocks-common.c |    8 +++-----
>   arch/arm/cpu/armv7/omap-common/spl.c           |    5 +++--
>   arch/arm/include/asm/arch-omap5/clocks.h       |   16 ++++++++--------
>   board/davinci/da8xxevm/da850evm.c              |    6 +++++-
>   include/configs/da850_am18xxevm.h              |    2 +-
>   include/configs/devkit8000.h                   |   10 ++++++++--
>   nand_spl/board/davinci/da8xxevm/Makefile       |    6 ------
>   7 files changed, 28 insertions(+), 25 deletions(-)

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-12-05 23:52 Tom Rini
@ 2011-12-06 22:40 ` Tom Rini
  2011-12-06 22:54   ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2011-12-06 22:40 UTC (permalink / raw)
  To: u-boot

On Mon, Dec 5, 2011 at 4:52 PM, Tom Rini <tom.rini@gmail.com> wrote:
> Hi Albert,
>
> The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:
> ?Stefano Babic (1):
> ? ? ? MX35: flea3: changes due to hardware revision B

Update!


The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:
  Stefano Babic (1):
        MX35: flea3: changes due to hardware revision B

are available in the git repository at:

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

Anatolij Gustschin (3):
      arch/arm/cpu/armv7/omap-common/spl.c: Fix GCC 4.2 warnings
      arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix GCC 4.6 warnings
      arch/arm/include/asm/arch-omap5/clocks.h: Fix GCC 4.2 warnings

Manjunath Hadli (1):
      da850evm: pass board revision info to kernel

Simon Schwarz (1):
      devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss

Sughosh Ganu (1):
      davinci: Remove unwanted memsize.c from hawkboard's nand spl build

 arch/arm/cpu/armv7/omap-common/clocks-common.c |    8 +++-----
 arch/arm/cpu/armv7/omap-common/spl.c           |    5 +++--
 arch/arm/include/asm/arch-omap5/clocks.h       |   16 ++++++++--------
 board/davinci/da8xxevm/da850evm.c              |    6 +++++-
 include/configs/da850_am18xxevm.h              |    2 +-
 include/configs/devkit8000.h                   |   10 ++++++++--
 nand_spl/board/davinci/da8xxevm/Makefile       |    6 ------
 7 files changed, 28 insertions(+), 25 deletions(-)

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-12-05 23:52 Tom Rini
  2011-12-06 22:40 ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2011-12-05 23:52 UTC (permalink / raw)
  To: u-boot

Hi Albert,

The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:
 Stefano Babic (1):
       MX35: flea3: changes due to hardware revision B

are available in the git repository at:

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

Anatolij Gustschin (3):
     arch/arm/cpu/armv7/omap-common/spl.c: Fix GCC 4.2 warnings
     arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix GCC 4.6 warnings
     arch/arm/include/asm/arch-omap5/clocks.h: Fix GCC 4.2 warnings

Manjunath Hadli (1):
     da850evm: pass board revision info to kernel

arch/arm/cpu/armv7/omap-common/clocks-common.c |    8 +++-----
arch/arm/cpu/armv7/omap-common/spl.c           |    5 +++--
arch/arm/include/asm/arch-omap5/clocks.h       |   16 ++++++++--------
board/davinci/da8xxevm/da850evm.c              |    6 +++++-
include/configs/da850_am18xxevm.h              |    2 +-
5 files changed, 20 insertions(+), 17 deletions(-)

Which is, in sum, gcc 4.6 warning fixes and a minor improvement to da850 boards that was posted back in early October (the rest of Manjunath's patches either need changes or depend on those patches that need changes).

-- 
Tom

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 163 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20111205/dbd54cdb/attachment.pgp>

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-29 22:53 Tom Rini
@ 2011-12-05 17:07 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-12-05 17:07 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 29/11/2011 23:53, Tom Rini a ?crit :
> The following changes since commit f2695a272849764cda09bcce6f86d03105e9e46d:
>    Marek Vasut (1):
>          PXA: Drop XM250 board
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Anatolij Gustschin (1):
>        ARM: davinci_dm6467Tevm: Fix build breakage
>
> Aneesh V (13):
>        armv7: disable L2 cache in cleanup_before_linux()
>        armv7: include armv7/cpu.c in SPL build
>        armv7: setup vector
>        start.S: remove omap3 specific code from start.S
>        omap: Improve PLL parameter calculation tool
>        omap4: ttyO2 instead of ttyS2 in default bootargs
>        omap: fix cache line size for omap3/omap4 boards
>        omap4460: fix TPS initialization
>        omap: remove I2C from SPL
>        omap4: emif: fix error in driver
>        omap4460: add ES1.1 identification
>        omap4+: streamline CONFIG_SYS_TEXT_BASE and other SDRAM addresses
>        omap4: fix IO setting
>
> Christian Riesch (8):
>        arm, davinci: Move pinmux functions from board to arch tree
>        arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins
>        arm, da850evm: Do pinmux configuration for EMAC together with
> other pinmuxes
>        arm, da850: Add pinmux configurations to the arch tree
>        arm, da850evm: Use the pinmux configurations defined in the arch tree
>        arm, hawkboard: Use the pinmux configurations defined in the arch tree
>        arm, davinci: Remove duplication of pinmux configuration code
>        arm: printf() is not available in some SPL configurations
>
> Heiko Schocher (6):
>        arm, arm926ejs: always do cpu critical inits
>        arm, davinci: move davinci_rtc struct to hardware.h
>        arm, davinci, da850: add uart1 tx rx pinmux config
>        arm, board/davinci/common/misc.c: Codingstyle cleanup
>        arm, davinci: move misc function in arch tree
>        arm, davinci: add support for am1808 based enbw_cmc board
>
> Ilya Yanok (10):
>        davinci_emac: move arch-independent defines to separate header
>        davinci_emac: use internal addresses in buffer descriptors
>        davinci_emac: conditionally compile specific PHY support
>        arm926ejs: add noop implementation for dcache ops
>        davinci_emac: fix for running with dcache enabled
>        davinci_emac: hardcode 100Mbps for AM35xx and RMII
>        AM35xx: add EMAC support
>        AM3517: move AM3517 specific mux defines to generic header
>        nand_spl_simple: add support for software ECC
>        omap_gpmc: use SOFTECC in SPL if it's enabled
>
> Koen Kooi (1):
>        BeagleBoard: config: Really switch to ttyO2
>
> Prabhakar Lad (1):
>        ARM: davici_emac: Fix condition for number of phy detects
>
> Thomas Weber (3):
>        ARM: OMAP3: Remove unused define CONFIG_OMAP3430
>        ARM: OMAP3: Remove unused define SDRC_R_C_B
>        ARM: OMAP: Remove STACKSIZE for IRQ and FIQ if unused
>
> Tom Rini (15):
>        omap3: mem: Comment enable_gpmc_cs_config more
>        OMAP3: Update SDRC dram_init to always call make_cs1_contiguous()
>        OMAP3: Add a helper function to set timings in SDRC
>        OMAP3: Change mem_ok to clear again after reading back
>        OMAP3: Remove get_mem_type prototype
>        omap3: mem: Add MCFG helper macro
>        OMAP3: Add optimal SDRC autorefresh control values
>        OMAP3: Suffix all Micron memory timing parts with their speed
>        OMAP3 SPL: Rework memory initalization and devkit8000 support
>        OMAP3 SPL: Add identify_nand_chip function
>        OMAP3: Add SPL support to Beagleboard
>        OMAP3: Add SPL support to omap3_evm
>        AM3517: Add SPL support
>        AM3517 CraneBoard: Add SPL support
>        OMAP3: Add SPL_BOARD_INIT hook

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-29 22:53 Tom Rini
  2011-12-05 17:07 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2011-11-29 22:53 UTC (permalink / raw)
  To: u-boot

The following changes since commit f2695a272849764cda09bcce6f86d03105e9e46d:
  Marek Vasut (1):
        PXA: Drop XM250 board

are available in the git repository at:

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

Anatolij Gustschin (1):
      ARM: davinci_dm6467Tevm: Fix build breakage

Aneesh V (13):
      armv7: disable L2 cache in cleanup_before_linux()
      armv7: include armv7/cpu.c in SPL build
      armv7: setup vector
      start.S: remove omap3 specific code from start.S
      omap: Improve PLL parameter calculation tool
      omap4: ttyO2 instead of ttyS2 in default bootargs
      omap: fix cache line size for omap3/omap4 boards
      omap4460: fix TPS initialization
      omap: remove I2C from SPL
      omap4: emif: fix error in driver
      omap4460: add ES1.1 identification
      omap4+: streamline CONFIG_SYS_TEXT_BASE and other SDRAM addresses
      omap4: fix IO setting

Christian Riesch (8):
      arm, davinci: Move pinmux functions from board to arch tree
      arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins
      arm, da850evm: Do pinmux configuration for EMAC together with
other pinmuxes
      arm, da850: Add pinmux configurations to the arch tree
      arm, da850evm: Use the pinmux configurations defined in the arch tree
      arm, hawkboard: Use the pinmux configurations defined in the arch tree
      arm, davinci: Remove duplication of pinmux configuration code
      arm: printf() is not available in some SPL configurations

Heiko Schocher (6):
      arm, arm926ejs: always do cpu critical inits
      arm, davinci: move davinci_rtc struct to hardware.h
      arm, davinci, da850: add uart1 tx rx pinmux config
      arm, board/davinci/common/misc.c: Codingstyle cleanup
      arm, davinci: move misc function in arch tree
      arm, davinci: add support for am1808 based enbw_cmc board

Ilya Yanok (10):
      davinci_emac: move arch-independent defines to separate header
      davinci_emac: use internal addresses in buffer descriptors
      davinci_emac: conditionally compile specific PHY support
      arm926ejs: add noop implementation for dcache ops
      davinci_emac: fix for running with dcache enabled
      davinci_emac: hardcode 100Mbps for AM35xx and RMII
      AM35xx: add EMAC support
      AM3517: move AM3517 specific mux defines to generic header
      nand_spl_simple: add support for software ECC
      omap_gpmc: use SOFTECC in SPL if it's enabled

Koen Kooi (1):
      BeagleBoard: config: Really switch to ttyO2

Prabhakar Lad (1):
      ARM: davici_emac: Fix condition for number of phy detects

Thomas Weber (3):
      ARM: OMAP3: Remove unused define CONFIG_OMAP3430
      ARM: OMAP3: Remove unused define SDRC_R_C_B
      ARM: OMAP: Remove STACKSIZE for IRQ and FIQ if unused

Tom Rini (15):
      omap3: mem: Comment enable_gpmc_cs_config more
      OMAP3: Update SDRC dram_init to always call make_cs1_contiguous()
      OMAP3: Add a helper function to set timings in SDRC
      OMAP3: Change mem_ok to clear again after reading back
      OMAP3: Remove get_mem_type prototype
      omap3: mem: Add MCFG helper macro
      OMAP3: Add optimal SDRC autorefresh control values
      OMAP3: Suffix all Micron memory timing parts with their speed
      OMAP3 SPL: Rework memory initalization and devkit8000 support
      OMAP3 SPL: Add identify_nand_chip function
      OMAP3: Add SPL support to Beagleboard
      OMAP3: Add SPL support to omap3_evm
      AM3517: Add SPL support
      AM3517 CraneBoard: Add SPL support
      OMAP3: Add SPL_BOARD_INIT hook

 MAINTAINERS                                        |    1 +
 arch/arm/cpu/arm926ejs/Makefile                    |    2 +-
 arch/arm/cpu/arm926ejs/cache.c                     |   75 +++
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    3 +-
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |   36 +-
 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |  171 ++++++
 arch/arm/cpu/arm926ejs/davinci/dp83848.c           |    1 +
 arch/arm/cpu/arm926ejs/davinci/et1011c.c           |    1 +
 arch/arm/cpu/arm926ejs/davinci/ksz8873.c           |    1 +
 arch/arm/cpu/arm926ejs/davinci/lxt972.c            |    1 +
 .../arm/cpu/arm926ejs/davinci}/misc.c              |   19 +-
 .../arm/cpu/arm926ejs/davinci/pinmux.c             |    0
 arch/arm/cpu/arm926ejs/start.S                     |    6 +-
 arch/arm/cpu/armv7/Makefile                        |    4 +-
 arch/arm/cpu/armv7/cpu.c                           |    1 +
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |    8 -
 arch/arm/cpu/armv7/omap-common/emif-common.c       |    4 +-
 arch/arm/cpu/armv7/omap-common/spl.c               |    5 +-
 arch/arm/cpu/armv7/omap3/Makefile                  |    4 +
 arch/arm/cpu/armv7/omap3/board.c                   |    5 +
 arch/arm/cpu/armv7/omap3/emac.c                    |   44 ++
 arch/arm/cpu/armv7/omap3/lowlevel_init.S           |    8 +
 arch/arm/cpu/armv7/omap3/mem.c                     |   13 +-
 arch/arm/cpu/armv7/omap3/sdrc.c                    |  145 +++---
 arch/arm/cpu/armv7/omap3/spl_id_nand.c             |   87 +++
 arch/arm/cpu/armv7/omap4/hwinit.c                  |   17 +-
 arch/arm/cpu/armv7/start.S                         |   38 +-
 arch/arm/include/asm/arch-davinci/emac_defs.h      |  289 ----------
 arch/arm/include/asm/arch-davinci/hardware.h       |   41 ++
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |   51 ++
 arch/arm/include/asm/arch-omap3/am35x_def.h        |    3 +
 arch/arm/include/asm/arch-omap3/emac_defs.h        |   56 ++
 arch/arm/include/asm/arch-omap3/mem.h              |  156 ++++--
 arch/arm/include/asm/arch-omap3/mux.h              |   41 ++
 arch/arm/include/asm/arch-omap3/omap3.h            |    1 +
 arch/arm/include/asm/arch-omap3/sys_proto.h        |    4 +-
 arch/arm/include/asm/arch-omap4/omap.h             |    2 +
 arch/arm/include/asm/omap_common.h                 |    5 +
 arch/arm/lib/eabi_compat.c                         |    2 +
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |   15 -
 board/davinci/da8xxevm/da830evm.c                  |    2 -
 board/davinci/da8xxevm/da850evm.c                  |  159 +-----
 board/davinci/da8xxevm/hawkboard_nand_spl.c        |   59 +--
 board/davinci/ea20/ea20.c                          |    2 -
 board/{davinci/common => enbw/enbw_cmc}/Makefile   |   12 +-
 board/enbw/enbw_cmc/enbw_cmc.c                     |  607 ++++++++++++++++++++
 board/logicpd/am3517evm/am3517evm.c                |    2 +-
 board/logicpd/am3517evm/am3517evm.h                |   40 --
 board/logicpd/am3517evm/config.mk                  |   30 -
 board/ti/am3517crane/am3517crane.c                 |    2 +-
 board/ti/am3517crane/am3517crane.h                 |   39 --
 board/ti/am3517crane/config.mk                     |   29 -
 board/ti/beagle/beagle.c                           |   71 +++-
 board/ti/beagle/config.mk                          |   33 --
 board/ti/evm/config.mk                             |   33 --
 board/ti/evm/evm.c                                 |   41 ++-
 board/ti/panda/panda_mux_data.h                    |    2 +-
 board/ti/sdp4430/sdp.c                             |    7 +
 board/ti/sdp4430/sdp4430_mux_data.h                |    6 +-
 board/timll/devkit8000/devkit8000.c                |   21 +
 boards.cfg                                         |    1 +
 drivers/mtd/nand/nand_ecc.c                        |    2 +-
 drivers/mtd/nand/nand_spl_simple.c                 |   11 +-
 drivers/mtd/nand/omap_gpmc.c                       |    4 +-
 drivers/net/davinci_emac.c                         |   94 +++-
 drivers/net/davinci_emac.h                         |  315 ++++++++++
 drivers/rtc/davinci.c                              |   26 -
 include/configs/am3517_crane.h                     |   64 ++-
 include/configs/am3517_evm.h                       |   64 ++-
 include/configs/apollon.h                          |    4 -
 include/configs/cm_t35.h                           |    8 -
 include/configs/da850_am18xxevm.h                  |    1 +
 include/configs/da850evm.h                         |    1 +
 include/configs/davinci_dm6467Tevm.h               |    1 +
 include/configs/devkit8000.h                       |   14 +-
 include/configs/dig297.h                           |    4 -
 include/configs/enbw_cmc.h                         |  451 +++++++++++++++
 include/configs/hawkboard.h                        |    1 +
 include/configs/igep0020.h                         |    4 -
 include/configs/igep0030.h                         |    4 -
 include/configs/omap3_beagle.h                     |   71 ++-
 include/configs/omap3_evm.h                        |   35 ++-
 include/configs/omap3_evm_common.h                 |   41 +-
 include/configs/omap3_evm_quick_mmc.h              |   10 +
 include/configs/omap3_evm_quick_nand.h             |   22 +
 include/configs/omap3_mvblx.h                      |   10 +-
 include/configs/omap3_overo.h                      |   10 +-
 include/configs/omap3_pandora.h                    |   10 +-
 include/configs/omap3_sdp3430.h                    |   10 +-
 include/configs/omap3_zoom1.h                      |   10 +-
 include/configs/omap3_zoom2.h                      |   10 +-
 include/configs/omap4_common.h                     |   20 +-
 include/configs/omap5_evm.h                        |   19 +-
 nand_spl/board/davinci/da8xxevm/Makefile           |   20 +-
 tools/omap/clocks_get_m_n.c                        |  187 +++---
 95 files changed, 2923 insertions(+), 1199 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/cache.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c
 rename {board/davinci/common => arch/arm/cpu/arm926ejs/davinci}/misc.c (90%)
 rename board/davinci/common/davinci_pinmux.c =>
arch/arm/cpu/arm926ejs/davinci/pinmux.c (100%)
 create mode 100644 arch/arm/cpu/armv7/omap3/emac.c
 create mode 100644 arch/arm/cpu/armv7/omap3/spl_id_nand.c
 create mode 100644 arch/arm/include/asm/arch-davinci/pinmux_defs.h
 create mode 100644 arch/arm/include/asm/arch-omap3/emac_defs.h
 rename board/{davinci/common => enbw/enbw_cmc}/Makefile (88%)
 create mode 100644 board/enbw/enbw_cmc/enbw_cmc.c
 delete mode 100644 board/logicpd/am3517evm/config.mk
 delete mode 100644 board/ti/am3517crane/config.mk
 delete mode 100644 board/ti/beagle/config.mk
 delete mode 100644 board/ti/evm/config.mk
 create mode 100644 drivers/net/davinci_emac.h
 create mode 100644 include/configs/enbw_cmc.h

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-17 13:55 ` Albert ARIBAUD
@ 2011-11-17 14:56   ` Kumar Gala
  0 siblings, 0 replies; 324+ messages in thread
From: Kumar Gala @ 2011-11-17 14:56 UTC (permalink / raw)
  To: u-boot


On Nov 17, 2011, at 7:55 AM, Albert ARIBAUD wrote:

> Hi Sandeep,
> 
> Le 16/11/2011 16:24, s-paulraj at ti.com a ?crit :
>> The following changes since commit 75acc4d7c1c9081e06d1197c6da01361cf1bce92:
>>   Heiko Schocher (1):
>>         arm, davinci: add DAVINCI_MMC_CLKID
>> 
>> are available in the git repository at:
>> 
>>   git://git.denx.de/u-boot-ti.git master
>> 
>> Sanjeev Premi (2):
>>       part_efi: Fix compile errors
>>       omap3evm: Add support for EFI partitions
>> 
>>  disk/part_efi.c             |    6 +++---
>>  include/configs/omap3_evm.h |    1 +
>>  2 files changed, 4 insertions(+), 3 deletions(-)
> 
> Applied to u-boot-arm/master, thanks!

Guys, can you please cleanup patchworks for all the ARM patches and other ARM sub-maintainers:

http://patchwork.ozlabs.org/project/uboot/list/

- k

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-16 15:24 s-paulraj at ti.com
@ 2011-11-17 13:55 ` Albert ARIBAUD
  2011-11-17 14:56   ` Kumar Gala
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-17 13:55 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 16/11/2011 16:24, s-paulraj at ti.com a ?crit :
> The following changes since commit 75acc4d7c1c9081e06d1197c6da01361cf1bce92:
>    Heiko Schocher (1):
>          arm, davinci: add DAVINCI_MMC_CLKID
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Sanjeev Premi (2):
>        part_efi: Fix compile errors
>        omap3evm: Add support for EFI partitions
>
>   disk/part_efi.c             |    6 +++---
>   include/configs/omap3_evm.h |    1 +
>   2 files changed, 4 insertions(+), 3 deletions(-)

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-16 15:24 s-paulraj at ti.com
  2011-11-17 13:55 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-16 15:24 UTC (permalink / raw)
  To: u-boot

The following changes since commit 75acc4d7c1c9081e06d1197c6da01361cf1bce92:
  Heiko Schocher (1):
        arm, davinci: add DAVINCI_MMC_CLKID

are available in the git repository at:

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

Sanjeev Premi (2):
      part_efi: Fix compile errors
      omap3evm: Add support for EFI partitions

 disk/part_efi.c             |    6 +++---
 include/configs/omap3_evm.h |    1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-15 15:11 s-paulraj at ti.com
@ 2011-11-15 21:27 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-15 21:27 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 15/11/2011 16:11, s-paulraj at ti.com a ?crit :
> The following changes since commit 06194b6b65f701a9d6ef2d9b4123c4afe57d8783:
>    Nagabhushana Netagunte (1):
>          da850: add new config file for AM18xx
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Heiko Schocher (3):
>        arm, davinci: da850/dm365 lowlevel cleanup
>        arm, davinci_emac: fix driver bug if more then 3 PHYs are detected
>        arm, davinci: add DAVINCI_MMC_CLKID
>
> Sricharan (7):
>        omap4: make omap4 code common for future reuse
>        omap: Checkpatch fixes
>        omap5: Add minimal support for omap5430.
>        omap5: clocks: Add clocks support for omap5 platform.
>        omap5: emif: Add emif/ddr configurations required for omap5 evm
>        omap4/5: Add support for booting with CH.
>        omap5: Add omap5_evm board build support.
>
>   MAINTAINERS                                        |    1 +
>   Makefile                                           |    9 +-
>   README                                             |    6 +
>   arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |  122 +--
>   arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |   73 +-
>   arch/arm/cpu/armv7/omap-common/Makefile            |   13 +
>   arch/arm/cpu/armv7/omap-common/clocks-common.c     |  609 +++++++++++
>   arch/arm/cpu/armv7/omap-common/emif-common.c       | 1140 ++++++++++++++++++++
>   arch/arm/cpu/armv7/omap-common/hwinit-common.c     |  267 +++++
>   .../armv7/{omap4 =>  omap-common}/lowlevel_init.S   |   37 +-
>   .../{omap4/mem.c =>  omap-common/mem-common.c}      |    0
>   arch/arm/cpu/armv7/omap-common/spl.c               |    9 +-
>   arch/arm/cpu/armv7/omap4/Makefile                  |   11 +-
>   arch/arm/cpu/armv7/omap4/board.c                   |  384 -------
>   arch/arm/cpu/armv7/omap4/clocks.c                  |  628 ++---------
>   arch/arm/cpu/armv7/omap4/emif.c                    | 1135 +-------------------
>   arch/arm/cpu/armv7/omap4/hwinit.c                  |  167 +++
>   arch/arm/cpu/armv7/omap4/omap4_mux_data.h          |   83 --
>   arch/arm/cpu/armv7/omap4/sdram_elpida.c            |    2 +-
>   arch/arm/cpu/armv7/omap4/sys_info.c                |   53 -
>   arch/arm/cpu/armv7/omap5/Makefile                  |   48 +
>   arch/arm/cpu/armv7/omap5/clocks.c                  |  432 ++++++++
>   arch/arm/cpu/armv7/omap5/config.mk                 |   28 +
>   arch/arm/cpu/armv7/omap5/emif.c                    |  105 ++
>   arch/arm/cpu/armv7/omap5/hwinit.c                  |   78 ++
>   arch/arm/cpu/armv7/omap5/sdram_elpida.c            |  178 +++
>   arch/arm/include/asm/arch-davinci/aintc_defs.h     |    2 +
>   arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    2 +-
>   arch/arm/include/asm/arch-davinci/ddr2_defs.h      |    4 +
>   arch/arm/include/asm/arch-davinci/emif_defs.h      |    1 +
>   arch/arm/include/asm/arch-davinci/hardware.h       |   21 +
>   arch/arm/include/asm/arch-davinci/pll_defs.h       |   14 +
>   arch/arm/include/asm/arch-omap3/mmc_host_def.h     |   11 +-
>   arch/arm/include/asm/arch-omap4/clocks.h           |   23 +
>   arch/arm/include/asm/arch-omap4/emif.h             | 1021 ------------------
>   arch/arm/include/asm/arch-omap4/mmc_host_def.h     |   11 +-
>   .../arm/include/asm/arch-omap4/{omap4.h =>  omap.h} |   46 +-
>   arch/arm/include/asm/arch-omap4/sys_proto.h        |   38 +-
>   arch/arm/include/asm/arch-omap5/clocks.h           |  722 +++++++++++++
>   arch/arm/include/asm/arch-omap5/cpu.h              |  175 +++
>   arch/arm/include/asm/arch-omap5/gpio.h             |   50 +
>   arch/arm/include/asm/arch-omap5/i2c.h              |   74 ++
>   arch/arm/include/asm/arch-omap5/mmc_host_def.h     |  174 +++
>   arch/arm/include/asm/arch-omap5/mux_omap5.h        |  344 ++++++
>   .../asm/{arch-omap4/omap4.h =>  arch-omap5/omap.h}  |  104 +-
>   arch/arm/include/asm/arch-omap5/sys_proto.h        |  122 +++
>   arch/arm/include/asm/armv7.h                       |    3 +
>   arch/arm/include/asm/emif.h                        | 1035 ++++++++++++++++++
>   arch/arm/include/asm/mach-types.h                  |   13 +
>   arch/arm/include/asm/omap_common.h                 |   31 +-
>   board/ti/omap5_evm/Makefile                        |   49 +
>   board/ti/omap5_evm/evm.c                           |  101 ++
>   board/ti/omap5_evm/mux_data.h                      |  275 +++++
>   board/ti/panda/Makefile                            |    2 -
>   board/ti/panda/panda.c                             |   27 +-
>   board/ti/panda/panda_mux_data.h                    |   54 +-
>   board/ti/sdp4430/Makefile                          |    4 +-
>   board/ti/sdp4430/sdp.c                             |   27 +-
>   board/ti/sdp4430/sdp4430_mux_data.h                |   53 +-
>   boards.cfg                                         |    1 +
>   drivers/mmc/omap_hsmmc.c                           |   26 +-
>   drivers/net/davinci_emac.c                         |   24 +-
>   include/configs/omap4_common.h                     |    7 +-
>   include/configs/omap5_evm.h                        |  284 +++++
>   spl/Makefile                                       |    3 +
>   65 files changed, 7108 insertions(+), 3488 deletions(-)
>   create mode 100644 arch/arm/cpu/armv7/omap-common/clocks-common.c
>   create mode 100644 arch/arm/cpu/armv7/omap-common/emif-common.c
>   create mode 100644 arch/arm/cpu/armv7/omap-common/hwinit-common.c
>   rename arch/arm/cpu/armv7/{omap4 =>  omap-common}/lowlevel_init.S (76%)
>   rename arch/arm/cpu/armv7/{omap4/mem.c =>  omap-common/mem-common.c} (100%)
>   delete mode 100644 arch/arm/cpu/armv7/omap4/board.c
>   create mode 100644 arch/arm/cpu/armv7/omap4/hwinit.c
>   delete mode 100644 arch/arm/cpu/armv7/omap4/omap4_mux_data.h
>   delete mode 100644 arch/arm/cpu/armv7/omap4/sys_info.c
>   create mode 100644 arch/arm/cpu/armv7/omap5/Makefile
>   create mode 100644 arch/arm/cpu/armv7/omap5/clocks.c
>   create mode 100644 arch/arm/cpu/armv7/omap5/config.mk
>   create mode 100644 arch/arm/cpu/armv7/omap5/emif.c
>   create mode 100644 arch/arm/cpu/armv7/omap5/hwinit.c
>   create mode 100644 arch/arm/cpu/armv7/omap5/sdram_elpida.c
>   delete mode 100644 arch/arm/include/asm/arch-omap4/emif.h
>   copy arch/arm/include/asm/arch-omap4/{omap4.h =>  omap.h} (87%)
>   create mode 100644 arch/arm/include/asm/arch-omap5/clocks.h
>   create mode 100644 arch/arm/include/asm/arch-omap5/cpu.h
>   create mode 100644 arch/arm/include/asm/arch-omap5/gpio.h
>   create mode 100644 arch/arm/include/asm/arch-omap5/i2c.h
>   create mode 100644 arch/arm/include/asm/arch-omap5/mmc_host_def.h
>   create mode 100644 arch/arm/include/asm/arch-omap5/mux_omap5.h
>   rename arch/arm/include/asm/{arch-omap4/omap4.h =>  arch-omap5/omap.h} (65%)
>   create mode 100644 arch/arm/include/asm/arch-omap5/sys_proto.h
>   create mode 100644 arch/arm/include/asm/emif.h
>   create mode 100644 board/ti/omap5_evm/Makefile
>   create mode 100644 board/ti/omap5_evm/evm.c
>   create mode 100644 board/ti/omap5_evm/mux_data.h
>   create mode 100644 include/configs/omap5_evm.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-15 15:11 s-paulraj at ti.com
  2011-11-15 21:27 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-15 15:11 UTC (permalink / raw)
  To: u-boot

The following changes since commit 06194b6b65f701a9d6ef2d9b4123c4afe57d8783:
  Nagabhushana Netagunte (1):
        da850: add new config file for AM18xx

are available in the git repository at:

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

Heiko Schocher (3):
      arm, davinci: da850/dm365 lowlevel cleanup
      arm, davinci_emac: fix driver bug if more then 3 PHYs are detected
      arm, davinci: add DAVINCI_MMC_CLKID

Sricharan (7):
      omap4: make omap4 code common for future reuse
      omap: Checkpatch fixes
      omap5: Add minimal support for omap5430.
      omap5: clocks: Add clocks support for omap5 platform.
      omap5: emif: Add emif/ddr configurations required for omap5 evm
      omap4/5: Add support for booting with CH.
      omap5: Add omap5_evm board build support.

 MAINTAINERS                                        |    1 +
 Makefile                                           |    9 +-
 README                                             |    6 +
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |  122 +--
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |   73 +-
 arch/arm/cpu/armv7/omap-common/Makefile            |   13 +
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |  609 +++++++++++
 arch/arm/cpu/armv7/omap-common/emif-common.c       | 1140 ++++++++++++++++++++
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |  267 +++++
 .../armv7/{omap4 => omap-common}/lowlevel_init.S   |   37 +-
 .../{omap4/mem.c => omap-common/mem-common.c}      |    0
 arch/arm/cpu/armv7/omap-common/spl.c               |    9 +-
 arch/arm/cpu/armv7/omap4/Makefile                  |   11 +-
 arch/arm/cpu/armv7/omap4/board.c                   |  384 -------
 arch/arm/cpu/armv7/omap4/clocks.c                  |  628 ++---------
 arch/arm/cpu/armv7/omap4/emif.c                    | 1135 +-------------------
 arch/arm/cpu/armv7/omap4/hwinit.c                  |  167 +++
 arch/arm/cpu/armv7/omap4/omap4_mux_data.h          |   83 --
 arch/arm/cpu/armv7/omap4/sdram_elpida.c            |    2 +-
 arch/arm/cpu/armv7/omap4/sys_info.c                |   53 -
 arch/arm/cpu/armv7/omap5/Makefile                  |   48 +
 arch/arm/cpu/armv7/omap5/clocks.c                  |  432 ++++++++
 arch/arm/cpu/armv7/omap5/config.mk                 |   28 +
 arch/arm/cpu/armv7/omap5/emif.c                    |  105 ++
 arch/arm/cpu/armv7/omap5/hwinit.c                  |   78 ++
 arch/arm/cpu/armv7/omap5/sdram_elpida.c            |  178 +++
 arch/arm/include/asm/arch-davinci/aintc_defs.h     |    2 +
 arch/arm/include/asm/arch-davinci/da850_lowlevel.h |    2 +-
 arch/arm/include/asm/arch-davinci/ddr2_defs.h      |    4 +
 arch/arm/include/asm/arch-davinci/emif_defs.h      |    1 +
 arch/arm/include/asm/arch-davinci/hardware.h       |   21 +
 arch/arm/include/asm/arch-davinci/pll_defs.h       |   14 +
 arch/arm/include/asm/arch-omap3/mmc_host_def.h     |   11 +-
 arch/arm/include/asm/arch-omap4/clocks.h           |   23 +
 arch/arm/include/asm/arch-omap4/emif.h             | 1021 ------------------
 arch/arm/include/asm/arch-omap4/mmc_host_def.h     |   11 +-
 .../arm/include/asm/arch-omap4/{omap4.h => omap.h} |   46 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |   38 +-
 arch/arm/include/asm/arch-omap5/clocks.h           |  722 +++++++++++++
 arch/arm/include/asm/arch-omap5/cpu.h              |  175 +++
 arch/arm/include/asm/arch-omap5/gpio.h             |   50 +
 arch/arm/include/asm/arch-omap5/i2c.h              |   74 ++
 arch/arm/include/asm/arch-omap5/mmc_host_def.h     |  174 +++
 arch/arm/include/asm/arch-omap5/mux_omap5.h        |  344 ++++++
 .../asm/{arch-omap4/omap4.h => arch-omap5/omap.h}  |  104 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h        |  122 +++
 arch/arm/include/asm/armv7.h                       |    3 +
 arch/arm/include/asm/emif.h                        | 1035 ++++++++++++++++++
 arch/arm/include/asm/mach-types.h                  |   13 +
 arch/arm/include/asm/omap_common.h                 |   31 +-
 board/ti/omap5_evm/Makefile                        |   49 +
 board/ti/omap5_evm/evm.c                           |  101 ++
 board/ti/omap5_evm/mux_data.h                      |  275 +++++
 board/ti/panda/Makefile                            |    2 -
 board/ti/panda/panda.c                             |   27 +-
 board/ti/panda/panda_mux_data.h                    |   54 +-
 board/ti/sdp4430/Makefile                          |    4 +-
 board/ti/sdp4430/sdp.c                             |   27 +-
 board/ti/sdp4430/sdp4430_mux_data.h                |   53 +-
 boards.cfg                                         |    1 +
 drivers/mmc/omap_hsmmc.c                           |   26 +-
 drivers/net/davinci_emac.c                         |   24 +-
 include/configs/omap4_common.h                     |    7 +-
 include/configs/omap5_evm.h                        |  284 +++++
 spl/Makefile                                       |    3 +
 65 files changed, 7108 insertions(+), 3488 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/omap-common/clocks-common.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/emif-common.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/hwinit-common.c
 rename arch/arm/cpu/armv7/{omap4 => omap-common}/lowlevel_init.S (76%)
 rename arch/arm/cpu/armv7/{omap4/mem.c => omap-common/mem-common.c} (100%)
 delete mode 100644 arch/arm/cpu/armv7/omap4/board.c
 create mode 100644 arch/arm/cpu/armv7/omap4/hwinit.c
 delete mode 100644 arch/arm/cpu/armv7/omap4/omap4_mux_data.h
 delete mode 100644 arch/arm/cpu/armv7/omap4/sys_info.c
 create mode 100644 arch/arm/cpu/armv7/omap5/Makefile
 create mode 100644 arch/arm/cpu/armv7/omap5/clocks.c
 create mode 100644 arch/arm/cpu/armv7/omap5/config.mk
 create mode 100644 arch/arm/cpu/armv7/omap5/emif.c
 create mode 100644 arch/arm/cpu/armv7/omap5/hwinit.c
 create mode 100644 arch/arm/cpu/armv7/omap5/sdram_elpida.c
 delete mode 100644 arch/arm/include/asm/arch-omap4/emif.h
 copy arch/arm/include/asm/arch-omap4/{omap4.h => omap.h} (87%)
 create mode 100644 arch/arm/include/asm/arch-omap5/clocks.h
 create mode 100644 arch/arm/include/asm/arch-omap5/cpu.h
 create mode 100644 arch/arm/include/asm/arch-omap5/gpio.h
 create mode 100644 arch/arm/include/asm/arch-omap5/i2c.h
 create mode 100644 arch/arm/include/asm/arch-omap5/mmc_host_def.h
 create mode 100644 arch/arm/include/asm/arch-omap5/mux_omap5.h
 rename arch/arm/include/asm/{arch-omap4/omap4.h => arch-omap5/omap.h} (65%)
 create mode 100644 arch/arm/include/asm/arch-omap5/sys_proto.h
 create mode 100644 arch/arm/include/asm/emif.h
 create mode 100644 board/ti/omap5_evm/Makefile
 create mode 100644 board/ti/omap5_evm/evm.c
 create mode 100644 board/ti/omap5_evm/mux_data.h
 create mode 100644 include/configs/omap5_evm.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-09 22:04 s-paulraj at ti.com
@ 2011-11-10 15:36 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-10 15:36 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 09/11/2011 23:04, s-paulraj at ti.com a ?crit :
> The following changes since commit 41ea37a654f0e0cab0a19f7b96beae8995618cf4:
>    David M??ller (ELSOFT AG) (1):
>          ARM: remove superfluous setting of arch_number in board specific code.

Note: it seems your machine's support for UTF-8 is not perfect.

> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Alexander Holler (1):
>        BeagleBoard: config: Switch to ttyO2
>
> Nagabhushana Netagunte (1):
>        da850: add new config file for AM18xx
>
> Tom Rini (2):
>        devkit8000: Fix NAND SPL on boards with 256MB NAND
>        OMAP3: Change omap3_evm maintainer
>
>   MAINTAINERS                       |    8 +-
>   boards.cfg                        |    1 +
>   include/configs/da850_am18xxevm.h |  245 +++++++++++++++++++++++++++++++++++++
>   include/configs/devkit8000.h      |    1 +
>   include/configs/omap3_beagle.h    |    2 +-
>   5 files changed, 252 insertions(+), 5 deletions(-)
>   create mode 100644 include/configs/da850_am18xxevm.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-09 22:04 s-paulraj at ti.com
  2011-11-10 15:36 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-09 22:04 UTC (permalink / raw)
  To: u-boot

The following changes since commit 41ea37a654f0e0cab0a19f7b96beae8995618cf4:
  David M??ller (ELSOFT AG) (1):
        ARM: remove superfluous setting of arch_number in board specific code.

are available in the git repository at:

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

Alexander Holler (1):
      BeagleBoard: config: Switch to ttyO2

Nagabhushana Netagunte (1):
      da850: add new config file for AM18xx

Tom Rini (2):
      devkit8000: Fix NAND SPL on boards with 256MB NAND
      OMAP3: Change omap3_evm maintainer

 MAINTAINERS                       |    8 +-
 boards.cfg                        |    1 +
 include/configs/da850_am18xxevm.h |  245 +++++++++++++++++++++++++++++++++++++
 include/configs/devkit8000.h      |    1 +
 include/configs/omap3_beagle.h    |    2 +-
 5 files changed, 252 insertions(+), 5 deletions(-)
 create mode 100644 include/configs/da850_am18xxevm.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-08 14:05 s-paulraj at ti.com
@ 2011-11-08 19:41 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-08 19:41 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 08/11/2011 15:05, s-paulraj at ti.com a ?crit :
> The following changes since commit c686537f34268ffd6d87e3b8b14d1118b221a995:
>    David M??ller (ELSOFT AG) (1):
>          ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Christian Riesch (3):
>        arm, davinci: Rename AM1808 lowlevel functions to DA850
>        arm, davinci: Remove the duplication of LPSC functions
>        arm, davinci: Fix setting of the SDRAM configuration register
>
> Manjunath Hadli (2):
>        dm646x: add new configuration for dm6467T
>        dm646x: pass board revision info to kernel
>
> Prabhakar Lad (1):
>        da8xxevm: fix build error
>
>   arch/arm/cpu/arm926ejs/davinci/Makefile            |    2 +-
>   .../{am1808_lowlevel.c =>  da850_lowlevel.c}        |  223 +++++++-------------
>   .../{am1808_lowlevel.h =>  da850_lowlevel.h}        |   26 ++--
>   arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
>   board/davinci/dm6467evm/dm6467evm.c                |   20 ++
>   boards.cfg                                         |    1 +
>   include/configs/davinci_dm6467Tevm.h               |  163 ++++++++++++++
>   include/configs/davinci_dm6467evm.h                |    1 +
>   8 files changed, 274 insertions(+), 163 deletions(-)
>   rename arch/arm/cpu/arm926ejs/davinci/{am1808_lowlevel.c =>  da850_lowlevel.c} (56%)
>   rename arch/arm/include/asm/arch-davinci/{am1808_lowlevel.h =>  da850_lowlevel.h} (63%)
>   create mode 100644 include/configs/davinci_dm6467Tevm.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-08 14:05 s-paulraj at ti.com
  2011-11-08 19:41 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-08 14:05 UTC (permalink / raw)
  To: u-boot

The following changes since commit c686537f34268ffd6d87e3b8b14d1118b221a995:
  David M??ller (ELSOFT AG) (1):
        ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE

are available in the git repository at:

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

Christian Riesch (3):
      arm, davinci: Rename AM1808 lowlevel functions to DA850
      arm, davinci: Remove the duplication of LPSC functions
      arm, davinci: Fix setting of the SDRAM configuration register

Manjunath Hadli (2):
      dm646x: add new configuration for dm6467T
      dm646x: pass board revision info to kernel

Prabhakar Lad (1):
      da8xxevm: fix build error

 arch/arm/cpu/arm926ejs/davinci/Makefile            |    2 +-
 .../{am1808_lowlevel.c => da850_lowlevel.c}        |  223 +++++++-------------
 .../{am1808_lowlevel.h => da850_lowlevel.h}        |   26 ++--
 arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
 board/davinci/dm6467evm/dm6467evm.c                |   20 ++
 boards.cfg                                         |    1 +
 include/configs/davinci_dm6467Tevm.h               |  163 ++++++++++++++
 include/configs/davinci_dm6467evm.h                |    1 +
 8 files changed, 274 insertions(+), 163 deletions(-)
 rename arch/arm/cpu/arm926ejs/davinci/{am1808_lowlevel.c => da850_lowlevel.c} (56%)
 rename arch/arm/include/asm/arch-davinci/{am1808_lowlevel.h => da850_lowlevel.h} (63%)
 create mode 100644 include/configs/davinci_dm6467Tevm.h

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-04 17:46 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-04 17:46 UTC (permalink / raw)
  To: u-boot

The following changes since commit 92e86c8daed649a9e9ddd6c0b52d61cb25b62c3a:
  Stefano Babic (1):
        Davinci: ea20: added PREBOOT to configuration

are available in the git repository at:

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

Luca Ceresoli (1):
      ARM: dig297: Define MACH_TYPE_OMAP3_CPS and CONFIG_MACH_TYPE

Sanjeev Premi (3):
      omap3: mem: Define and use common macros
      omap3: mem: Clean-up whitespaces
      omap3: mem: Move comments next to definitions

 arch/arm/include/asm/arch-omap3/mem.h |  217 ++++++++++++++++-----------------
 board/comelit/dig297/dig297.c         |    2 -
 include/configs/dig297.h              |    8 ++
 3 files changed, 115 insertions(+), 112 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 20:11 s-paulraj at ti.com
@ 2011-11-03 21:30 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-03 21:30 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 03/11/2011 21:11, s-paulraj at ti.com a ?crit :
> The following changes since commit 6d66073614539d94dabff1f63ebd962840c44b81:
>    Thomas Herzmann (1):
>          arm/km: portl2 environment address update to P1B
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Bastian Ruppert (4):
>        Davinci: ea20: set console on UART0
>        Davinci: ea20: set GPIOs to hold MII-Phy in reset and set UART0-Switch for console
>        Davinci: ea20: add gpio for keeping power on in board_late_init
>        Davinci: ea20: add gpios for LCD backlight control
>
> Christian Riesch (1):
>        arm, davinci: Add function lpsc_syncreset()
>
> Heiko Schocher (13):
>        arm, davinci: replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
>        arm, arm926: fix missing symbols in NAND_SPL mode
>        usb, davinci: add enable_vbus() weak function
>        arm, usb, davinci: make USBPHY_CTL register configurable
>        net, davinci_emac: make clock divider in MDIO control register configurable
>        spl: add option for adding post memory test to the SPL framework
>        arm, davinci: add support for new spl framework
>        spl, nand: add 4bit HW ecc oob first nand_read_page function
>        arm, davinci: add header files for dm365
>        arm, davinci: add lowlevel function for dm365 soc
>        arm926ejs, davinci: add cpuinfo for dm365
>        arm926ejs, davinci: add missing spi defines for dm365
>        arm, davinci: add cam_enc_4xx support
>
> Ilya Yanok (2):
>        davinci_emac: compilation fix, phy is array now
>        omap/spl: actually enable the console
>
> Sanjeev Premi (7):
>        omap3evm: Set environment variable 'ethaddr'
>        omap3evm: Reorder related config options
>        omap3evm: Prepare to split configuration
>        omap3evm: move common config options to new file
>        omap3evm: Add (quick) configuration for MMC/SD only
>        omap3evm: Add (quick) configuration for NAND only
>        omap3evm: fix errors caused by multiple definitions
>
> Stefano Babic (8):
>        Davinci: ea20: Add NAND support
>        Davinci: ea20: Add early init to get early output from console
>        Davinci: ea20: Add default U-Boot environment
>        ARM: Davinci: added missing registers to hardware.h
>        VIDEO: davinci: add framebuffer to da8xx
>        Davinci: ea20: added video support
>        Davinci: ea20: added I2C support
>        Davinci: ea20: added PREBOOT to configuration

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 21:11           ` Paulraj, Sandeep
@ 2011-11-03 21:15             ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-03 21:15 UTC (permalink / raw)
  To: u-boot

Le 03/11/2011 22:11, Paulraj, Sandeep a ?crit :
>
>>
>> I will gladly do, as soon as you send out a formal pull request.
>>
>
> The mail server seems to be suffering from some delays

Got it, and apologies.

> --Sandeep

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 21:06         ` Albert ARIBAUD
@ 2011-11-03 21:11           ` Paulraj, Sandeep
  2011-11-03 21:15             ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-11-03 21:11 UTC (permalink / raw)
  To: u-boot


> 
> I will gladly do, as soon as you send out a formal pull request.
> 

The mail server seems to be suffering from some delays

--Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 20:13       ` Paulraj, Sandeep
@ 2011-11-03 21:06         ` Albert ARIBAUD
  2011-11-03 21:11           ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-03 21:06 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 03/11/2011 21:13, Paulraj, Sandeep a ?crit :
>
>
>>
>> Branch u-boot-ti/master is based on u-boot/master whereas it should be
>> based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a
>> formal pull req based on u-boot-arm/master. Currently, that would be
>> commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2
>> environment address update to P1B").
>>
>
> Did just that!
> Can you please pull

I will gladly do, as soon as you send out a formal pull request.

> Regards,
> Sandeep


Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 18:17     ` Albert ARIBAUD
  2011-11-03 18:23       ` Tom Rini
@ 2011-11-03 20:13       ` Paulraj, Sandeep
  2011-11-03 21:06         ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-11-03 20:13 UTC (permalink / raw)
  To: u-boot



> 
> Branch u-boot-ti/master is based on u-boot/master whereas it should be
> based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a
> formal pull req based on u-boot-arm/master. Currently, that would be
> commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2
> environment address update to P1B").
> 

Did just that!
Can you please pull

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-03 20:11 s-paulraj at ti.com
  2011-11-03 21:30 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-03 20:11 UTC (permalink / raw)
  To: u-boot

The following changes since commit 6d66073614539d94dabff1f63ebd962840c44b81:
  Thomas Herzmann (1):
        arm/km: portl2 environment address update to P1B

are available in the git repository at:

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

Bastian Ruppert (4):
      Davinci: ea20: set console on UART0
      Davinci: ea20: set GPIOs to hold MII-Phy in reset and set UART0-Switch for console
      Davinci: ea20: add gpio for keeping power on in board_late_init
      Davinci: ea20: add gpios for LCD backlight control

Christian Riesch (1):
      arm, davinci: Add function lpsc_syncreset()

Heiko Schocher (13):
      arm, davinci: replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
      arm, arm926: fix missing symbols in NAND_SPL mode
      usb, davinci: add enable_vbus() weak function
      arm, usb, davinci: make USBPHY_CTL register configurable
      net, davinci_emac: make clock divider in MDIO control register configurable
      spl: add option for adding post memory test to the SPL framework
      arm, davinci: add support for new spl framework
      spl, nand: add 4bit HW ecc oob first nand_read_page function
      arm, davinci: add header files for dm365
      arm, davinci: add lowlevel function for dm365 soc
      arm926ejs, davinci: add cpuinfo for dm365
      arm926ejs, davinci: add missing spi defines for dm365
      arm, davinci: add cam_enc_4xx support

Ilya Yanok (2):
      davinci_emac: compilation fix, phy is array now
      omap/spl: actually enable the console

Sanjeev Premi (7):
      omap3evm: Set environment variable 'ethaddr'
      omap3evm: Reorder related config options
      omap3evm: Prepare to split configuration
      omap3evm: move common config options to new file
      omap3evm: Add (quick) configuration for MMC/SD only
      omap3evm: Add (quick) configuration for NAND only
      omap3evm: fix errors caused by multiple definitions

Stefano Babic (8):
      Davinci: ea20: Add NAND support
      Davinci: ea20: Add early init to get early output from console
      Davinci: ea20: Add default U-Boot environment
      ARM: Davinci: added missing registers to hardware.h
      VIDEO: davinci: add framebuffer to da8xx
      Davinci: ea20: added video support
      Davinci: ea20: added I2C support
      Davinci: ea20: added PREBOOT to configuration

 MAINTAINERS                                        |    1 +
 Makefile                                           |    8 +-
 README                                             |    5 +
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    5 +
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   27 +-
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |  439 ++++++++++
 arch/arm/cpu/arm926ejs/davinci/psc.c               |   20 +-
 arch/arm/cpu/arm926ejs/davinci/spl.c               |   63 ++
 arch/arm/cpu/arm926ejs/start.S                     |   31 +-
 arch/arm/cpu/armv7/omap-common/spl.c               |    2 +
 arch/arm/include/asm/arch-davinci/aintc_defs.h     |   50 ++
 arch/arm/include/asm/arch-davinci/da8xx-fb.h       |  126 +++
 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |   41 +
 arch/arm/include/asm/arch-davinci/hardware.h       |   27 +-
 arch/arm/include/asm/arch-davinci/pll_defs.h       |   84 ++
 arch/arm/include/asm/arch-davinci/psc_defs.h       |   86 ++
 arch/arm/include/asm/arch-davinci/syscfg_defs.h    |   66 ++
 board/ait/cam_enc_4xx/Makefile                     |   46 ++
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |  446 +++++++++++
 board/ait/cam_enc_4xx/config.mk                    |   15 +
 board/ait/cam_enc_4xx/u-boot-spl.lds               |   73 ++
 board/ait/cam_enc_4xx/ublimage.cfg                 |   48 ++
 board/davinci/common/misc.c                        |    2 +-
 board/davinci/ea20/ea20.c                          |  205 ++++-
 board/ti/evm/evm.c                                 |   15 +
 boards.cfg                                         |    3 +
 doc/README.SPL                                     |    2 +
 doc/README.davinci.nand_spl                        |  141 ++++
 drivers/mtd/nand/Makefile                          |    3 +
 drivers/mtd/nand/nand_spl_load.c                   |   56 ++
 drivers/mtd/nand/nand_spl_simple.c                 |   43 +-
 drivers/net/davinci_emac.c                         |   11 +-
 drivers/usb/musb/davinci.c                         |   20 +-
 drivers/video/Makefile                             |    1 +
 drivers/video/da8xx-fb.c                           |  846 ++++++++++++++++++++
 include/configs/cam_enc_4xx.h                      |  453 +++++++++++
 include/configs/ea20.h                             |  126 +++-
 include/configs/omap3_evm.h                        |  331 ++-------
 include/configs/omap3_evm_common.h                 |  292 +++++++
 include/configs/omap3_evm_quick_mmc.h              |   91 +++
 include/configs/omap3_evm_quick_nand.h             |   79 ++
 spl/Makefile                                       |    1 +
 tools/ublimage.h                                   |    2 +-
 43 files changed, 4098 insertions(+), 334 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/spl.c
 create mode 100644 arch/arm/include/asm/arch-davinci/aintc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/da8xx-fb.h
 create mode 100644 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h
 create mode 100644 arch/arm/include/asm/arch-davinci/pll_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/psc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/syscfg_defs.h
 create mode 100644 board/ait/cam_enc_4xx/Makefile
 create mode 100644 board/ait/cam_enc_4xx/cam_enc_4xx.c
 create mode 100644 board/ait/cam_enc_4xx/config.mk
 create mode 100644 board/ait/cam_enc_4xx/u-boot-spl.lds
 create mode 100644 board/ait/cam_enc_4xx/ublimage.cfg
 create mode 100644 doc/README.davinci.nand_spl
 create mode 100644 drivers/mtd/nand/nand_spl_load.c
 create mode 100644 drivers/video/da8xx-fb.c
 create mode 100644 include/configs/cam_enc_4xx.h
 create mode 100644 include/configs/omap3_evm_common.h
 create mode 100644 include/configs/omap3_evm_quick_mmc.h
 create mode 100644 include/configs/omap3_evm_quick_nand.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 17:24 ` Luca Ceresoli
  2011-11-03 17:52   ` Paulraj, Sandeep
  2011-11-03 18:26   ` Tom Rini
@ 2011-11-03 20:04   ` Tom Rini
  2 siblings, 0 replies; 324+ messages in thread
From: Tom Rini @ 2011-11-03 20:04 UTC (permalink / raw)
  To: u-boot

On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoli <luca.ceresoli@comelit.it> wrote:
> s-paulraj at ti.com wrote:
>> Albert,
>> ? ? ? Please pull u-boot-ti/master
>>
>> Regards,
>> Sandeep
>>
>>
>> The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>> ? ?Kyle Moffett (1):
>> ? ? ? ? ?e1000: Allow direct access to the E1000 SPI EEPROM device
>>
>> are available in the git repository at:
>>
>> ? ?git://git.denx.de/u-boot-ti.git master
>>
>
> Hi Sandeep,
> yesterday I sent two patches to make the dig297 board compile again
> after the mach-types sync. Did you receive them?
>
> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html

Can you condense these into a single patch please?  Thanks.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 18:26   ` Tom Rini
@ 2011-11-03 19:46     ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-03 19:46 UTC (permalink / raw)
  To: u-boot

Le 03/11/2011 19:26, Tom Rini a ?crit :
> On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoli<luca.ceresoli@comelit.it>  wrote:
>> s-paulraj at ti.com wrote:
>>> Albert,
>>>        Please pull u-boot-ti/master
>>>
>>> Regards,
>>> Sandeep
>>>
>>>
>>> The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>>>     Kyle Moffett (1):
>>>           e1000: Allow direct access to the E1000 SPI EEPROM device
>>>
>>> are available in the git repository at:
>>>
>>>     git://git.denx.de/u-boot-ti.git master
>>>
>>
>> Hi Sandeep,
>> yesterday I sent two patches to make the dig297 board compile again
>> after the mach-types sync. Did you receive them?
>>
>> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
>> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
>
> Sorry, for some reason I had thought Albert was collecting all of the
> MACH_TYPE fixups that had gone past.

I am, or will, but if you have picked some up already then I'll just 
apply these via your pull request and get on with the rest.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 17:24 ` Luca Ceresoli
  2011-11-03 17:52   ` Paulraj, Sandeep
@ 2011-11-03 18:26   ` Tom Rini
  2011-11-03 19:46     ` Albert ARIBAUD
  2011-11-03 20:04   ` Tom Rini
  2 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2011-11-03 18:26 UTC (permalink / raw)
  To: u-boot

On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoli <luca.ceresoli@comelit.it> wrote:
> s-paulraj at ti.com wrote:
>> Albert,
>> ? ? ? Please pull u-boot-ti/master
>>
>> Regards,
>> Sandeep
>>
>>
>> The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>> ? ?Kyle Moffett (1):
>> ? ? ? ? ?e1000: Allow direct access to the E1000 SPI EEPROM device
>>
>> are available in the git repository at:
>>
>> ? ?git://git.denx.de/u-boot-ti.git master
>>
>
> Hi Sandeep,
> yesterday I sent two patches to make the dig297 board compile again
> after the mach-types sync. Did you receive them?
>
> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html

Sorry, for some reason I had thought Albert was collecting all of the
MACH_TYPE fixups that had gone past.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 18:17     ` Albert ARIBAUD
@ 2011-11-03 18:23       ` Tom Rini
  2011-11-03 20:13       ` Paulraj, Sandeep
  1 sibling, 0 replies; 324+ messages in thread
From: Tom Rini @ 2011-11-03 18:23 UTC (permalink / raw)
  To: u-boot

On Thu, Nov 3, 2011 at 11:17 AM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Sandeep,
>
> Le 03/11/2011 18:52, Paulraj, Sandeep a ?crit :
>>
>>
>>> Subject: Re: [U-Boot] Please pull u-boot-ti/master
>>>
>>> s-paulraj at ti.com wrote:
>>>> Albert,
>>>> ? ? Please pull u-boot-ti/master
>>>>
>>>> Regards,
>>>> Sandeep
>>>>
>>>>
>>>> The following changes since commit
>>> ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>>>> ? ? Kyle Moffett (1):
>>>> ? ? ? ? ? e1000: Allow direct access to the E1000 SPI EEPROM device
>>>>
>>>> are available in the git repository at:
>>>>
>>>> ? ? git://git.denx.de/u-boot-ti.git master
>>>>
>>>
>>> Hi Sandeep,
>>> yesterday I sent two patches to make the dig297 board compile again
>>> after the mach-types sync. Did you receive them?
>>>
>>> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
>>> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
>>
>> Hi Luca,
>>
>> Pushed to u-boot-ti master
>>
>> Hi Albert,
>>
>> Can you please pick up these 2 as well from my master.
>
> Branch u-boot-ti/master is based on u-boot/master whereas it should be
> based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a
> formal pull req based on u-boot-arm/master. Currently, that would be
> commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2
> environment address update to P1B").

Sorry, my fault there.  It looks like it'll be a real easy rebase at least.

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 17:52   ` Paulraj, Sandeep
  2011-11-03 18:05     ` Wolfgang Denk
@ 2011-11-03 18:17     ` Albert ARIBAUD
  2011-11-03 18:23       ` Tom Rini
  2011-11-03 20:13       ` Paulraj, Sandeep
  1 sibling, 2 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-11-03 18:17 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 03/11/2011 18:52, Paulraj, Sandeep a ?crit :
>
>
>> Subject: Re: [U-Boot] Please pull u-boot-ti/master
>>
>> s-paulraj at ti.com wrote:
>>> Albert,
>>> 	Please pull u-boot-ti/master
>>>
>>> Regards,
>>> Sandeep
>>>
>>>
>>> The following changes since commit
>> ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>>>     Kyle Moffett (1):
>>>           e1000: Allow direct access to the E1000 SPI EEPROM device
>>>
>>> are available in the git repository at:
>>>
>>>     git://git.denx.de/u-boot-ti.git master
>>>
>>
>> Hi Sandeep,
>> yesterday I sent two patches to make the dig297 board compile again
>> after the mach-types sync. Did you receive them?
>>
>> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
>> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
>
> Hi Luca,
>
> Pushed to u-boot-ti master
>
> Hi Albert,
>
> Can you please pick up these 2 as well from my master.

Branch u-boot-ti/master is based on u-boot/master whereas it should be 
based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a 
formal pull req based on u-boot-arm/master. Currently, that would be 
commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2 
environment address update to P1B").

> Regards,
> Sandeep

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 17:52   ` Paulraj, Sandeep
@ 2011-11-03 18:05     ` Wolfgang Denk
  2011-11-03 18:17     ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2011-11-03 18:05 UTC (permalink / raw)
  To: u-boot

Dear Sandeep,

In message <BE04C0A3BEC7354A8BCE3DB869F4D4930A0A36@DLEE08.ent.ti.com> you wrote:
> 
> Pushed to u-boot-ti master
> 
> Hi Albert,
> 
> Can you please pick up these 2 as well from my master.

Umm, no.  Can you please send a formal pull request?

Also, what about all the other TI related patches that have been
queued for a long time?

Is there hope you will find time to resume processing this backlog?

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
A Freudian slip is when you say one thing but mean your mother.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 17:24 ` Luca Ceresoli
@ 2011-11-03 17:52   ` Paulraj, Sandeep
  2011-11-03 18:05     ` Wolfgang Denk
  2011-11-03 18:17     ` Albert ARIBAUD
  2011-11-03 18:26   ` Tom Rini
  2011-11-03 20:04   ` Tom Rini
  2 siblings, 2 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-11-03 17:52 UTC (permalink / raw)
  To: u-boot



> Subject: Re: [U-Boot] Please pull u-boot-ti/master
> 
> s-paulraj at ti.com wrote:
> > Albert,
> > 	Please pull u-boot-ti/master
> >
> > Regards,
> > Sandeep
> >
> >
> > The following changes since commit
> ce5207e191c59b3135303fd03b98dd2ac3701ba2:
> >    Kyle Moffett (1):
> >          e1000: Allow direct access to the E1000 SPI EEPROM device
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> 
> Hi Sandeep,
> yesterday I sent two patches to make the dig297 board compile again
> after the mach-types sync. Did you receive them?
> 
> http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
> http://lists.denx.de/pipermail/u-boot/2011-November/108001.html

Hi Luca,

Pushed to u-boot-ti master

Hi Albert,

Can you please pick up these 2 as well from my master.

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2011-11-03 16:54 s-paulraj at ti.com
@ 2011-11-03 17:24 ` Luca Ceresoli
  2011-11-03 17:52   ` Paulraj, Sandeep
                     ` (2 more replies)
  0 siblings, 3 replies; 324+ messages in thread
From: Luca Ceresoli @ 2011-11-03 17:24 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> Albert,
> 	Please pull u-boot-ti/master
>
> Regards,
> Sandeep
>
>
> The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
>    Kyle Moffett (1):
>          e1000: Allow direct access to the E1000 SPI EEPROM device
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>

Hi Sandeep,
yesterday I sent two patches to make the dig297 board compile again
after the mach-types sync. Did you receive them?

http://lists.denx.de/pipermail/u-boot/2011-November/108000.html
http://lists.denx.de/pipermail/u-boot/2011-November/108001.html

Thanks,
Luca

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-11-03 16:54 s-paulraj at ti.com
  2011-11-03 17:24 ` Luca Ceresoli
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-11-03 16:54 UTC (permalink / raw)
  To: u-boot

Albert,
	Please pull u-boot-ti/master

Regards,
Sandeep


The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
  Kyle Moffett (1):
        e1000: Allow direct access to the E1000 SPI EEPROM device

are available in the git repository at:

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

Bastian Ruppert (4):
      Davinci: ea20: set console on UART0
      Davinci: ea20: set GPIOs to hold MII-Phy in reset and set UART0-Switch for console
      Davinci: ea20: add gpio for keeping power on in board_late_init
      Davinci: ea20: add gpios for LCD backlight control

Christian Riesch (1):
      arm, davinci: Add function lpsc_syncreset()

Heiko Schocher (13):
      arm, davinci: replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
      arm, arm926: fix missing symbols in NAND_SPL mode
      usb, davinci: add enable_vbus() weak function
      arm, usb, davinci: make USBPHY_CTL register configurable
      net, davinci_emac: make clock divider in MDIO control register configurable
      spl: add option for adding post memory test to the SPL framework
      arm, davinci: add support for new spl framework
      spl, nand: add 4bit HW ecc oob first nand_read_page function
      arm, davinci: add header files for dm365
      arm, davinci: add lowlevel function for dm365 soc
      arm926ejs, davinci: add cpuinfo for dm365
      arm926ejs, davinci: add missing spi defines for dm365
      arm, davinci: add cam_enc_4xx support

Ilya Yanok (2):
      davinci_emac: compilation fix, phy is array now
      omap/spl: actually enable the console

Sanjeev Premi (7):
      omap3evm: Set environment variable 'ethaddr'
      omap3evm: Reorder related config options
      omap3evm: Prepare to split configuration
      omap3evm: move common config options to new file
      omap3evm: Add (quick) configuration for MMC/SD only
      omap3evm: Add (quick) configuration for NAND only
      omap3evm: fix errors caused by multiple definitions

Stefano Babic (8):
      Davinci: ea20: Add NAND support
      Davinci: ea20: Add early init to get early output from console
      Davinci: ea20: Add default U-Boot environment
      ARM: Davinci: added missing registers to hardware.h
      VIDEO: davinci: add framebuffer to da8xx
      Davinci: ea20: added video support
      Davinci: ea20: added I2C support
      Davinci: ea20: added PREBOOT to configuration

 MAINTAINERS                                        |    1 +
 Makefile                                           |    8 +-
 README                                             |    5 +
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    5 +
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   27 +-
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |  439 ++++++++++
 arch/arm/cpu/arm926ejs/davinci/psc.c               |   20 +-
 arch/arm/cpu/arm926ejs/davinci/spl.c               |   63 ++
 arch/arm/cpu/arm926ejs/start.S                     |   31 +-
 arch/arm/cpu/armv7/omap-common/spl.c               |    2 +
 arch/arm/include/asm/arch-davinci/aintc_defs.h     |   50 ++
 arch/arm/include/asm/arch-davinci/da8xx-fb.h       |  126 +++
 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |   41 +
 arch/arm/include/asm/arch-davinci/hardware.h       |   27 +-
 arch/arm/include/asm/arch-davinci/pll_defs.h       |   84 ++
 arch/arm/include/asm/arch-davinci/psc_defs.h       |   86 ++
 arch/arm/include/asm/arch-davinci/syscfg_defs.h    |   66 ++
 board/ait/cam_enc_4xx/Makefile                     |   46 ++
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |  446 +++++++++++
 board/ait/cam_enc_4xx/config.mk                    |   15 +
 board/ait/cam_enc_4xx/u-boot-spl.lds               |   73 ++
 board/ait/cam_enc_4xx/ublimage.cfg                 |   48 ++
 board/davinci/common/misc.c                        |    2 +-
 board/davinci/ea20/ea20.c                          |  205 ++++-
 board/ti/evm/evm.c                                 |   15 +
 boards.cfg                                         |    3 +
 doc/README.SPL                                     |    2 +
 doc/README.davinci.nand_spl                        |  141 ++++
 drivers/mtd/nand/Makefile                          |    3 +
 drivers/mtd/nand/nand_spl_load.c                   |   56 ++
 drivers/mtd/nand/nand_spl_simple.c                 |   43 +-
 drivers/net/davinci_emac.c                         |   11 +-
 drivers/usb/musb/davinci.c                         |   20 +-
 drivers/video/Makefile                             |    1 +
 drivers/video/da8xx-fb.c                           |  846 ++++++++++++++++++++
 include/configs/cam_enc_4xx.h                      |  453 +++++++++++
 include/configs/ea20.h                             |  126 +++-
 include/configs/omap3_evm.h                        |  331 ++-------
 include/configs/omap3_evm_common.h                 |  292 +++++++
 include/configs/omap3_evm_quick_mmc.h              |   91 +++
 include/configs/omap3_evm_quick_nand.h             |   79 ++
 spl/Makefile                                       |    1 +
 tools/ublimage.h                                   |    2 +-
 43 files changed, 4098 insertions(+), 334 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/spl.c
 create mode 100644 arch/arm/include/asm/arch-davinci/aintc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/da8xx-fb.h
 create mode 100644 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h
 create mode 100644 arch/arm/include/asm/arch-davinci/pll_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/psc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/syscfg_defs.h
 create mode 100644 board/ait/cam_enc_4xx/Makefile
 create mode 100644 board/ait/cam_enc_4xx/cam_enc_4xx.c
 create mode 100644 board/ait/cam_enc_4xx/config.mk
 create mode 100644 board/ait/cam_enc_4xx/u-boot-spl.lds
 create mode 100644 board/ait/cam_enc_4xx/ublimage.cfg
 create mode 100644 doc/README.davinci.nand_spl
 create mode 100644 drivers/mtd/nand/nand_spl_load.c
 create mode 100644 drivers/video/da8xx-fb.c
 create mode 100644 include/configs/cam_enc_4xx.h
 create mode 100644 include/configs/omap3_evm_common.h
 create mode 100644 include/configs/omap3_evm_quick_mmc.h
 create mode 100644 include/configs/omap3_evm_quick_nand.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 21:00         ` Tom Rini
@ 2011-10-21 21:48           ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-10-21 21:48 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 21/10/2011 23:00, Tom Rini a ?crit :
> On Fri, Oct 21, 2011 at 1:09 PM, Albert ARIBAUD
> <albert.u.boot@aribaud.net>  wrote:
>> Le 21/10/2011 22:04, Paulraj, Sandeep a ?crit :
>>>
>>>
>>>>
>>>> On 21.10.2011 20:12, Albert ARIBAUD wrote:
>>>>> Hi Sandeep,
>>>>>
>>>>> Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
>>>>>> Albert,
>>>>>>     Please pull u-boot-ti/master
>>>> ....
>>>>>
>>>>> Applied to u-boot-arm/master (with rebase, as the pull request was based
>>>>> on u-boot, not u-boot-arm), thanks!
>>>>
>>>> Just fyi: Using git head
>>>>
>>>> commit d775935e1f301c82bd4d9e4e5d060b3e3aaf0bfa
>>>> davinci: remove config.mk file from the sources
>>>>
>>>>    >    ./MAKEALL ARMV7
>>>> ...
>>>> Configuring for am335x_evm board...
>>>> board.c: In function 'board_init_f':
>>>> board.c:378: error: 'MACH_TYPE_TIAM335EVM' undeclared (first use in
>>>> this function)
>>>> board.c:378: error: (Each undeclared identifier is reported only once
>>>>
>>>> board.c:378: error: for each function it appears in.)
>
> Where's the right place to stow this value until we sync back up with
> a version that has the value?

Put it in the board's config file in include/configs/.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 20:09       ` Albert ARIBAUD
@ 2011-10-21 21:00         ` Tom Rini
  2011-10-21 21:48           ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Tom Rini @ 2011-10-21 21:00 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 21, 2011 at 1:09 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Le 21/10/2011 22:04, Paulraj, Sandeep a ?crit :
>>
>>
>>>
>>> On 21.10.2011 20:12, Albert ARIBAUD wrote:
>>>> Hi Sandeep,
>>>>
>>>> Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
>>>>> Albert,
>>>>> ? ?Please pull u-boot-ti/master
>>> ....
>>>>
>>>> Applied to u-boot-arm/master (with rebase, as the pull request was based
>>>> on u-boot, not u-boot-arm), thanks!
>>>
>>> Just fyi: Using git head
>>>
>>> commit d775935e1f301c82bd4d9e4e5d060b3e3aaf0bfa
>>> davinci: remove config.mk file from the sources
>>>
>>> ? > ?./MAKEALL ARMV7
>>> ...
>>> Configuring for am335x_evm board...
>>> board.c: In function 'board_init_f':
>>> board.c:378: error: 'MACH_TYPE_TIAM335EVM' undeclared (first use in
>>> this function)
>>> board.c:378: error: (Each undeclared identifier is reported only once
>>>
>>> board.c:378: error: for each function it appears in.)

Where's the right place to stow this value until we sync back up with
a version that has the value?

-- 
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 20:04     ` Paulraj, Sandeep
@ 2011-10-21 20:09       ` Albert ARIBAUD
  2011-10-21 21:00         ` Tom Rini
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-10-21 20:09 UTC (permalink / raw)
  To: u-boot

Le 21/10/2011 22:04, Paulraj, Sandeep a ?crit :
>
>
>>
>> On 21.10.2011 20:12, Albert ARIBAUD wrote:
>>> Hi Sandeep,
>>>
>>> Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
>>>> Albert,
>>>> 	Please pull u-boot-ti/master
>> ....
>>>
>>> Applied to u-boot-arm/master (with rebase, as the pull request was based
>>> on u-boot, not u-boot-arm), thanks!
>>
>> Just fyi: Using git head
>>
>> commit d775935e1f301c82bd4d9e4e5d060b3e3aaf0bfa
>> davinci: remove config.mk file from the sources
>>
>>   >  ./MAKEALL ARMV7
>> ...
>> Configuring for am335x_evm board...
>> board.c: In function 'board_init_f':
>> board.c:378: error: 'MACH_TYPE_TIAM335EVM' undeclared (first use in
>> this function)
>> board.c:378: error: (Each undeclared identifier is reported only once
>>
>> board.c:378: error: for each function it appears in.)
>> ...
>> Configuring for vision2 - Board: vision2, Options:
>> IMX_CONFIG=board/ttcontrol/vision2/imximage_hynix.cfg
>> board.c: In function 'board_init_f':
>>
>> board.c:378: error: 'MACH_TYPE_TTC_VISION2' undeclared (first use in
>> this function)
>> board.c:378: error: (Each undeclared identifier is reported only once
>>
>> board.c:378: error: for each function it appears in.)
>> ...
>> Configuring for dig297 board...
>>
>> dig297.c: In function 'board_init':
>>
>> dig297.c:95: error: 'MACH_TYPE_OMAP3_CPS' undeclared (first use in
>> this function)
>> dig297.c:95: error: (Each undeclared identifier is reported only once
>>
>> dig297.c:95: error: for each function it appears in.)
>> ...
>> Boards compiled: 34
>> Boards with warnings or errors: 3 ( am335x_evm vision2 dig297 )
>>
> http://git.denx.de/?p=u-boot/u-boot-arm.git;a=commitdiff;h=1524f613d8b5b2ec1a949121d2e615ceeb0ac42f
>
>
> The commit above breaks this

Thanks for reminding me: I will send out the mail to board maintainers 
tomorrow morning.

> --Sandeep

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 19:57   ` Dirk Behme
@ 2011-10-21 20:04     ` Paulraj, Sandeep
  2011-10-21 20:09       ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-10-21 20:04 UTC (permalink / raw)
  To: u-boot



> 
> On 21.10.2011 20:12, Albert ARIBAUD wrote:
> > Hi Sandeep,
> >
> > Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
> >> Albert,
> >> 	Please pull u-boot-ti/master
> ....
> >
> > Applied to u-boot-arm/master (with rebase, as the pull request was based
> > on u-boot, not u-boot-arm), thanks!
> 
> Just fyi: Using git head
> 
> commit d775935e1f301c82bd4d9e4e5d060b3e3aaf0bfa
> davinci: remove config.mk file from the sources
> 
>  > ./MAKEALL ARMV7
> ...
> Configuring for am335x_evm board...
> board.c: In function 'board_init_f':
> board.c:378: error: 'MACH_TYPE_TIAM335EVM' undeclared (first use in
> this function)
> board.c:378: error: (Each undeclared identifier is reported only once
> 
> board.c:378: error: for each function it appears in.)
> ...
> Configuring for vision2 - Board: vision2, Options:
> IMX_CONFIG=board/ttcontrol/vision2/imximage_hynix.cfg
> board.c: In function 'board_init_f':
> 
> board.c:378: error: 'MACH_TYPE_TTC_VISION2' undeclared (first use in
> this function)
> board.c:378: error: (Each undeclared identifier is reported only once
> 
> board.c:378: error: for each function it appears in.)
> ...
> Configuring for dig297 board...
> 
> dig297.c: In function 'board_init':
> 
> dig297.c:95: error: 'MACH_TYPE_OMAP3_CPS' undeclared (first use in
> this function)
> dig297.c:95: error: (Each undeclared identifier is reported only once
> 
> dig297.c:95: error: for each function it appears in.)
> ...
> Boards compiled: 34
> Boards with warnings or errors: 3 ( am335x_evm vision2 dig297 )
> 
http://git.denx.de/?p=u-boot/u-boot-arm.git;a=commitdiff;h=1524f613d8b5b2ec1a949121d2e615ceeb0ac42f


The commit above breaks this

--Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 18:12 ` Albert ARIBAUD
@ 2011-10-21 19:57   ` Dirk Behme
  2011-10-21 20:04     ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Dirk Behme @ 2011-10-21 19:57 UTC (permalink / raw)
  To: u-boot

On 21.10.2011 20:12, Albert ARIBAUD wrote:
> Hi Sandeep,
>
> Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
>> Albert,
>> 	Please pull u-boot-ti/master
....
>
> Applied to u-boot-arm/master (with rebase, as the pull request was based
> on u-boot, not u-boot-arm), thanks!

Just fyi: Using git head

commit d775935e1f301c82bd4d9e4e5d060b3e3aaf0bfa
davinci: remove config.mk file from the sources

 > ./MAKEALL ARMV7
...
Configuring for am335x_evm board...
board.c: In function 'board_init_f':
board.c:378: error: 'MACH_TYPE_TIAM335EVM' undeclared (first use in 
this function)
board.c:378: error: (Each undeclared identifier is reported only once 

board.c:378: error: for each function it appears in.)
...
Configuring for vision2 - Board: vision2, Options: 
IMX_CONFIG=board/ttcontrol/vision2/imximage_hynix.cfg
board.c: In function 'board_init_f': 

board.c:378: error: 'MACH_TYPE_TTC_VISION2' undeclared (first use in 
this function)
board.c:378: error: (Each undeclared identifier is reported only once 

board.c:378: error: for each function it appears in.)
...
Configuring for dig297 board... 

dig297.c: In function 'board_init': 

dig297.c:95: error: 'MACH_TYPE_OMAP3_CPS' undeclared (first use in 
this function)
dig297.c:95: error: (Each undeclared identifier is reported only once 

dig297.c:95: error: for each function it appears in.)
...
Boards compiled: 34
Boards with warnings or errors: 3 ( am335x_evm vision2 dig297 )

Best regards

Dirk

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

* [U-Boot] Please pull u-boot-ti/master
  2011-10-21 17:00 s-paulraj at ti.com
@ 2011-10-21 18:12 ` Albert ARIBAUD
  2011-10-21 19:57   ` Dirk Behme
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-10-21 18:12 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 21/10/2011 19:00, s-paulraj at ti.com a ?crit :
> Albert,
> 	Please pull u-boot-ti/master
>
> Regards,
> Sandeep
>
>
> The following changes since commit efb2172ece93ef48f34fb8bdf963d3b72880cc7d:
>    Simon Glass (1):
>          Move timestamp and version files into 'generated' subdir
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (1):
>        omap: spl: fix build break due to changes in FAT
>
> Chandan Nath (5):
>        ARM:AM33XX: Added support for AM33xx
>        ARM:AM33XX: Add clock definitions
>        ARM:AM33XX: Add emif/ddr support
>        ARM:AM33XX: Added timer support
>        ARM:AM33XX: Add support for TI AM335X EVM
>
> Christian Riesch (1):
>        da850evm: Move LPSC configuration to board_early_init_f()
>
> Heiko Schocher (1):
>        arm, davinci: add missing LSPC define for MMC/SD1
>
> Ilya Yanok (1):
>        omap3/emif4: fix registers definition
>
> Joe Hershberger (2):
>        omap: Don't use gpio_free to change direction to input
>        omap4_panda: Build in cmd_gpio support on panda
>
> Joel A Fernandes (1):
>        Makefile: Remove MLO on make clean
>
> Manjunath Hadli (6):
>        dm644X: revert cache disable patch
>        dm36x: revert cache disable patch
>        da830: add support for NAND boot mode
>        davinci: emac: add new features to autonegotiate for EMAC
>        davinci: emac: add support for more than 1 PHYs
>        davinci: remove obsolete macro CONFIG_EMAC_MDIO_PHY_NUM
>
> Philip Balister (3):
>        OMAP3: overo : Use ttyO2 instead of ttyS2.
>        OMAP3: overo: Move ethernet CS4 configuration to execute based on board id
>        OMAP3: overo : Add environment variable optargs to bootargs
>
> Ricardo Salveti de Araujo (3):
>        omap4: replacing OMAP4_CONTROL with OMAP4430_CONTROL
>        omap4: adding revision detection for 4460 ES1.1
>        omap4: splitting padconfs into common, 4430 and 4460
>
> SRICHARAN R (1):
>        U-Boot/SPL: omap4: Make ddr pre-calculated timings as default.
>
> Sergei Shtylyov (1):
>        DaVinci: correct MDSTAT.STATE mask
>
> Simon Schwarz (4):
>        omap3: Add Base register for DMA
>        omap3: Add DMA register accessors
>        omap3: Add interface for omap3 DMA
>        SPL: Add DMA library
>
> Steve Sakoman (3):
>        omap: overo: Configure mux for gpio10
>        omap: overo: Disable pull-ups on camera PCLK, HS and VS signals
>        omap: beagle: Use ubifs instead of jffs2 for nand boot
>
> Tom Rini (3):
>        OMAP3 SPL: Provide weak omap_rev_string
>        devkit8000: Add malloc space
>        mmc: omap: Allow OMAP_HSMMC[23]_BASE to be unset
>
> Vladimir Zapolskiy (1):
>        davinci: remove config.mk file from the sources

Applied to u-boot-arm/master (with rebase, as the pull request was based 
on u-boot, not u-boot-arm), thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-10-21 17:00 s-paulraj at ti.com
  2011-10-21 18:12 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-10-21 17:00 UTC (permalink / raw)
  To: u-boot

Albert,
	Please pull u-boot-ti/master

Regards,
Sandeep


The following changes since commit efb2172ece93ef48f34fb8bdf963d3b72880cc7d:
  Simon Glass (1):
        Move timestamp and version files into 'generated' subdir

are available in the git repository at:

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

Aneesh V (1):
      omap: spl: fix build break due to changes in FAT

Chandan Nath (5):
      ARM:AM33XX: Added support for AM33xx
      ARM:AM33XX: Add clock definitions
      ARM:AM33XX: Add emif/ddr support
      ARM:AM33XX: Added timer support
      ARM:AM33XX: Add support for TI AM335X EVM

Christian Riesch (1):
      da850evm: Move LPSC configuration to board_early_init_f()

Heiko Schocher (1):
      arm, davinci: add missing LSPC define for MMC/SD1

Ilya Yanok (1):
      omap3/emif4: fix registers definition

Joe Hershberger (2):
      omap: Don't use gpio_free to change direction to input
      omap4_panda: Build in cmd_gpio support on panda

Joel A Fernandes (1):
      Makefile: Remove MLO on make clean

Manjunath Hadli (6):
      dm644X: revert cache disable patch
      dm36x: revert cache disable patch
      da830: add support for NAND boot mode
      davinci: emac: add new features to autonegotiate for EMAC
      davinci: emac: add support for more than 1 PHYs
      davinci: remove obsolete macro CONFIG_EMAC_MDIO_PHY_NUM

Philip Balister (3):
      OMAP3: overo : Use ttyO2 instead of ttyS2.
      OMAP3: overo: Move ethernet CS4 configuration to execute based on board id
      OMAP3: overo : Add environment variable optargs to bootargs

Ricardo Salveti de Araujo (3):
      omap4: replacing OMAP4_CONTROL with OMAP4430_CONTROL
      omap4: adding revision detection for 4460 ES1.1
      omap4: splitting padconfs into common, 4430 and 4460

SRICHARAN R (1):
      U-Boot/SPL: omap4: Make ddr pre-calculated timings as default.

Sergei Shtylyov (1):
      DaVinci: correct MDSTAT.STATE mask

Simon Schwarz (4):
      omap3: Add Base register for DMA
      omap3: Add DMA register accessors
      omap3: Add interface for omap3 DMA
      SPL: Add DMA library

Steve Sakoman (3):
      omap: overo: Configure mux for gpio10
      omap: overo: Disable pull-ups on camera PCLK, HS and VS signals
      omap: beagle: Use ubifs instead of jffs2 for nand boot

Tom Rini (3):
      OMAP3 SPL: Provide weak omap_rev_string
      devkit8000: Add malloc space
      mmc: omap: Allow OMAP_HSMMC[23]_BASE to be unset

Vladimir Zapolskiy (1):
      davinci: remove config.mk file from the sources

 MAINTAINERS                                      |    4 +
 Makefile                                         |    4 +
 arch/arm/cpu/arm926ejs/davinci/config.mk         |   32 ---
 arch/arm/cpu/arm926ejs/davinci/et1011c.c         |    6 +-
 arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S   |    8 +-
 arch/arm/cpu/arm926ejs/davinci/psc.c             |    4 +-
 arch/arm/cpu/armv7/am33xx/Makefile               |   48 ++++
 arch/arm/cpu/armv7/am33xx/board.c                |   66 +++++
 arch/arm/cpu/armv7/am33xx/clock.c                |  273 +++++++++++++++++++++
 arch/arm/cpu/armv7/am33xx/ddr.c                  |  147 ++++++++++++
 arch/arm/cpu/armv7/am33xx/emif4.c                |  201 ++++++++++++++++
 arch/arm/cpu/armv7/am33xx/lowlevel_init.S        |   72 ++++++
 arch/arm/cpu/armv7/am33xx/sys_info.c             |  130 ++++++++++
 arch/arm/cpu/armv7/omap-common/Makefile          |    2 +
 arch/arm/cpu/armv7/omap-common/gpio.c            |    7 -
 arch/arm/cpu/armv7/omap-common/spl.c             |   12 +
 arch/arm/cpu/armv7/omap3/board.c                 |    6 -
 arch/arm/cpu/armv7/omap4/board.c                 |   24 ++-
 arch/arm/cpu/armv7/omap4/omap4_mux_data.h        |    7 +
 arch/arm/include/asm/arch-am33xx/clock.h         |   24 ++
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h |   55 +++++
 arch/arm/include/asm/arch-am33xx/cpu.h           |  218 +++++++++++++++++
 arch/arm/include/asm/arch-am33xx/ddr_defs.h      |  264 ++++++++++++++++++++
 arch/arm/include/asm/arch-am33xx/hardware.h      |   81 +++++++
 arch/arm/include/asm/arch-am33xx/sys_proto.h     |   39 +++
 arch/arm/include/asm/arch-davinci/emac_defs.h    |    4 -
 arch/arm/include/asm/arch-davinci/hardware.h     |    3 +
 arch/arm/include/asm/arch-omap3/cpu.h            |   46 ++++
 arch/arm/include/asm/arch-omap3/dma.h            |   77 ++++++
 arch/arm/include/asm/arch-omap3/omap3.h          |    3 +
 arch/arm/include/asm/arch-omap3/sys_proto.h      |    1 -
 arch/arm/include/asm/arch-omap4/omap4.h          |   16 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h      |    1 -
 arch/arm/include/asm/omap_common.h               |    1 +
 board/davinci/da8xxevm/da830evm.c                |   63 +++++
 board/davinci/da8xxevm/da850evm.c                |   23 +-
 board/logicpd/zoom2/debug_board.c                |    1 -
 board/logicpd/zoom2/zoom2.c                      |    1 -
 board/overo/overo.c                              |   14 +-
 board/overo/overo.h                              |    8 +-
 board/ti/am335x/Makefile                         |   43 ++++
 board/ti/am335x/common_def.h                     |   24 ++
 board/ti/am335x/evm.c                            |   48 ++++
 board/ti/am335x/mux.c                            |  278 ++++++++++++++++++++++
 board/ti/beagle/beagle.c                         |    6 -
 board/ti/panda/panda.c                           |   17 ++
 board/ti/panda/panda_mux_data.h                  |   14 +-
 boards.cfg                                       |    1 +
 common/Makefile                                  |    1 +
 doc/README.SPL                                   |    1 +
 doc/README.omap3                                 |   18 ++
 drivers/dma/Makefile                             |    1 +
 drivers/dma/omap3_dma.c                          |  180 ++++++++++++++
 drivers/mmc/omap_hsmmc.c                         |    4 +
 drivers/net/davinci_emac.c                       |  209 +++++++++++------
 drivers/serial/ns16550.c                         |    7 +-
 include/configs/am335x_evm.h                     |  122 ++++++++++
 include/configs/da830evm.h                       |    5 +-
 include/configs/da850evm.h                       |    2 +-
 include/configs/davinci_dm365evm.h               |    4 -
 include/configs/davinci_dm6467evm.h              |    1 -
 include/configs/davinci_dvevm.h                  |    4 -
 include/configs/davinci_schmoogie.h              |    1 -
 include/configs/davinci_sffsdr.h                 |    1 -
 include/configs/davinci_sonata.h                 |    1 -
 include/configs/devkit8000.h                     |    3 +
 include/configs/ea20.h                           |    1 -
 include/configs/hawkboard.h                      |    1 -
 include/configs/omap3_beagle.h                   |    4 +-
 include/configs/omap3_overo.h                    |    5 +-
 include/configs/omap4_common.h                   |   20 +-
 include/configs/omap4_panda.h                    |    3 +
 spl/Makefile                                     |    1 +
 73 files changed, 2819 insertions(+), 208 deletions(-)
 delete mode 100644 arch/arm/cpu/arm926ejs/davinci/config.mk
 create mode 100644 arch/arm/cpu/armv7/am33xx/Makefile
 create mode 100644 arch/arm/cpu/armv7/am33xx/board.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/clock.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/ddr.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/emif4.c
 create mode 100644 arch/arm/cpu/armv7/am33xx/lowlevel_init.S
 create mode 100644 arch/arm/cpu/armv7/am33xx/sys_info.c
 create mode 100644 arch/arm/include/asm/arch-am33xx/clock.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/cpu.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/ddr_defs.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/hardware.h
 create mode 100644 arch/arm/include/asm/arch-am33xx/sys_proto.h
 create mode 100644 arch/arm/include/asm/arch-omap3/dma.h
 create mode 100644 board/ti/am335x/Makefile
 create mode 100644 board/ti/am335x/common_def.h
 create mode 100644 board/ti/am335x/evm.c
 create mode 100644 board/ti/am335x/mux.c
 create mode 100644 drivers/dma/omap3_dma.c
 create mode 100644 include/configs/am335x_evm.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-10  6:00   ` Albert ARIBAUD
@ 2011-09-10 19:00     ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-09-10 19:00 UTC (permalink / raw)
  To: u-boot


>Alright, as Sandeep did not respond quickly, I'll assume he isn't
>available right now. Since there is only one commit, I'll cherry-pick it
>(and then run some builds and send an ARM pull req).

Thanks,

just saw this.

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-09 20:35 s-paulraj at ti.com
  2011-09-09 21:26 ` Albert ARIBAUD
@ 2011-09-10  6:11 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-10  6:11 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 09/09/2011 22:35, s-paulraj at ti.com a ?crit :
> Albert,
>
> Stefano just sent a patch to fix an issue with the hawk board
> 	
> Regards,
> Sandeep
>
> The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f:
>    Sandeep Paulraj (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-ti
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Stefano Babic (1):
>        ARM: hawkboard: fix compilation of nand_spl
>
>   nand_spl/board/davinci/da8xxevm/Makefile |    6 +++++-
>   1 files changed, 5 insertions(+), 1 deletions(-)

Applied to u-boot-arm/master (by cherry-picking the commit, as u-boot-ti 
was not rebased on u-boot-arm/master at the time of the pull request), 
thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-09 21:26 ` Albert ARIBAUD
@ 2011-09-10  6:00   ` Albert ARIBAUD
  2011-09-10 19:00     ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-10  6:00 UTC (permalink / raw)
  To: u-boot

Le 09/09/2011 23:26, Albert ARIBAUD a ?crit :
> Hi Sandeep,
>
> Le 09/09/2011 22:35, s-paulraj at ti.com a ?crit :
>> Albert,
>>
>> Stefano just sent a patch to fix an issue with the hawk board
>> 	
>> Regards,
>> Sandeep
>>
>> The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f:
>>     Sandeep Paulraj (1):
>>           Merge branch 'master' of git://git.denx.de/u-boot-ti
>>
>> are available in the git repository at:
>>
>>     git://git.denx.de/u-boot-ti.git master
>>
>> Stefano Babic (1):
>>         ARM: hawkboard: fix compilation of nand_spl
>>
>>    nand_spl/board/davinci/da8xxevm/Makefile |    6 +++++-
>>    1 files changed, 5 insertions(+), 1 deletions(-)
>
> Can you please rebase on u-boot-arm/master and then resubmit a pull request?

Alright, as Sandeep did not respond quickly, I'll assume he isn't 
available right now. Since there is only one commit, I'll cherry-pick it 
(and then run some builds and send an ARM pull req).

> Amicalement,

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-09 20:35 s-paulraj at ti.com
@ 2011-09-09 21:26 ` Albert ARIBAUD
  2011-09-10  6:00   ` Albert ARIBAUD
  2011-09-10  6:11 ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-09 21:26 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 09/09/2011 22:35, s-paulraj at ti.com a ?crit :
> Albert,
>
> Stefano just sent a patch to fix an issue with the hawk board
> 	
> Regards,
> Sandeep
>
> The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f:
>    Sandeep Paulraj (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-ti
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Stefano Babic (1):
>        ARM: hawkboard: fix compilation of nand_spl
>
>   nand_spl/board/davinci/da8xxevm/Makefile |    6 +++++-
>   1 files changed, 5 insertions(+), 1 deletions(-)

Can you please rebase on u-boot-arm/master and then resubmit a pull request?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-09-09 20:35 s-paulraj at ti.com
  2011-09-09 21:26 ` Albert ARIBAUD
  2011-09-10  6:11 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-09-09 20:35 UTC (permalink / raw)
  To: u-boot

Albert,

Stefano just sent a patch to fix an issue with the hawk board
	
Regards,
Sandeep

The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f:
  Sandeep Paulraj (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ti

are available in the git repository at:

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

Stefano Babic (1):
      ARM: hawkboard: fix compilation of nand_spl

 nand_spl/board/davinci/da8xxevm/Makefile |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-08 16:52   ` Paulraj, Sandeep
@ 2011-09-08 17:20     ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-08 17:20 UTC (permalink / raw)
  To: u-boot

Hi again Sandeep,

Le 08/09/2011 18:52, Paulraj, Sandeep a ?crit :

>> What are these warnings that
>> cannot be eliminated?
>
> u-boot does not have linux/gpio.h
>
> checkpatch complains about this.

That brings us back to whether we can adapt checkpatch to our own needs.

Thanks for the clarification.

> Regards,
> Sandeep

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-08 15:54 ` Albert ARIBAUD
@ 2011-09-08 16:52   ` Paulraj, Sandeep
  2011-09-08 17:20     ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-09-08 16:52 UTC (permalink / raw)
  To: u-boot



> 
> Hi Sandeep,
> 
> Le 08/09/2011 17:16, s-paulraj at ti.com a ?crit :
> > Albert,
> >
> > Please pull u-boot-ti/master.
> > I checked all the patches for checkpatch errors and fixed
> > all the warnings that i could. Some cannot be fixed.
> > Sanjeev's patches update thr GPIO for OMAP. The GPIO on OMAP
> > was causing issues which now seem to be fixed.
> >
> > Regards,
> > Sandeep
> >
> > The following changes since commit
> 63cf97e825b8d821e2d3d6d6c6604634ac24810a:
> >    Sanjeev Premi (1):
> >          omap3: beagle: Fix build warning
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> > Aneesh V (4):
> >        omap4: factor out common part from board config headers
> >        omap4: make SDRAM init work for ES1.0 silicon
> >        omap4: IO settings
> >        omap4: fix pad configuration settings for SDP and Panda
> >
> > Howard D. Gray (1):
> >        ARMV7: OMAP3: Add 37xx ESx revision numbers.
> >
> > Jason Kridner (1):
> >        led: remove camel casing of led identifiers globally
> >
> > Joel A Fernandes (1):
> >        OMAP: Add function to get state of a GPIO output
> >
> > Michael Jones (2):
> >        ARMV7: OMAP: Write more than 1 byte at a time in i2c_write
> >        ARMV7: OMAP: I2C driver: cosmetic: make checkpatch-compatible
> >
> > Nagabhushana Netagunte (3):
> >        da830: modify the U-Boot prompt string
> >        da830: enable SPI flash boot mode
> >        da830: modify the MEMTEST start and end address
> >
> > Sandeep Paulraj (1):
> >        OMAP3 Beagle: Minor config cleanup
> >
> > Sanjeev Premi (3):
> >        omap: gpio: Use generic API
> >        omap: gpio: generic changes after changing API
> >        omap: gpio: Adapt board files to use generic API
> >
> 
> Rebasing and applying locally right now. What are these warnings that
> cannot be eliminated?

u-boot does not have linux/gpio.h

checkpatch complains about this.

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-08 15:16 s-paulraj at ti.com
  2011-09-08 15:54 ` Albert ARIBAUD
@ 2011-09-08 15:58 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-08 15:58 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 08/09/2011 17:16, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master.
> I checked all the patches for checkpatch errors and fixed
> all the warnings that i could. Some cannot be fixed.
> Sanjeev's patches update thr GPIO for OMAP. The GPIO on OMAP
> was causing issues which now seem to be fixed.
>
> Regards,
> Sandeep
>
> The following changes since commit 63cf97e825b8d821e2d3d6d6c6604634ac24810a:
>    Sanjeev Premi (1):
>          omap3: beagle: Fix build warning
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (4):
>        omap4: factor out common part from board config headers
>        omap4: make SDRAM init work for ES1.0 silicon
>        omap4: IO settings
>        omap4: fix pad configuration settings for SDP and Panda
>
> Howard D. Gray (1):
>        ARMV7: OMAP3: Add 37xx ESx revision numbers.
>
> Jason Kridner (1):
>        led: remove camel casing of led identifiers globally
>
> Joel A Fernandes (1):
>        OMAP: Add function to get state of a GPIO output
>
> Michael Jones (2):
>        ARMV7: OMAP: Write more than 1 byte at a time in i2c_write
>        ARMV7: OMAP: I2C driver: cosmetic: make checkpatch-compatible
>
> Nagabhushana Netagunte (3):
>        da830: modify the U-Boot prompt string
>        da830: enable SPI flash boot mode
>        da830: modify the MEMTEST start and end address
>
> Sandeep Paulraj (1):
>        OMAP3 Beagle: Minor config cleanup
>
> Sanjeev Premi (3):
>        omap: gpio: Use generic API
>        omap: gpio: generic changes after changing API
>        omap: gpio: Adapt board files to use generic API
>
>   arch/arm/cpu/arm920t/ep93xx/led.c       |   24 ++--
>   arch/arm/cpu/arm926ejs/at91/led.c       |   12 +-
>   arch/arm/cpu/armv7/omap-common/gpio.c   |  105 ++++++++++--
>   arch/arm/cpu/armv7/omap3/sys_info.c     |   13 ++-
>   arch/arm/cpu/armv7/omap4/board.c        |   62 +++++++
>   arch/arm/cpu/armv7/omap4/clocks.c       |    5 +-
>   arch/arm/cpu/armv7/omap4/emif.c         |   72 +-------
>   arch/arm/cpu/armv7/omap4/sdram_elpida.c |   24 ++--
>   arch/arm/include/asm/arch-omap3/omap3.h |   10 +
>   arch/arm/include/asm/arch-omap4/emif.h  |   23 +---
>   arch/arm/include/asm/arch-omap4/omap4.h |   45 +++++-
>   arch/arm/include/asm/omap_gpio.h        |   13 --
>   arch/arm/lib/board.c                    |   32 ++--
>   board/atmel/at91rm9200ek/led.c          |   12 +-
>   board/cm_t35/leds.c                     |   10 +-
>   board/comelit/dig297/dig297.c           |   12 +-
>   board/eukrea/cpu9260/led.c              |   48 +++---
>   board/isee/igep0020/igep0020.c          |   12 +-
>   board/logicpd/zoom2/debug_board.c       |   10 +-
>   board/logicpd/zoom2/led.c               |   66 ++++----
>   board/logicpd/zoom2/zoom2.c             |   10 +-
>   board/overo/overo.c                     |   54 +++---
>   board/ti/beagle/beagle.c                |   44 +++---
>   board/ti/beagle/led.c                   |   26 ++--
>   board/ti/evm/evm.c                      |   12 +-
>   board/ti/panda/panda_mux_data.h         |   41 ++---
>   board/ti/sdp4430/sdp4430_mux_data.h     |    9 +-
>   common/cmd_led.c                        |    8 +-
>   doc/README.omap3                        |   20 +-
>   drivers/i2c/omap24xx_i2c.c              |  241 +++++++++++++---------------
>   include/configs/da830evm.h              |   17 +-
>   include/configs/omap3_beagle.h          |    1 -
>   include/configs/omap4_common.h          |  275 +++++++++++++++++++++++++++++++
>   include/configs/omap4_panda.h           |  244 +--------------------------
>   include/configs/omap4_sdp4430.h         |  245 +--------------------------
>   include/status_led.h                    |   32 ++--
>   36 files changed, 892 insertions(+), 997 deletions(-)
>   create mode 100644 include/configs/omap4_common.h

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-09-08 15:16 s-paulraj at ti.com
@ 2011-09-08 15:54 ` Albert ARIBAUD
  2011-09-08 16:52   ` Paulraj, Sandeep
  2011-09-08 15:58 ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-09-08 15:54 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 08/09/2011 17:16, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master.
> I checked all the patches for checkpatch errors and fixed
> all the warnings that i could. Some cannot be fixed.
> Sanjeev's patches update thr GPIO for OMAP. The GPIO on OMAP
> was causing issues which now seem to be fixed.
>
> Regards,
> Sandeep
>
> The following changes since commit 63cf97e825b8d821e2d3d6d6c6604634ac24810a:
>    Sanjeev Premi (1):
>          omap3: beagle: Fix build warning
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (4):
>        omap4: factor out common part from board config headers
>        omap4: make SDRAM init work for ES1.0 silicon
>        omap4: IO settings
>        omap4: fix pad configuration settings for SDP and Panda
>
> Howard D. Gray (1):
>        ARMV7: OMAP3: Add 37xx ESx revision numbers.
>
> Jason Kridner (1):
>        led: remove camel casing of led identifiers globally
>
> Joel A Fernandes (1):
>        OMAP: Add function to get state of a GPIO output
>
> Michael Jones (2):
>        ARMV7: OMAP: Write more than 1 byte at a time in i2c_write
>        ARMV7: OMAP: I2C driver: cosmetic: make checkpatch-compatible
>
> Nagabhushana Netagunte (3):
>        da830: modify the U-Boot prompt string
>        da830: enable SPI flash boot mode
>        da830: modify the MEMTEST start and end address
>
> Sandeep Paulraj (1):
>        OMAP3 Beagle: Minor config cleanup
>
> Sanjeev Premi (3):
>        omap: gpio: Use generic API
>        omap: gpio: generic changes after changing API
>        omap: gpio: Adapt board files to use generic API
>
>   arch/arm/cpu/arm920t/ep93xx/led.c       |   24 ++--
>   arch/arm/cpu/arm926ejs/at91/led.c       |   12 +-
>   arch/arm/cpu/armv7/omap-common/gpio.c   |  105 ++++++++++--
>   arch/arm/cpu/armv7/omap3/sys_info.c     |   13 ++-
>   arch/arm/cpu/armv7/omap4/board.c        |   62 +++++++
>   arch/arm/cpu/armv7/omap4/clocks.c       |    5 +-
>   arch/arm/cpu/armv7/omap4/emif.c         |   72 +-------
>   arch/arm/cpu/armv7/omap4/sdram_elpida.c |   24 ++--
>   arch/arm/include/asm/arch-omap3/omap3.h |   10 +
>   arch/arm/include/asm/arch-omap4/emif.h  |   23 +---
>   arch/arm/include/asm/arch-omap4/omap4.h |   45 +++++-
>   arch/arm/include/asm/omap_gpio.h        |   13 --
>   arch/arm/lib/board.c                    |   32 ++--
>   board/atmel/at91rm9200ek/led.c          |   12 +-
>   board/cm_t35/leds.c                     |   10 +-
>   board/comelit/dig297/dig297.c           |   12 +-
>   board/eukrea/cpu9260/led.c              |   48 +++---
>   board/isee/igep0020/igep0020.c          |   12 +-
>   board/logicpd/zoom2/debug_board.c       |   10 +-
>   board/logicpd/zoom2/led.c               |   66 ++++----
>   board/logicpd/zoom2/zoom2.c             |   10 +-
>   board/overo/overo.c                     |   54 +++---
>   board/ti/beagle/beagle.c                |   44 +++---
>   board/ti/beagle/led.c                   |   26 ++--
>   board/ti/evm/evm.c                      |   12 +-
>   board/ti/panda/panda_mux_data.h         |   41 ++---
>   board/ti/sdp4430/sdp4430_mux_data.h     |    9 +-
>   common/cmd_led.c                        |    8 +-
>   doc/README.omap3                        |   20 +-
>   drivers/i2c/omap24xx_i2c.c              |  241 +++++++++++++---------------
>   include/configs/da830evm.h              |   17 +-
>   include/configs/omap3_beagle.h          |    1 -
>   include/configs/omap4_common.h          |  275 +++++++++++++++++++++++++++++++
>   include/configs/omap4_panda.h           |  244 +--------------------------
>   include/configs/omap4_sdp4430.h         |  245 +--------------------------
>   include/status_led.h                    |   32 ++--
>   36 files changed, 892 insertions(+), 997 deletions(-)
>   create mode 100644 include/configs/omap4_common.h

Rebasing and applying locally right now. What are these warnings that 
cannot be eliminated?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-09-08 15:16 s-paulraj at ti.com
  2011-09-08 15:54 ` Albert ARIBAUD
  2011-09-08 15:58 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-09-08 15:16 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-ti/master.
I checked all the patches for checkpatch errors and fixed
all the warnings that i could. Some cannot be fixed.
Sanjeev's patches update thr GPIO for OMAP. The GPIO on OMAP
was causing issues which now seem to be fixed.

Regards,
Sandeep

The following changes since commit 63cf97e825b8d821e2d3d6d6c6604634ac24810a:
  Sanjeev Premi (1):
        omap3: beagle: Fix build warning

are available in the git repository at:

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

Aneesh V (4):
      omap4: factor out common part from board config headers
      omap4: make SDRAM init work for ES1.0 silicon
      omap4: IO settings
      omap4: fix pad configuration settings for SDP and Panda

Howard D. Gray (1):
      ARMV7: OMAP3: Add 37xx ESx revision numbers.

Jason Kridner (1):
      led: remove camel casing of led identifiers globally

Joel A Fernandes (1):
      OMAP: Add function to get state of a GPIO output

Michael Jones (2):
      ARMV7: OMAP: Write more than 1 byte at a time in i2c_write
      ARMV7: OMAP: I2C driver: cosmetic: make checkpatch-compatible

Nagabhushana Netagunte (3):
      da830: modify the U-Boot prompt string
      da830: enable SPI flash boot mode
      da830: modify the MEMTEST start and end address

Sandeep Paulraj (1):
      OMAP3 Beagle: Minor config cleanup

Sanjeev Premi (3):
      omap: gpio: Use generic API
      omap: gpio: generic changes after changing API
      omap: gpio: Adapt board files to use generic API

 arch/arm/cpu/arm920t/ep93xx/led.c       |   24 ++--
 arch/arm/cpu/arm926ejs/at91/led.c       |   12 +-
 arch/arm/cpu/armv7/omap-common/gpio.c   |  105 ++++++++++--
 arch/arm/cpu/armv7/omap3/sys_info.c     |   13 ++-
 arch/arm/cpu/armv7/omap4/board.c        |   62 +++++++
 arch/arm/cpu/armv7/omap4/clocks.c       |    5 +-
 arch/arm/cpu/armv7/omap4/emif.c         |   72 +-------
 arch/arm/cpu/armv7/omap4/sdram_elpida.c |   24 ++--
 arch/arm/include/asm/arch-omap3/omap3.h |   10 +
 arch/arm/include/asm/arch-omap4/emif.h  |   23 +---
 arch/arm/include/asm/arch-omap4/omap4.h |   45 +++++-
 arch/arm/include/asm/omap_gpio.h        |   13 --
 arch/arm/lib/board.c                    |   32 ++--
 board/atmel/at91rm9200ek/led.c          |   12 +-
 board/cm_t35/leds.c                     |   10 +-
 board/comelit/dig297/dig297.c           |   12 +-
 board/eukrea/cpu9260/led.c              |   48 +++---
 board/isee/igep0020/igep0020.c          |   12 +-
 board/logicpd/zoom2/debug_board.c       |   10 +-
 board/logicpd/zoom2/led.c               |   66 ++++----
 board/logicpd/zoom2/zoom2.c             |   10 +-
 board/overo/overo.c                     |   54 +++---
 board/ti/beagle/beagle.c                |   44 +++---
 board/ti/beagle/led.c                   |   26 ++--
 board/ti/evm/evm.c                      |   12 +-
 board/ti/panda/panda_mux_data.h         |   41 ++---
 board/ti/sdp4430/sdp4430_mux_data.h     |    9 +-
 common/cmd_led.c                        |    8 +-
 doc/README.omap3                        |   20 +-
 drivers/i2c/omap24xx_i2c.c              |  241 +++++++++++++---------------
 include/configs/da830evm.h              |   17 +-
 include/configs/omap3_beagle.h          |    1 -
 include/configs/omap4_common.h          |  275 +++++++++++++++++++++++++++++++
 include/configs/omap4_panda.h           |  244 +--------------------------
 include/configs/omap4_sdp4430.h         |  245 +--------------------------
 include/status_led.h                    |   32 ++--
 36 files changed, 892 insertions(+), 997 deletions(-)
 create mode 100644 include/configs/omap4_common.h

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-09-04  2:35 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-09-04  2:35 UTC (permalink / raw)
  To: u-boot

The following changes since commit d91dd34bf113e8e23d52e8a5267858ddb07de88c:
  Marek Vasut (1):
        PXA: vpac270: Remove re-defined CONFIG_SYS_TEXT_BASE

are available in the git repository at:

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

Manjunathappa, Prakash (1):
      da850: add support for Spectrum Digital AM18xx EVM

Nagabhushana Netagunte (8):
      dm6446: disable cache usage due to coherency issues
      dm365: disable cache usage due to coherency issues
      da850: indicate cache usage disable in config file
      da850: add NOR boot mode support
      da850: modify the U-Boot prompt string
      da850: add support to wake up DSP during board init
      da850: fix the channel number for EMAC teardown init
      da850: modifications for Logic PD Rev.3 AM18xx EVM

Rajashekhara, Sudhakar (1):
      dm365: modify boot prompt from dm365 to dm36x

Sudhakar Rajashekhara (1):
      da8xx: add support for multiple PLL controllers

Tom Rini (9):
      OMAP3: CM-T35: Use generic MMC driver
      OMAP3: DIG297: Use generic MMC driver
      OMAP3: Zoom1: Use generic MMC driver
      OMAP3: Zoom2: Use generic MMC driver
      OMAP3: pandora: Use generic MMC driver
      AM3517 CraneBoard: Use generic MMC driver
      TI OMAP3 SDP3430: Use generic MMC driver
      devkit8000: Use generic MMC driver
      OMAP3: Remove legacy mmc driver

Vaibhav Hiremath (5):
      OMAP3/4: Increase console I/O buffer size
      omap3:clock: configure GFX clock to 200MHz for AM/DM37x
      omap3:clock: check cpu_family before enabling clks for IVA & CAM
      omap3evm: Use generic MMC driver
      am3517evm: Use generic MMC driver

 arch/arm/cpu/arm926ejs/davinci/cpu.c           |   30 +-
 arch/arm/cpu/armv7/omap3/clock.c               |   16 +-
 arch/arm/include/asm/arch-davinci/hardware.h   |   14 +-
 arch/arm/include/asm/arch-omap3/clocks_omap3.h |    1 +
 board/cm_t35/cm_t35.c                          |    8 +
 board/comelit/dig297/dig297.c                  |    9 +
 board/davinci/da8xxevm/da850evm.c              |  123 +++++
 board/logicpd/am3517evm/am3517evm.c            |    9 +
 board/logicpd/zoom1/zoom1.c                    |    9 +
 board/logicpd/zoom2/zoom2.c                    |    9 +
 board/pandora/pandora.c                        |    9 +
 board/ti/am3517crane/am3517crane.c             |    9 +
 board/ti/evm/evm.c                             |    9 +
 board/ti/sdp3430/sdp.c                         |    9 +
 board/timll/devkit8000/devkit8000.c            |    9 +
 drivers/mmc/Makefile                           |    1 -
 drivers/mmc/omap3_mmc.c                        |  570 ------------------------
 drivers/mmc/omap3_mmc.h                        |  233 ----------
 drivers/net/davinci_emac.c                     |    4 +-
 include/configs/am3517_crane.h                 |   10 +-
 include/configs/am3517_evm.h                   |   10 +-
 include/configs/cm_t35.h                       |    3 +-
 include/configs/da850evm.h                     |   26 +-
 include/configs/davinci_dm365evm.h             |    5 +-
 include/configs/davinci_dvevm.h                |    3 +
 include/configs/devkit8000.h                   |   10 +-
 include/configs/dig297.h                       |    5 +-
 include/configs/omap3_beagle.h                 |    2 +-
 include/configs/omap3_evm.h                    |   12 +-
 include/configs/omap3_overo.h                  |    2 +-
 include/configs/omap3_pandora.h                |    7 +-
 include/configs/omap3_sdp3430.h                |    5 +-
 include/configs/omap3_zoom1.h                  |   12 +-
 include/configs/omap3_zoom2.h                  |    5 +-
 include/configs/omap4_panda.h                  |    2 +-
 include/configs/omap4_sdp4430.h                |    2 +-
 36 files changed, 340 insertions(+), 862 deletions(-)
 delete mode 100644 drivers/mmc/omap3_mmc.c
 delete mode 100644 drivers/mmc/omap3_mmc.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-07-21 13:36 s-paulraj at ti.com
@ 2011-07-23 13:13 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-07-23 13:13 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 21/07/2011 15:36, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master
> As mentioned by Anessh on the list, omap4 does not compile and needs
> the fix http://patchwork.ozlabs.org/patch/105364/
>
> Things should fall in place when this series reaches mainline however
>
> I am still working through some other patches for which i will send a
> pull request later.
>
> Regards,
> Sandeep
> ---

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-07-21 13:36 s-paulraj at ti.com
  2011-07-23 13:13 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-07-21 13:36 UTC (permalink / raw)
  To: u-boot

Albert, 

Please pull u-boot-ti/master
As mentioned by Anessh on the list, omap4 does not compile and needs
the fix http://patchwork.ozlabs.org/patch/105364/

Things should fall in place when this series reaches mainline however

I am still working through some other patches for which i will send a
pull request later.

Regards,
Sandeep
---

The following changes since commit 09582c20d7564d5240d256c21bd3b6bd7e8afbb4:
  Laurence Withers (1):
        DA8xx: fix LPSC constants

are available in the git repository at:

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

Aneesh V (19):
      arm: adjust PLATFORM_LIBS for SPL
      scaled down version of generic libraries for SPL
      replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
      omap4: utility function to identify the context of hw init
      omap4: cleanup pin mux data
      omap4: add OMAP4430 revision check
      omap4: add clock support
      omap4: add sdram init support
      omap4: calculate EMIF register values
      omap4: automatic sdram detection
      armv7: start.S: fixes and enhancements for SPL
      omap: add basic SPL support
      Correct ih_os for u-boot.img
      omap: add MMC and FAT support to SPL
      omap4: add omap4460 revision detection
      omap4: sdram init changes for omap4460
      omap: reuse omap3 gpio support in omap4
      omap4: support TPS programming
      omap4: clock init support for omap4460

Daniel Schwierzeck (6):
      Use ALL-y style instead of ifeq blocks for better readability
      spl: add initial support for a generic SPL framework
      Extend build-system for SPL framework
      Hook SPL build-system into toplevel Makefile
      spl: Add support for common libraries and drivers
      spl: add support for omap-common libraries

John Rigby (1):
      mkimage: Add OMAP boot image support

 Makefile                                           |   30 +-
 README                                             |   41 +-
 arch/arm/config.mk                                 |   11 +-
 arch/arm/cpu/arm1136/start.S                       |   20 +-
 arch/arm/cpu/arm1176/start.S                       |    4 +-
 arch/arm/cpu/arm720t/start.S                       |    4 +-
 arch/arm/cpu/arm920t/start.S                       |    4 +-
 arch/arm/cpu/arm925t/start.S                       |    4 +-
 arch/arm/cpu/arm926ejs/start.S                     |   18 +-
 arch/arm/cpu/arm946es/start.S                      |    4 +-
 arch/arm/cpu/arm_intcm/start.S                     |    4 +-
 arch/arm/cpu/armv7/Makefile                        |    7 +-
 arch/arm/cpu/armv7/cpu.c                           |    7 +
 arch/arm/cpu/armv7/omap-common/Makefile            |    6 +
 arch/arm/cpu/armv7/{omap3 => omap-common}/gpio.c   |   41 +-
 arch/arm/cpu/armv7/omap-common/spl.c               |  272 ++++
 arch/arm/cpu/armv7/omap-common/u-boot-spl.lds      |   62 +
 arch/arm/cpu/armv7/omap-common/utils.c             |   57 +
 arch/arm/cpu/armv7/omap3/Makefile                  |    1 -
 arch/arm/cpu/armv7/omap3/board.c                   |   12 +
 arch/arm/cpu/armv7/omap4/Makefile                  |    6 +
 arch/arm/cpu/armv7/omap4/board.c                   |  180 +++-
 arch/arm/cpu/armv7/omap4/clocks.c                  |  940 ++++++++++++++
 .../sdp4430 => arch/arm/cpu/armv7/omap4}/config.mk |   25 +-
 arch/arm/cpu/armv7/omap4/emif.c                    | 1310 ++++++++++++++++++++
 arch/arm/cpu/armv7/omap4/lowlevel_init.S           |   31 +
 arch/arm/cpu/armv7/omap4/omap4_mux_data.h          |   76 ++
 arch/arm/cpu/armv7/omap4/sdram_elpida.c            |  282 +++++
 arch/arm/cpu/armv7/start.S                         |   52 +-
 arch/arm/cpu/armv7/u-boot.lds                      |    2 +
 arch/arm/cpu/ixp/start.S                           |    4 +-
 arch/arm/cpu/lh7a40x/start.S                       |    4 +-
 arch/arm/cpu/pxa/start.S                           |   30 +-
 arch/arm/cpu/s3c44b0/start.S                       |    4 +-
 arch/arm/cpu/sa1100/start.S                        |    4 +-
 arch/arm/include/asm/arch-omap3/cpu.h              |   26 +
 arch/arm/include/asm/arch-omap4/clocks.h           |  690 +++++++++++
 arch/arm/include/asm/arch-omap4/cpu.h              |   26 +
 arch/arm/include/asm/arch-omap4/emif.h             | 1040 ++++++++++++++++
 arch/arm/include/asm/arch-omap4/mux_omap4.h        |    1 +
 arch/arm/include/asm/arch-omap4/omap4.h            |   61 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |   72 ++-
 arch/arm/include/asm/armv7.h                       |    6 +
 arch/arm/include/asm/omap_common.h                 |   56 +
 .../include/asm/{arch-omap3/gpio.h => omap_gpio.h} |   27 +-
 arch/arm/lib/Makefile                              |    2 +
 arch/arm/lib/board.c                               |    2 +-
 arch/blackfin/config.mk                            |    2 +-
 board/pcs440ep/config.mk                           |    2 +-
 board/spear/spear300/config.mk                     |    2 +-
 board/spear/spear310/config.mk                     |    2 +-
 board/spear/spear320/config.mk                     |    2 +-
 board/spear/spear600/config.mk                     |    2 +-
 board/ti/panda/Makefile                            |    2 +
 board/ti/panda/config.mk                           |   31 -
 board/ti/panda/panda.c                             |   25 +-
 board/ti/{sdp4430/sdp.h => panda/panda_mux_data.h} |   76 +-
 board/ti/sdp4430/Makefile                          |    2 +
 board/ti/sdp4430/sdp.c                             |   25 +-
 .../{panda/panda.h => sdp4430/sdp4430_mux_data.h}  |  128 +--
 common/Makefile                                    |    9 +-
 common/image.c                                     |    9 +-
 config.mk                                          |   34 +-
 doc/README.SPL                                     |   60 +
 drivers/serial/Makefile                            |    3 +
 fs/fat/Makefile                                    |    6 +-
 include/configs/omap4_panda.h                      |   37 +
 include/configs/omap4_sdp4430.h                    |   37 +
 include/image.h                                    |    1 +
 lib/Makefile                                       |   11 +-
 mmc_spl/board/samsung/smdkv310/Makefile            |    2 +-
 nand_spl/board/davinci/da8xxevm/Makefile           |    4 +-
 nand_spl/board/freescale/mx31pdk/Makefile          |    4 +-
 nand_spl/board/karo/tx25/Makefile                  |    4 +-
 onenand_ipl/board/apollon/Makefile                 |    4 +-
 onenand_ipl/board/vpac270/Makefile                 |    4 +-
 spl/.gitignore                                     |    4 +
 spl/Makefile                                       |  125 ++
 tools/Makefile                                     |    2 +
 tools/mkimage.c                                    |    2 +
 tools/mkimage.h                                    |    1 +
 tools/omap/clocks_get_m_n.c                        |  197 +++
 tools/omapimage.c                                  |  224 ++++
 tools/omapimage.h                                  |   50 +
 84 files changed, 6290 insertions(+), 413 deletions(-)
 rename arch/arm/cpu/armv7/{omap3 => omap-common}/gpio.c (76%)
 create mode 100644 arch/arm/cpu/armv7/omap-common/spl.c
 create mode 100644 arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
 create mode 100644 arch/arm/cpu/armv7/omap-common/utils.c
 create mode 100644 arch/arm/cpu/armv7/omap4/clocks.c
 rename {board/ti/sdp4430 => arch/arm/cpu/armv7/omap4}/config.mk (64%)
 create mode 100644 arch/arm/cpu/armv7/omap4/emif.c
 create mode 100644 arch/arm/cpu/armv7/omap4/omap4_mux_data.h
 create mode 100644 arch/arm/cpu/armv7/omap4/sdram_elpida.c
 create mode 100644 arch/arm/include/asm/arch-omap4/clocks.h
 create mode 100644 arch/arm/include/asm/arch-omap4/emif.h
 create mode 100644 arch/arm/include/asm/omap_common.h
 rename arch/arm/include/asm/{arch-omap3/gpio.h => omap_gpio.h} (67%)
 delete mode 100644 board/ti/panda/config.mk
 rename board/ti/{sdp4430/sdp.h => panda/panda_mux_data.h} (76%)
 rename board/ti/{panda/panda.h => sdp4430/sdp4430_mux_data.h} (67%)
 create mode 100644 doc/README.SPL
 create mode 100644 spl/.gitignore
 create mode 100644 spl/Makefile
 create mode 100644 tools/omap/clocks_get_m_n.c
 create mode 100644 tools/omapimage.c
 create mode 100644 tools/omapimage.h

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2011-07-18 14:07 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-07-18 14:07 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-ti/master. I am working on some other patches from
Aneesh as well. I will send a pull request for that as well as
remaining u-boot-ti patches in due course of time.

Regards,
Sandeep
	
The following changes since commit 68d4230c3ccce96a72c5b99e48399bf1796fe3c6:
  Ramneek Mehresh (1):
        powerpc/85xx: Add default usb mode and phy type to hwconfig

are available in the git repository at:

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

Laurence Withers (6):
      DaVinci: rename gpio_defs.h to gpio.h
      DA8xx: add generic GPIO driver
      DaVinci EMAC: declare function for all DA8xx CPUs
      DA8xx: add MMC/SD controller addresses
      DA8xx: switch an enum to defines for consistency
      DA8xx: fix LPSC constants

Sanjeev Premi (3):
      omap3: Include array definition only when it is used
      omap3evm: eth: split function setup_net_chip
      omap3evm: eth: Include functions only when necessary

Sriramakrishnan (1):
      omap3evm: Update ethernet reset sequence for Rev.G board

Yegor Yefremov (1):
      am3517evm: change console device from ttyS2 to ttyO2

 arch/arm/cpu/armv7/omap3/sys_info.c                |    3 +
 arch/arm/include/asm/arch-davinci/davinci_misc.h   |    2 +-
 .../asm/arch-davinci/{gpio_defs.h => gpio.h}       |    8 +
 arch/arm/include/asm/arch-davinci/hardware.h       |  102 +++++---
 board/davinci/dm355leopard/dm355leopard.c          |    2 +-
 board/davinci/dm365evm/dm365evm.c                  |    2 +-
 board/ti/evm/evm.c                                 |   45 +++-
 board/ti/evm/evm.h                                 |    1 +
 drivers/gpio/Makefile                              |    1 +
 drivers/gpio/da8xx_gpio.c                          |  281 ++++++++++++++++++++
 drivers/usb/musb/da8xx.h                           |    2 +-
 include/configs/am3517_evm.h                       |    2 +-
 12 files changed, 397 insertions(+), 54 deletions(-)
 rename arch/arm/include/asm/arch-davinci/{gpio_defs.h => gpio.h} (90%)
 create mode 100644 drivers/gpio/da8xx_gpio.c

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

* [U-Boot] Please pull u-boot-ti/master
  2011-06-09 12:58 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
@ 2011-06-13 10:23 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-06-13 10:23 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 09/06/2011 14:58, s-paulraj at ti.com a ?crit :
> The following changes since commit 9571865e0d32b1bcf8a6625497d1cd5d4bbad354:
>    Wolfgang Denk (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-arm
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Aneesh V (6):
>        omap1610h2: fix build breaks
>        omap5912osk: fix build breaks
>        omap1510inn: fix build breaks
>        omap1610inn: fix build breaks
>        omap2420h4: fix build breaks
>        omap730p2: fix build breaks
>
>   include/configs/omap1510inn.h |    5 +++++
>   include/configs/omap1610h2.h  |    5 +++++
>   include/configs/omap1610inn.h |    5 +++++
>   include/configs/omap2420h4.h  |    4 ++++
>   include/configs/omap5912osk.h |    5 +++++
>   include/configs/omap730p2.h   |    5 +++++
>   6 files changed, 29 insertions(+), 0 deletions(-)

Applied, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-06-09 12:58 s-paulraj at ti.com
  2011-06-13 10:23 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-06-09 12:58 UTC (permalink / raw)
  To: u-boot

The following changes since commit 9571865e0d32b1bcf8a6625497d1cd5d4bbad354:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

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

Aneesh V (6):
      omap1610h2: fix build breaks
      omap5912osk: fix build breaks
      omap1510inn: fix build breaks
      omap1610inn: fix build breaks
      omap2420h4: fix build breaks
      omap730p2: fix build breaks

 include/configs/omap1510inn.h |    5 +++++
 include/configs/omap1610h2.h  |    5 +++++
 include/configs/omap1610inn.h |    5 +++++
 include/configs/omap2420h4.h  |    4 ++++
 include/configs/omap5912osk.h |    5 +++++
 include/configs/omap730p2.h   |    5 +++++
 6 files changed, 29 insertions(+), 0 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-05-07 10:13 ` Albert ARIBAUD
@ 2011-05-09  5:49   ` Prafulla Wadaskar
  0 siblings, 0 replies; 324+ messages in thread
From: Prafulla Wadaskar @ 2011-05-09  5:49 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Saturday, May 07, 2011 3:43 PM
> To: s-paulraj at ti.com
> Cc: u-boot at lists.denx.de; Prafulla Wadaskar
> Subject: Re: Please pull u-boot-ti/master
> 
> Hi Sandeep,
> 
> Le 29/04/2011 22:39, s-paulraj at ti.com a ?crit :
> > The following changes since commit
> e2b1fb98dab08f18e456fd8d846440fe81567785:
> >    Sandeep Paulraj (1):
> >          Merge branch 'master' of git://git.denx.de/u-boot-arm
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> > Ben Gardiner (1):
> >        da850evm: fix NAND WSTROBE and TA timings
> >
> >   board/davinci/da8xxevm/da850evm.c |    4 ++--
> >   1 files changed, 2 insertions(+), 2 deletions(-)
> 
> Actually commit e2b1fb98dab08f18e456fd8d846440fe81567785 is a merge
> commit of the u-boot-arm/master branch into yours, whereas the pull
> request should have been based on the u-boot-arm/master branch itself,
> commit 2fa8ca98c37d5b1bb0328b19ddb7e9d162cd9683 (seems you have done a
> merge of u-boot-arm/master into u-boot-ti rather than a rebase of
> u-boot-ti onto u-boot-arm).
> 
> However, seeing as there is only one commit in the request, I'll simply
> cherry-pick it on top of my master and consider it as:
> 
> Applied, thanks.
> 
> Prafulla : take note that u-boot-arm/master has moved; if you have not
> already prepared your pull request, please rebase it, sorry for the
> inconvenience.

Hi Albert
Thanks, I will do it.
Regards..
Prafulla . .

> 
> Amicalement,
> --
> Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-29 20:39 s-paulraj at ti.com
@ 2011-05-07 10:13 ` Albert ARIBAUD
  2011-05-09  5:49   ` Prafulla Wadaskar
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-05-07 10:13 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 29/04/2011 22:39, s-paulraj at ti.com a ?crit :
> The following changes since commit e2b1fb98dab08f18e456fd8d846440fe81567785:
>    Sandeep Paulraj (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-arm
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Ben Gardiner (1):
>        da850evm: fix NAND WSTROBE and TA timings
>
>   board/davinci/da8xxevm/da850evm.c |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)

Actually commit e2b1fb98dab08f18e456fd8d846440fe81567785 is a merge 
commit of the u-boot-arm/master branch into yours, whereas the pull 
request should have been based on the u-boot-arm/master branch itself, 
commit 2fa8ca98c37d5b1bb0328b19ddb7e9d162cd9683 (seems you have done a 
merge of u-boot-arm/master into u-boot-ti rather than a rebase of 
u-boot-ti onto u-boot-arm).

However, seeing as there is only one commit in the request, I'll simply 
cherry-pick it on top of my master and consider it as:

Applied, thanks.

Prafulla : take note that u-boot-arm/master has moved; if you have not 
already prepared your pull request, please rebase it, sorry for the 
inconvenience.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-28 19:38 ` Albert ARIBAUD
@ 2011-04-29 20:39   ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2011-04-29 20:39 UTC (permalink / raw)
  To: u-boot


> >          nhk8815: move config targets from Makefile to boards.cfg
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> > Ben Gardiner (1):
> >        da850evm: fix NAND WSTROBE and TA timings
> >
> >   board/davinci/da8xxevm/da850evm.c |    4 ++--
> >   1 files changed, 2 insertions(+), 2 deletions(-)
> 
> Could you please rebase on current u-boot-arm/master ?

Done and sent an updated pull request.

--Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-29 20:39 s-paulraj at ti.com
  2011-05-07 10:13 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-29 20:39 UTC (permalink / raw)
  To: u-boot

The following changes since commit e2b1fb98dab08f18e456fd8d846440fe81567785:
  Sandeep Paulraj (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

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

Ben Gardiner (1):
      da850evm: fix NAND WSTROBE and TA timings

 board/davinci/da8xxevm/da850evm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-28 19:26 s-paulraj at ti.com
@ 2011-04-28 19:38 ` Albert ARIBAUD
  2011-04-29 20:39   ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2011-04-28 19:38 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 28/04/2011 21:26, s-paulraj at ti.com a ?crit :
> The following changes since commit 7a98e64789557da65af71d50b3b013a32fba8f95:
>    Alessandro Rubini (1):
>          nhk8815: move config targets from Makefile to boards.cfg
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Ben Gardiner (1):
>        da850evm: fix NAND WSTROBE and TA timings
>
>   board/davinci/da8xxevm/da850evm.c |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)

Could you please rebase on current u-boot-arm/master ?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-28 19:26 s-paulraj at ti.com
  2011-04-28 19:38 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-28 19:26 UTC (permalink / raw)
  To: u-boot

The following changes since commit 7a98e64789557da65af71d50b3b013a32fba8f95:
  Alessandro Rubini (1):
        nhk8815: move config targets from Makefile to boards.cfg

are available in the git repository at:

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

Ben Gardiner (1):
      da850evm: fix NAND WSTROBE and TA timings

 board/davinci/da8xxevm/da850evm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-20 15:16 s-paulraj at ti.com
@ 2011-04-20 18:43 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-04-20 18:43 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 20/04/2011 17:16, s-paulraj at ti.com a ?crit :
> The following changes since commit 104d04ed57d5de5d11fcd5b2242dadd325e9ce8f:
>    Albert Aribaud (1):
>          Merge remote-tracking branch 'u-boot-ti/master'
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Luca Ceresoli (2):
>        ARMV7: OMAP3: Cleanup extern variables in mem.c
>        ARMV7: OMAP3: Add support for Comelit DIG297 board
>
>   MAINTAINERS                     |    4 +
>   MAKEALL                         |    1 +
>   arch/arm/cpu/armv7/omap3/mem.c  |   32 ----
>   board/comelit/dig297/Makefile   |   49 +++++
>   board/comelit/dig297/dig297.c   |  187 +++++++++++++++++++
>   board/comelit/dig297/dig297.h   |  383 +++++++++++++++++++++++++++++++++++++++
>   boards.cfg                      |    1 +
>   include/configs/am3517_crane.h  |   16 +--
>   include/configs/am3517_evm.h    |   18 +--
>   include/configs/cm_t35.h        |   16 +-
>   include/configs/devkit8000.h    |   10 +-
>   include/configs/dig297.h        |  311 +++++++++++++++++++++++++++++++
>   include/configs/omap3_beagle.h  |   16 +-
>   include/configs/omap3_evm.h     |   26 ++--
>   include/configs/omap3_overo.h   |   16 +-
>   include/configs/omap3_pandora.h |   16 +-
>   include/configs/omap3_sdp3430.h |   10 -
>   include/configs/omap3_zoom1.h   |   16 +-
>   include/configs/omap3_zoom2.h   |   16 +-
>   19 files changed, 989 insertions(+), 155 deletions(-)
>   create mode 100644 board/comelit/dig297/Makefile
>   create mode 100644 board/comelit/dig297/dig297.c
>   create mode 100644 board/comelit/dig297/dig297.h
>   create mode 100644 include/configs/dig297.h

Pulled in u-boot-arm/master, thanks.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-20 15:16 s-paulraj at ti.com
  2011-04-20 18:43 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-20 15:16 UTC (permalink / raw)
  To: u-boot

The following changes since commit 104d04ed57d5de5d11fcd5b2242dadd325e9ce8f:
  Albert Aribaud (1):
        Merge remote-tracking branch 'u-boot-ti/master'

are available in the git repository at:

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

Luca Ceresoli (2):
      ARMV7: OMAP3: Cleanup extern variables in mem.c
      ARMV7: OMAP3: Add support for Comelit DIG297 board

 MAINTAINERS                     |    4 +
 MAKEALL                         |    1 +
 arch/arm/cpu/armv7/omap3/mem.c  |   32 ----
 board/comelit/dig297/Makefile   |   49 +++++
 board/comelit/dig297/dig297.c   |  187 +++++++++++++++++++
 board/comelit/dig297/dig297.h   |  383 +++++++++++++++++++++++++++++++++++++++
 boards.cfg                      |    1 +
 include/configs/am3517_crane.h  |   16 +--
 include/configs/am3517_evm.h    |   18 +--
 include/configs/cm_t35.h        |   16 +-
 include/configs/devkit8000.h    |   10 +-
 include/configs/dig297.h        |  311 +++++++++++++++++++++++++++++++
 include/configs/omap3_beagle.h  |   16 +-
 include/configs/omap3_evm.h     |   26 ++--
 include/configs/omap3_overo.h   |   16 +-
 include/configs/omap3_pandora.h |   16 +-
 include/configs/omap3_sdp3430.h |   10 -
 include/configs/omap3_zoom1.h   |   16 +-
 include/configs/omap3_zoom2.h   |   16 +-
 19 files changed, 989 insertions(+), 155 deletions(-)
 create mode 100644 board/comelit/dig297/Makefile
 create mode 100644 board/comelit/dig297/dig297.c
 create mode 100644 board/comelit/dig297/dig297.h
 create mode 100644 include/configs/dig297.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-19 14:02 s-paulraj at ti.com
@ 2011-04-20  8:58 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-04-20  8:58 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 19/04/2011 16:02, s-paulraj at ti.com a ?crit :
> The following changes since commit 75cb6fbe7293fbde04662124bf8f4dbef0dbce44:
>    Albert Aribaud (1):
>          Merge remote-tracking branch 'u-boot-ti/master'
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Alexander Holler (3):
>        OMAP3: Change some USB related MUX values
>        OMAP3: Add support for DPLL5 (usbhost)
>        omap3_beagle: enable EHCI and USB storage.
>
> Enric Balletbo i Serra (2):
>        ARM: OMAP3: Revamp IGEP v2 default
>        ARM: OMAP3: Revamp IGEP module default configuration
>
> Luca Ceresoli (2):
>        ARMV7: OMAP3: Fix preprocessor check for CONFIG_OMAP34XX
>        ARMV7: OMAP3: Add GPMC_CONFIGx register value definitions
>
>   arch/arm/cpu/armv7/omap3/clock.c               |   20 +++++
>   arch/arm/cpu/armv7/omap3/lowlevel_init.S       |   22 +++++
>   arch/arm/cpu/armv7/start.S                     |    2 +-
>   arch/arm/include/asm/arch-omap3/clocks.h       |    1 +
>   arch/arm/include/asm/arch-omap3/clocks_omap3.h |   26 ++++++
>   arch/arm/include/asm/arch-omap3/cpu.h          |   21 ++++-
>   arch/arm/include/asm/arch-omap3/ehci_omap3.h   |   58 +++++++++++++
>   arch/arm/include/asm/arch-omap3/omap3-regs.h   |   95 +++++++++++++++++++++
>   board/ti/beagle/beagle.c                       |  106 ++++++++++++++++++++++++
>   board/ti/beagle/beagle.h                       |   27 +++---
>   include/configs/igep0020.h                     |   57 ++++++++++++-
>   include/configs/igep0030.h                     |   57 ++++++++++++-
>   include/configs/omap3_beagle.h                 |    6 ++
>   13 files changed, 469 insertions(+), 29 deletions(-)
>   create mode 100644 arch/arm/include/asm/arch-omap3/ehci_omap3.h
>   create mode 100644 arch/arm/include/asm/arch-omap3/omap3-regs.h

Pulled in u-boot-arm/master, thanks.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-19 14:02 s-paulraj at ti.com
  2011-04-20  8:58 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-19 14:02 UTC (permalink / raw)
  To: u-boot

The following changes since commit 75cb6fbe7293fbde04662124bf8f4dbef0dbce44:
  Albert Aribaud (1):
        Merge remote-tracking branch 'u-boot-ti/master'

are available in the git repository at:

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

Alexander Holler (3):
      OMAP3: Change some USB related MUX values
      OMAP3: Add support for DPLL5 (usbhost)
      omap3_beagle: enable EHCI and USB storage.

Enric Balletbo i Serra (2):
      ARM: OMAP3: Revamp IGEP v2 default
      ARM: OMAP3: Revamp IGEP module default configuration

Luca Ceresoli (2):
      ARMV7: OMAP3: Fix preprocessor check for CONFIG_OMAP34XX
      ARMV7: OMAP3: Add GPMC_CONFIGx register value definitions

 arch/arm/cpu/armv7/omap3/clock.c               |   20 +++++
 arch/arm/cpu/armv7/omap3/lowlevel_init.S       |   22 +++++
 arch/arm/cpu/armv7/start.S                     |    2 +-
 arch/arm/include/asm/arch-omap3/clocks.h       |    1 +
 arch/arm/include/asm/arch-omap3/clocks_omap3.h |   26 ++++++
 arch/arm/include/asm/arch-omap3/cpu.h          |   21 ++++-
 arch/arm/include/asm/arch-omap3/ehci_omap3.h   |   58 +++++++++++++
 arch/arm/include/asm/arch-omap3/omap3-regs.h   |   95 +++++++++++++++++++++
 board/ti/beagle/beagle.c                       |  106 ++++++++++++++++++++++++
 board/ti/beagle/beagle.h                       |   27 +++---
 include/configs/igep0020.h                     |   57 ++++++++++++-
 include/configs/igep0030.h                     |   57 ++++++++++++-
 include/configs/omap3_beagle.h                 |    6 ++
 13 files changed, 469 insertions(+), 29 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap3/ehci_omap3.h
 create mode 100644 arch/arm/include/asm/arch-omap3/omap3-regs.h

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

* [U-Boot] Please pull u-boot-ti/master
  2011-04-18 23:33 s-paulraj at ti.com
@ 2011-04-19  5:41 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-04-19  5:41 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 19/04/2011 01:33, s-paulraj at ti.com a ?crit :
> The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba:
>    Fabio Estevam (1):
>          MAINTAINERS: fix email address case
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Alexander Holler (1):
>        omap3_beagle: enable the use of a plain text file
>
> Igor Grinberg (9):
>        OMAP3: CM-T35: Move DECLARE_GLOBAL_DATA_PTR to file scope
>        OMAP3: CM-T35: update config
>        OMAP3: CM-T35: update board files header information
>        OMAP3: CM-T35: update MAINTAINERS file
>        OMAP3: CM-T35: add MMC1 pinmux
>        OMAP3: CM-T35: fix mmc
>        OMAP3: CM-T35: remove redundand i2c initialization
>        OMAP3: CM-T35: enable the green LED
>        OMAP3: CM-T35: Add support for CM-T3730
>
> Jason Kridner (2):
>        Add 'led' command
>        BeagleBoard: Added LED driver
>
> Koen Kooi (2):
>        OMAP3: BeagleBoard: add xM rev B to ID table
>        OMAP3: BeagleBoard: add more expansionboard IDs
>
> Srinath (1):
>        ARMV7: AM3517/05: Add support for CraneBoard.
>
> Steve Kipisz (1):
>        OMAP3: BeagleBoard: Enable pullups on i2c2.
>
>   MAINTAINERS                             |   12 +-
>   MAKEALL                                 |    1 +
>   arch/arm/include/asm/arch-omap3/omap3.h |   14 +
>   board/cm_t35/Makefile                   |    2 +-
>   board/cm_t35/cm_t35.c                   |  116 +++++++---
>   board/cm_t35/leds.c                     |   45 ++++
>   board/ti/am3517crane/Makefile           |   46 ++++
>   board/ti/am3517crane/am3517crane.c      |   75 ++++++
>   board/ti/am3517crane/am3517crane.h      |  395 +++++++++++++++++++++++++++++++
>   board/ti/am3517crane/config.mk          |   29 +++
>   board/ti/beagle/Makefile                |    4 +-
>   board/ti/beagle/beagle.c                |   63 +++++-
>   board/ti/beagle/beagle.h                |   15 +-
>   board/ti/beagle/led.c                   |   91 +++++++
>   boards.cfg                              |    1 +
>   common/cmd_led.c                        |  153 ++++++++++++
>   include/configs/am3517_crane.h          |  340 ++++++++++++++++++++++++++
>   include/configs/cm_t35.h                |   41 +++-
>   include/configs/omap3_beagle.h          |   43 +++-
>   19 files changed, 1413 insertions(+), 73 deletions(-)
>   create mode 100644 board/cm_t35/leds.c
>   create mode 100644 board/ti/am3517crane/Makefile
>   create mode 100644 board/ti/am3517crane/am3517crane.c
>   create mode 100644 board/ti/am3517crane/am3517crane.h
>   create mode 100644 board/ti/am3517crane/config.mk
>   create mode 100644 board/ti/beagle/led.c
>   create mode 100644 common/cmd_led.c
>   create mode 100644 include/configs/am3517_crane.h

Applied, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-18 23:33 s-paulraj at ti.com
  2011-04-19  5:41 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-18 23:33 UTC (permalink / raw)
  To: u-boot

The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba:
  Fabio Estevam (1):
        MAINTAINERS: fix email address case

are available in the git repository at:

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

Alexander Holler (1):
      omap3_beagle: enable the use of a plain text file

Igor Grinberg (9):
      OMAP3: CM-T35: Move DECLARE_GLOBAL_DATA_PTR to file scope
      OMAP3: CM-T35: update config
      OMAP3: CM-T35: update board files header information
      OMAP3: CM-T35: update MAINTAINERS file
      OMAP3: CM-T35: add MMC1 pinmux
      OMAP3: CM-T35: fix mmc
      OMAP3: CM-T35: remove redundand i2c initialization
      OMAP3: CM-T35: enable the green LED
      OMAP3: CM-T35: Add support for CM-T3730

Jason Kridner (2):
      Add 'led' command
      BeagleBoard: Added LED driver

Koen Kooi (2):
      OMAP3: BeagleBoard: add xM rev B to ID table
      OMAP3: BeagleBoard: add more expansionboard IDs

Srinath (1):
      ARMV7: AM3517/05: Add support for CraneBoard.

Steve Kipisz (1):
      OMAP3: BeagleBoard: Enable pullups on i2c2.

 MAINTAINERS                             |   12 +-
 MAKEALL                                 |    1 +
 arch/arm/include/asm/arch-omap3/omap3.h |   14 +
 board/cm_t35/Makefile                   |    2 +-
 board/cm_t35/cm_t35.c                   |  116 +++++++---
 board/cm_t35/leds.c                     |   45 ++++
 board/ti/am3517crane/Makefile           |   46 ++++
 board/ti/am3517crane/am3517crane.c      |   75 ++++++
 board/ti/am3517crane/am3517crane.h      |  395 +++++++++++++++++++++++++++++++
 board/ti/am3517crane/config.mk          |   29 +++
 board/ti/beagle/Makefile                |    4 +-
 board/ti/beagle/beagle.c                |   63 +++++-
 board/ti/beagle/beagle.h                |   15 +-
 board/ti/beagle/led.c                   |   91 +++++++
 boards.cfg                              |    1 +
 common/cmd_led.c                        |  153 ++++++++++++
 include/configs/am3517_crane.h          |  340 ++++++++++++++++++++++++++
 include/configs/cm_t35.h                |   41 +++-
 include/configs/omap3_beagle.h          |   43 +++-
 19 files changed, 1413 insertions(+), 73 deletions(-)
 create mode 100644 board/cm_t35/leds.c
 create mode 100644 board/ti/am3517crane/Makefile
 create mode 100644 board/ti/am3517crane/am3517crane.c
 create mode 100644 board/ti/am3517crane/am3517crane.h
 create mode 100644 board/ti/am3517crane/config.mk
 create mode 100644 board/ti/beagle/led.c
 create mode 100644 common/cmd_led.c
 create mode 100644 include/configs/am3517_crane.h

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

* [U-Boot] Please pull u-boot-ti/master
@ 2011-04-18 23:18 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2011-04-18 23:18 UTC (permalink / raw)
  To: u-boot

The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba:
  Fabio Estevam (1):
        MAINTAINERS: fix email address case

are available in the git repository at:

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

Alexander Holler (1):
      omap3_beagle: enable the use of a plain text file

Igor Grinberg (9):
      OMAP3: CM-T35: Move DECLARE_GLOBAL_DATA_PTR to file scope
      OMAP3: CM-T35: update config
      OMAP3: CM-T35: update board files header information
      OMAP3: CM-T35: update MAINTAINERS file
      OMAP3: CM-T35: add MMC1 pinmux
      OMAP3: CM-T35: fix mmc
      OMAP3: CM-T35: remove redundand i2c initialization
      OMAP3: CM-T35: enable the green LED
      OMAP3: CM-T35: Add support for CM-T3730

Jason Kridner (2):
      Add 'led' command
      BeagleBoard: Added LED driver

Koen Kooi (2):
      OMAP3: BeagleBoard: add xM rev B to ID table
      OMAP3: BeagleBoard: add more expansionboard IDs

Srinath (1):
      ARMV7: AM3517/05: Add support for CraneBoard.

Steve Kipisz (1):
      OMAP3: BeagleBoard: Enable pullups on i2c2.

 MAINTAINERS                             |   12 +-
 MAKEALL                                 |    1 +
 arch/arm/include/asm/arch-omap3/omap3.h |   14 +
 board/cm_t35/Makefile                   |    2 +-
 board/cm_t35/cm_t35.c                   |  116 +++++++---
 board/cm_t35/leds.c                     |   45 ++++
 board/ti/am3517crane/Makefile           |   46 ++++
 board/ti/am3517crane/am3517crane.c      |   75 ++++++
 board/ti/am3517crane/am3517crane.h      |  395 +++++++++++++++++++++++++++++++
 board/ti/am3517crane/config.mk          |   29 +++
 board/ti/beagle/Makefile                |    4 +-
 board/ti/beagle/beagle.c                |   63 +++++-
 board/ti/beagle/beagle.h                |   15 +-
 board/ti/beagle/led.c                   |   91 +++++++
 boards.cfg                              |    1 +
 common/cmd_led.c                        |  153 ++++++++++++
 include/configs/am3517_crane.h          |  340 ++++++++++++++++++++++++++
 include/configs/cm_t35.h                |   41 +++-
 include/configs/omap3_beagle.h          |   43 +++-
 19 files changed, 1413 insertions(+), 73 deletions(-)
 create mode 100644 board/cm_t35/leds.c
 create mode 100644 board/ti/am3517crane/Makefile
 create mode 100644 board/ti/am3517crane/am3517crane.c
 create mode 100644 board/ti/am3517crane/am3517crane.h
 create mode 100644 board/ti/am3517crane/config.mk
 create mode 100644 board/ti/beagle/led.c
 create mode 100644 common/cmd_led.c
 create mode 100644 include/configs/am3517_crane.h

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-30 16:36 s-paulraj at ti.com
@ 2011-01-05 20:40 ` Albert ARIBAUD
  0 siblings, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2011-01-05 20:40 UTC (permalink / raw)
  To: u-boot

Le 30/12/2010 17:36, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master
>
> Regards,
> Sandeep
>
> The following changes since commit b722e646f9a6e2ebcae4845afc596b4dad4f7bcb:
>    Sandeep Paulraj (1):
>          DaVinci DM6467: Enhance board Support
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master

Pulled, thanks.

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-12-30 16:36 s-paulraj at ti.com
  2011-01-05 20:40 ` Albert ARIBAUD
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-12-30 16:36 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-ti/master

Regards,
Sandeep

The following changes since commit b722e646f9a6e2ebcae4845afc596b4dad4f7bcb:
  Sandeep Paulraj (1):
        DaVinci DM6467: Enhance board Support

are available in the git repository at:

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

Sandeep Paulraj (3):
      DaVinci DM6467: Fix Build Error
      DaVinci Sonata: Fix Build Error
      DaVinci: Remove incorrect CONFIG option

 arch/arm/cpu/arm926ejs/davinci/cpu.c |   14 ++++++++++++--
 include/configs/davinci_sonata.h     |    1 +
 2 files changed, 13 insertions(+), 2 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-28 23:39 s-paulraj at ti.com
  2010-12-28 23:49 ` Albert ARIBAUD
@ 2010-12-29  0:14 ` Albert ARIBAUD
  1 sibling, 0 replies; 324+ messages in thread
From: Albert ARIBAUD @ 2010-12-29  0:14 UTC (permalink / raw)
  To: u-boot

Le 29/12/2010 00:39, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master
> This pull request consists of an update to the ARM mach-types.
> Also added some fixes and minor enhancements to DaVinci support.
> Most of the patches are either in an internal TI tree or have been
> sent to the list but never made it upstream.
>
> Regards,
> Sandeep
>
> The following changes since commit 71bbbc293f1b55b8650807588344508dc6e259b3:
>    Sandeep Paulraj (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-ti
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Sandeep Paulraj (6):
>        DM365: Fix Build Error
>        DaVinci EMAC: Fix davinci_eth_gigabit_enable
>        DaVinci EMAC: Add name to Ethernet device
>        DaVinci DM6467: Added ET1011C (LSI) PHY support
>        ARM: Update mach types
>        DaVinci DM6467: Enhance board Support
>
>   arch/arm/cpu/arm926ejs/davinci/Makefile       |    2 +-
>   arch/arm/cpu/arm926ejs/davinci/et1011c.c      |   55 +
>   arch/arm/include/asm/arch-davinci/emac_defs.h |    3 +
>   arch/arm/include/asm/arch-davinci/hardware.h  |    1 +
>   arch/arm/include/asm/mach-types.h             | 2305 ++++++++++++++++++++++++-
>   board/davinci/common/misc.c                   |    2 +-
>   board/davinci/dm6467evm/dm6467evm.c           |   26 +
>   drivers/net/davinci_emac.c                    |   15 +-
>   include/configs/davinci_dm6467evm.h           |   30 +-
>   9 files changed, 2417 insertions(+), 22 deletions(-)
>   create mode 100644 arch/arm/cpu/arm926ejs/davinci/et1011c.c

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

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-28 23:49 ` Albert ARIBAUD
@ 2010-12-28 23:59   ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2010-12-28 23:59 UTC (permalink / raw)
  To: u-boot


> 
> Hi Sandeep,
> 
> Le 29/12/2010 00:39, s-paulraj at ti.com a ?crit :
> > Albert,
> >
> > Please pull u-boot-ti/master
> > This pull request consists of an update to the ARM mach-types.
> > Also added some fixes and minor enhancements to DaVinci support.
> > Most of the patches are either in an internal TI tree or have been
> > sent to the list but never made it upstream.
> >
> > Regards,
> > Sandeep
> >
> > The following changes since commit
> 71bbbc293f1b55b8650807588344508dc6e259b3:
> >    Sandeep Paulraj (1):
> >          Merge branch 'master' of git://git.denx.de/u-boot-ti
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git master
> >
> > Sandeep Paulraj (6):
> >        DM365: Fix Build Error
> >        DaVinci EMAC: Fix davinci_eth_gigabit_enable
> >        DaVinci EMAC: Add name to Ethernet device
> >        DaVinci DM6467: Added ET1011C (LSI) PHY support
> >        ARM: Update mach types
> >        DaVinci DM6467: Enhance board Support
> 
> For the record, were all the changes tested?

On the DM365 and DM355 yes
The DM6467 still needs some more patches that I will need to send to the list. I have not had the opportunity to do so. As I mention the patches are all in the mailing list but have not made it upstream. Merely trying to make sure that the DM6467 is functional before the next release otherwise it gets dumped from the tree as we know

The ARM mach-types was a simple copy paste of what is in Linus's tree.
It only enables new boards.

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-28 23:39 s-paulraj at ti.com
@ 2010-12-28 23:49 ` Albert ARIBAUD
  2010-12-28 23:59   ` Paulraj, Sandeep
  2010-12-29  0:14 ` Albert ARIBAUD
  1 sibling, 1 reply; 324+ messages in thread
From: Albert ARIBAUD @ 2010-12-28 23:49 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 29/12/2010 00:39, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/master
> This pull request consists of an update to the ARM mach-types.
> Also added some fixes and minor enhancements to DaVinci support.
> Most of the patches are either in an internal TI tree or have been
> sent to the list but never made it upstream.
>
> Regards,
> Sandeep
>
> The following changes since commit 71bbbc293f1b55b8650807588344508dc6e259b3:
>    Sandeep Paulraj (1):
>          Merge branch 'master' of git://git.denx.de/u-boot-ti
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git master
>
> Sandeep Paulraj (6):
>        DM365: Fix Build Error
>        DaVinci EMAC: Fix davinci_eth_gigabit_enable
>        DaVinci EMAC: Add name to Ethernet device
>        DaVinci DM6467: Added ET1011C (LSI) PHY support
>        ARM: Update mach types
>        DaVinci DM6467: Enhance board Support

For the record, were all the changes tested?

Amicalement,
-- 
Albert.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-12-28 23:39 s-paulraj at ti.com
  2010-12-28 23:49 ` Albert ARIBAUD
  2010-12-29  0:14 ` Albert ARIBAUD
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-12-28 23:39 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-ti/master
This pull request consists of an update to the ARM mach-types. 
Also added some fixes and minor enhancements to DaVinci support.
Most of the patches are either in an internal TI tree or have been
sent to the list but never made it upstream.

Regards,
Sandeep

The following changes since commit 71bbbc293f1b55b8650807588344508dc6e259b3:
  Sandeep Paulraj (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ti

are available in the git repository at:

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

Sandeep Paulraj (6):
      DM365: Fix Build Error
      DaVinci EMAC: Fix davinci_eth_gigabit_enable
      DaVinci EMAC: Add name to Ethernet device
      DaVinci DM6467: Added ET1011C (LSI) PHY support
      ARM: Update mach types
      DaVinci DM6467: Enhance board Support

 arch/arm/cpu/arm926ejs/davinci/Makefile       |    2 +-
 arch/arm/cpu/arm926ejs/davinci/et1011c.c      |   55 +
 arch/arm/include/asm/arch-davinci/emac_defs.h |    3 +
 arch/arm/include/asm/arch-davinci/hardware.h  |    1 +
 arch/arm/include/asm/mach-types.h             | 2305 ++++++++++++++++++++++++-
 board/davinci/common/misc.c                   |    2 +-
 board/davinci/dm6467evm/dm6467evm.c           |   26 +
 drivers/net/davinci_emac.c                    |   15 +-
 include/configs/davinci_dm6467evm.h           |   30 +-
 9 files changed, 2417 insertions(+), 22 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/et1011c.c

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-14  2:45 s-paulraj at ti.com
@ 2010-12-17  9:08 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-12-17  9:08 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1292294751-6695-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang,
> 
> If you think this is not too late, then please add this to master.
> If not to next.
> 
> Regards,
> Sandeep
> 
> The following changes since commit f8689b9eb3a7f6925cd50404a12479889188c510:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Sandeep Paulraj (5):
>       DaVinci: Config cleanup
>       DaVinci Sonata: Add ARM Relocation Support
>       DaVinci sffsdr: Add ARM Relocation Support
>       DaVinci Schmoogie: Add ARM Relocation Support
>       DaVinci DM6467: Add ARM Relocation Support
> 
>  include/configs/davinci_dm6467evm.h |    8 ++++++++
>  include/configs/davinci_schmoogie.h |   16 +++++++++-------
>  include/configs/davinci_sffsdr.h    |   14 +++++++++-----
>  include/configs/davinci_sonata.h    |   16 +++++++++-------
>  4 files changed, 35 insertions(+), 19 deletions(-)


Pulled, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
You don't need a weatherman to know which way the wind blows.
                                                          - Bob Dylan

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-12-14  2:45 s-paulraj at ti.com
  2010-12-17  9:08 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-12-14  2:45 UTC (permalink / raw)
  To: u-boot

Wolfgang,

If you think this is not too late, then please add this to master.
If not to next.

Regards,
Sandeep

The following changes since commit f8689b9eb3a7f6925cd50404a12479889188c510:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx

are available in the git repository at:

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

Sandeep Paulraj (5):
      DaVinci: Config cleanup
      DaVinci Sonata: Add ARM Relocation Support
      DaVinci sffsdr: Add ARM Relocation Support
      DaVinci Schmoogie: Add ARM Relocation Support
      DaVinci DM6467: Add ARM Relocation Support

 include/configs/davinci_dm6467evm.h |    8 ++++++++
 include/configs/davinci_schmoogie.h |   16 +++++++++-------
 include/configs/davinci_sffsdr.h    |   14 +++++++++-----
 include/configs/davinci_sonata.h    |   16 +++++++++-------
 4 files changed, 35 insertions(+), 19 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-12-11 15:54 s-paulraj at ti.com
@ 2010-12-13 22:52 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-12-13 22:52 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1292082883-16881-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-imx
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Dirk Behme (1):
>       OMAP: Timer: Replace bss variable by gd
> 
> Nick Thompson (1):
>       davinci: Rewrite timer.c to use tbl/tbu emulation variables in gd
> 
> Sandeep Paulraj (1):
>       DaVinci DM6446: Config Update
> 
>  arch/arm/cpu/arm926ejs/davinci/timer.c |   77 ++++++++++++--------------------
>  arch/arm/cpu/armv7/omap-common/timer.c |   22 +++++-----
>  include/configs/davinci_dvevm.h        |   19 +++++---
>  3 files changed, 50 insertions(+), 68 deletions(-)

Applied (including the additional commit not mentioned here).  Thanks

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Q: How do you spell "onomatopoeia"?
A: The way it sounds.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-12-11 15:54 s-paulraj at ti.com
  2010-12-13 22:52 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-12-11 15:54 UTC (permalink / raw)
  To: u-boot

The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-imx

are available in the git repository at:

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

Dirk Behme (1):
      OMAP: Timer: Replace bss variable by gd

Nick Thompson (1):
      davinci: Rewrite timer.c to use tbl/tbu emulation variables in gd

Sandeep Paulraj (1):
      DaVinci DM6446: Config Update

 arch/arm/cpu/arm926ejs/davinci/timer.c |   77 ++++++++++++--------------------
 arch/arm/cpu/armv7/omap-common/timer.c |   22 +++++-----
 include/configs/davinci_dvevm.h        |   19 +++++---
 3 files changed, 50 insertions(+), 68 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-11-30 16:13 s-paulraj at ti.com
@ 2010-11-30 20:26 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-11-30 20:26 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1291133587-9118-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
>   Wolfgang Denk (1):
>         Prepare v2010.12-rc2
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Dirk Behme (4):
>       OMAP4: SDP4430: Disable CMD_NFS
>       OMAP3: SDP3430: Fix ARM relocation support
>       OMAP3: Zoom1: Fix ARM relocation support
>       OMAP3: Zoom2: Fix ARM relocation support
> 
> Enric Balletbo i Serra (1):
>       ARMV7: OMAP3: Fix build failure for igep0030 machine
> 
> Sanjeev Premi (1):
>       omap3evm: Use GENERATED_GBL_DATA_SIZE
> 
> Vaibhav Hiremath (3):
>       AM3517:Fix for ARM Relocation support
>       AM3517:Build FIX: undef CONFIG_CMD_NFS support
>       AM3517:EMIF4: fix SDRAM size to 256Mb
> 
>  arch/arm/cpu/armv7/omap3/emif4.c  |    5 +++--
>  board/logicpd/am3517evm/config.mk |    2 +-
>  board/logicpd/zoom1/config.mk     |    2 +-
>  board/logicpd/zoom2/config.mk     |    2 +-
>  board/ti/sdp3430/config.mk        |    2 +-
>  include/configs/am3517_evm.h      |    7 +++++++
>  include/configs/igep0030.h        |    1 +
>  include/configs/omap3_evm.h       |    6 +++++-
>  include/configs/omap3_sdp3430.h   |    6 ++++++
>  include/configs/omap3_zoom1.h     |    6 ++++++
>  include/configs/omap3_zoom2.h     |    6 ++++++
>  include/configs/omap4_sdp4430.h   |    1 +
>  12 files changed, 39 insertions(+), 7 deletions(-)

Applied, thanks.

Sandeep, it would be great if you could update the state of the
patches in Patchwork. After appling the patches to your custodian
tree, they should be in state "Awaiting Upstream".

Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"No proper program contains  an  indication  which  as  an  operator-
applied  occurrence  identifies an operator-defining occurrence which
as an indication-applied occurrence identifies an indication-defining
occurrence different from the one identified by the given  indication
as an indication-applied occurrence."               - ALGOL 68 Report

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

* [U-Boot] Please pull u-boot-ti/master
  2010-11-30  3:28 s-paulraj at ti.com
@ 2010-11-30 20:18 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-11-30 20:18 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1291087730-15875-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang, Albert,
> 
> Sorry I don't know who will accept my pull request so addressing both of you.
> Please pull u-boot-ti/master.


For this release I will still take this stuff. Albert formally takes
over after the release is out.

Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Witch!  Witch!  They'll burn ya!
	-- Hag, "Tomorrow is Yesterday", stardate unknown

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-11-30 16:13 s-paulraj at ti.com
  2010-11-30 20:26 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-11-30 16:13 UTC (permalink / raw)
  To: u-boot

The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
  Wolfgang Denk (1):
        Prepare v2010.12-rc2

are available in the git repository at:

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

Dirk Behme (4):
      OMAP4: SDP4430: Disable CMD_NFS
      OMAP3: SDP3430: Fix ARM relocation support
      OMAP3: Zoom1: Fix ARM relocation support
      OMAP3: Zoom2: Fix ARM relocation support

Enric Balletbo i Serra (1):
      ARMV7: OMAP3: Fix build failure for igep0030 machine

Sanjeev Premi (1):
      omap3evm: Use GENERATED_GBL_DATA_SIZE

Vaibhav Hiremath (3):
      AM3517:Fix for ARM Relocation support
      AM3517:Build FIX: undef CONFIG_CMD_NFS support
      AM3517:EMIF4: fix SDRAM size to 256Mb

 arch/arm/cpu/armv7/omap3/emif4.c  |    5 +++--
 board/logicpd/am3517evm/config.mk |    2 +-
 board/logicpd/zoom1/config.mk     |    2 +-
 board/logicpd/zoom2/config.mk     |    2 +-
 board/ti/sdp3430/config.mk        |    2 +-
 include/configs/am3517_evm.h      |    7 +++++++
 include/configs/igep0030.h        |    1 +
 include/configs/omap3_evm.h       |    6 +++++-
 include/configs/omap3_sdp3430.h   |    6 ++++++
 include/configs/omap3_zoom1.h     |    6 ++++++
 include/configs/omap3_zoom2.h     |    6 ++++++
 include/configs/omap4_sdp4430.h   |    1 +
 12 files changed, 39 insertions(+), 7 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-11-30  3:28 s-paulraj at ti.com
  2010-11-30 20:18 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-11-30  3:28 UTC (permalink / raw)
  To: u-boot

Wolfgang, Albert,

Sorry I don't know who will accept my pull request so addressing both of you.
Please pull u-boot-ti/master.

Regards,
Sandeep

The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
  Wolfgang Denk (1):
        Prepare v2010.12-rc2

are available in the git repository at:

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

Dirk Behme (1):
      OMAP4: SDP4430: Disable CMD_NFS

Enric Balletbo i Serra (1):
      ARMV7: OMAP3: Fix build failure for igep0030 machine

Sanjeev Premi (1):
      omap3evm: Use GENERATED_GBL_DATA_SIZE

Vaibhav Hiremath (3):
      AM3517:Fix for ARM Relocation support
      AM3517:Build FIX: undef CONFIG_CMD_NFS support
      AM3517:EMIF4: fix SDRAM size to 256Mb

 arch/arm/cpu/armv7/omap3/emif4.c  |    5 +++--
 board/logicpd/am3517evm/config.mk |    2 +-
 include/configs/am3517_evm.h      |    7 +++++++
 include/configs/igep0030.h        |    1 +
 include/configs/omap3_evm.h       |    6 +++++-
 include/configs/omap4_sdp4430.h   |    1 +
 6 files changed, 18 insertions(+), 4 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-11-29  1:04 s-paulraj at ti.com
@ 2010-11-29 20:28 ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2010-11-29 20:28 UTC (permalink / raw)
  To: u-boot



> Wolfgang,
> 
> Please pull this patch to your master.
> With this one more ARM board builds
> 
> Thanks,
> Sandeep
> 
> The following changes since commit
> d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
>   Wolfgang Denk (1):
>         Prepare v2010.12-rc2
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Dirk Behme (1):
>       OMAP4: SDP4430: Disable CMD_NFS
> 
>  include/configs/omap4_sdp4430.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)

Please ignore this pull request.
I will send an updated pull request that will fix many other boards.

--Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-11-29  1:04 s-paulraj at ti.com
  2010-11-29 20:28 ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-11-29  1:04 UTC (permalink / raw)
  To: u-boot

Wolfgang,

Please pull this patch to your master.
With this one more ARM board builds

Thanks,
Sandeep

The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
  Wolfgang Denk (1):
        Prepare v2010.12-rc2

are available in the git repository at:

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

Dirk Behme (1):
      OMAP4: SDP4430: Disable CMD_NFS

 include/configs/omap4_sdp4430.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-11-19 21:31 s-paulraj at ti.com
@ 2010-11-24 18:17 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-11-24 18:17 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1290202270-11992-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit 635d1b3e1b885267de90d100402ba7748fdd9bc5:
>   Matthias Weisser (1):
>         Makefile: Fix build with USE_PRIVATE_LIBGCC
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Grazvydas Ignotas (3):
>       OMAP3: pandora: fix relocation and init memory
>       OMAP3: remove unused config macros
>       OMAP3: pandora: update config for production
> 
> Nick Thompson (1):
>       da830: fixup ARM relocation support
> 
> Nishanth Menon (2):
>       mmc: omap: timeout counter fix
>       omap4: board: change global data pointer to file scope
> 
> Sekhar Nori (2):
>       DA850 EVM: add information regarding DA850 in README.davinci
>       DA850 EVM: passing maximum clock rate information to kernel
> 
> Steve Sakoman (1):
>       OMAP4: Panda: Disable CMD_NFS
> 
> Wolfgang Denk (1):
>       DaVinci: remove bogus DEF_BOOTM definition
> 
>  arch/arm/cpu/armv7/omap4/board.c  |    3 +-
>  board/davinci/da8xxevm/da850evm.c |   33 ++++++++++
>  board/pandora/config.mk           |   33 ----------
>  doc/README.davinci                |   25 ++++++++
>  drivers/mmc/omap_hsmmc.c          |  107 ++++++++++++++++++++++++++--------
>  include/configs/da830evm.h        |   11 +++-
>  include/configs/da850evm.h        |    2 +-
>  include/configs/davinci_dvevm.h   |    1 -
>  include/configs/davinci_sonata.h  |    1 -
>  include/configs/omap3_beagle.h    |   18 ------
>  include/configs/omap3_evm.h       |   18 ------
>  include/configs/omap3_overo.h     |   18 ------
>  include/configs/omap3_pandora.h   |  117 ++++++++++++++++--------------------
>  include/configs/omap3_sdp3430.h   |    7 --
>  include/configs/omap3_zoom1.h     |   18 ------
>  include/configs/omap3_zoom2.h     |   10 ---
>  include/configs/omap4_panda.h     |    1 +
>  include/configs/tnetv107x_evm.h   |    1 -
>  18 files changed, 204 insertions(+), 220 deletions(-)
>  delete mode 100644 board/pandora/config.mk

Applied to u-boot-arm, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Why can you only have two doors on a chicken coop? If it had four  it
would be a chicken sedan.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-11-19 21:31 s-paulraj at ti.com
  2010-11-24 18:17 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-11-19 21:31 UTC (permalink / raw)
  To: u-boot

The following changes since commit 635d1b3e1b885267de90d100402ba7748fdd9bc5:
  Matthias Weisser (1):
        Makefile: Fix build with USE_PRIVATE_LIBGCC

are available in the git repository at:

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

Grazvydas Ignotas (3):
      OMAP3: pandora: fix relocation and init memory
      OMAP3: remove unused config macros
      OMAP3: pandora: update config for production

Nick Thompson (1):
      da830: fixup ARM relocation support

Nishanth Menon (2):
      mmc: omap: timeout counter fix
      omap4: board: change global data pointer to file scope

Sekhar Nori (2):
      DA850 EVM: add information regarding DA850 in README.davinci
      DA850 EVM: passing maximum clock rate information to kernel

Steve Sakoman (1):
      OMAP4: Panda: Disable CMD_NFS

Wolfgang Denk (1):
      DaVinci: remove bogus DEF_BOOTM definition

 arch/arm/cpu/armv7/omap4/board.c  |    3 +-
 board/davinci/da8xxevm/da850evm.c |   33 ++++++++++
 board/pandora/config.mk           |   33 ----------
 doc/README.davinci                |   25 ++++++++
 drivers/mmc/omap_hsmmc.c          |  107 ++++++++++++++++++++++++++--------
 include/configs/da830evm.h        |   11 +++-
 include/configs/da850evm.h        |    2 +-
 include/configs/davinci_dvevm.h   |    1 -
 include/configs/davinci_sonata.h  |    1 -
 include/configs/omap3_beagle.h    |   18 ------
 include/configs/omap3_evm.h       |   18 ------
 include/configs/omap3_overo.h     |   18 ------
 include/configs/omap3_pandora.h   |  117 ++++++++++++++++--------------------
 include/configs/omap3_sdp3430.h   |    7 --
 include/configs/omap3_zoom1.h     |   18 ------
 include/configs/omap3_zoom2.h     |   10 ---
 include/configs/omap4_panda.h     |    1 +
 include/configs/tnetv107x_evm.h   |    1 -
 18 files changed, 204 insertions(+), 220 deletions(-)
 delete mode 100644 board/pandora/config.mk

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

* [U-Boot] Please pull u-boot-ti/master
  2010-11-04 20:35 s-paulraj at ti.com
@ 2010-11-12 23:20 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-11-12 23:20 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1288902932-24246-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit 0c0892be0d93a5a892b93739c5eb3bf692fed4ff:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-marvell
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Alagu Sankar (1):
>       mmc: Add multi-block read support to the generic mmc driver
> 
> Enric Balletbo i Serra (2):
>       ARMV7: OMAP3: Use generic mmc driver on IGEP v2
>       ARMV7: OMAP3: Use generic mmc driver on OMAP3 IGEP module
> 
> Heiko Schocher (1):
>       armv7, beagle: Second SDRAM bank don;t work
> 
> Koen Kooi (1):
>       ARMV7: OMAP3: Add expansion board detection for Beagle
> 
> Sanjeev Premi (3):
>       omap3evm: Support relocation
>       omap3evm: Wrap function under CONFIG_USB_OMAP3
>       omap3evm: Fix mechanism to identify board revision
> 
> Steve Sakoman (5):
>       ARMV7: OMAP3: IGEP: Rename TEXT_BASE
>       ARMV7: Fix build for non-OMAP3 boards
>       ARMV7: OMAP3: Add expansion board detection for Overo
>       ARMV7: OMAP: Fix build after introduction of GENERATED_GBL_DATA_SIZE
>       mmc: Clean up generic mmc driver multi-block write functions
> 
>  arch/arm/cpu/armv7/omap3/sdrc.c |    7 ++
>  arch/arm/lib/cache.c            |    2 +-
>  board/isee/igep0020/config.mk   |    2 +-
>  board/isee/igep0020/igep0020.c  |    9 +++
>  board/isee/igep0030/config.mk   |    3 +-
>  board/isee/igep0030/igep0030.c  |    9 +++
>  board/overo/overo.c             |  115 ++++++++++++++++++++++++++++++
>  board/overo/overo.h             |    4 +
>  board/ti/beagle/beagle.c        |   95 +++++++++++++++++++++++++
>  board/ti/beagle/beagle.h        |   46 ++++++++++++-
>  board/ti/evm/config.mk          |    2 +-
>  board/ti/evm/evm.c              |   24 ++++++-
>  board/ti/evm/evm.h              |    2 +
>  drivers/mmc/mmc.c               |  148 ++++++++++++++-------------------------
>  include/configs/igep0020.h      |    9 ++-
>  include/configs/igep0030.h      |    9 ++-
>  include/configs/omap3_beagle.h  |    8 ++-
>  include/configs/omap3_evm.h     |   11 +++
>  include/configs/omap3_overo.h   |    7 ++-
>  include/configs/omap4_panda.h   |    6 ++-
>  include/configs/omap4_sdp4430.h |    6 ++-
>  21 files changed, 411 insertions(+), 113 deletions(-)

Pulled into u-boot-arm, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If the odds are a million to one against something occuring,  chances
are 50-50 it will.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-11-04 20:35 s-paulraj at ti.com
  2010-11-12 23:20 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-11-04 20:35 UTC (permalink / raw)
  To: u-boot

The following changes since commit 0c0892be0d93a5a892b93739c5eb3bf692fed4ff:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-marvell

are available in the git repository at:

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

Alagu Sankar (1):
      mmc: Add multi-block read support to the generic mmc driver

Enric Balletbo i Serra (2):
      ARMV7: OMAP3: Use generic mmc driver on IGEP v2
      ARMV7: OMAP3: Use generic mmc driver on OMAP3 IGEP module

Heiko Schocher (1):
      armv7, beagle: Second SDRAM bank don;t work

Koen Kooi (1):
      ARMV7: OMAP3: Add expansion board detection for Beagle

Sanjeev Premi (3):
      omap3evm: Support relocation
      omap3evm: Wrap function under CONFIG_USB_OMAP3
      omap3evm: Fix mechanism to identify board revision

Steve Sakoman (5):
      ARMV7: OMAP3: IGEP: Rename TEXT_BASE
      ARMV7: Fix build for non-OMAP3 boards
      ARMV7: OMAP3: Add expansion board detection for Overo
      ARMV7: OMAP: Fix build after introduction of GENERATED_GBL_DATA_SIZE
      mmc: Clean up generic mmc driver multi-block write functions

 arch/arm/cpu/armv7/omap3/sdrc.c |    7 ++
 arch/arm/lib/cache.c            |    2 +-
 board/isee/igep0020/config.mk   |    2 +-
 board/isee/igep0020/igep0020.c  |    9 +++
 board/isee/igep0030/config.mk   |    3 +-
 board/isee/igep0030/igep0030.c  |    9 +++
 board/overo/overo.c             |  115 ++++++++++++++++++++++++++++++
 board/overo/overo.h             |    4 +
 board/ti/beagle/beagle.c        |   95 +++++++++++++++++++++++++
 board/ti/beagle/beagle.h        |   46 ++++++++++++-
 board/ti/evm/config.mk          |    2 +-
 board/ti/evm/evm.c              |   24 ++++++-
 board/ti/evm/evm.h              |    2 +
 drivers/mmc/mmc.c               |  148 ++++++++++++++-------------------------
 include/configs/igep0020.h      |    9 ++-
 include/configs/igep0030.h      |    9 ++-
 include/configs/omap3_beagle.h  |    8 ++-
 include/configs/omap3_evm.h     |   11 +++
 include/configs/omap3_overo.h   |    7 ++-
 include/configs/omap4_panda.h   |    6 ++-
 include/configs/omap4_sdp4430.h |    6 ++-
 21 files changed, 411 insertions(+), 113 deletions(-)

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-10-14 21:31 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
@ 2010-10-17 18:15 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-10-17 18:15 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1287091874-1391-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang,
> 
> Please pull u-boot-ti/master
> 
> Thanks,
> Sandeep
> 
> The following changes since commit e79f48393dd919079b34f37957c933f8e75c164d:
>   Lei Wen (1):
>         env_mmc: fix cannot save env issue
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Ben Gardiner (7):
>       davinci_nand, trivial : use symbolic ECC start command
>       da850evm : enable NAND even when not in NAND boot mode
>       da850evm: setup the NAND flash timings
>       da850evm: setup NAND support under CONFIG_USE_NAND
>       da850evm: add mtdpart and ubi commands with NAND support
>       da850evm: basic MII EMAC support
>       da850evm: fix linux bootparam address
> 
> Enric Balletbo i Serra (3):
>       OMAP3: SDRC: Introduce Numonyx DDR type
>       OMAP3: Add support for the IGEP v2 board.
>       OMAP3: Add support for the OMAP3 IGEP module.
> 
> Steve Sakoman (8):
>       ARMV7: OMAP: Use default vendor/product ID for USB gadget
>       ARMV7: OMAP4: Use generic mmc driver on Beagle
>       ARMV7: OMAP4: Use generic mmc driver on Overo
>       ARMV7: OMAP3: Implement relocation for Overo
>       ARMV7: OMAP3: Enable cache support on Overo
>       ARMV7: OMAP3: Fix bug in get_sdr_cs_offset()
>       ARMV7: OMAP4: Implement relocation for Panda and OMAP4430SDP
>       env_mmc: Fix crashing bug encountered after enabling ARM relocation
> 
> Sukumar Ghorai (5):
>       MMC: Fix for capacity calculation on eMMC
>       ARMV7: OMAP: Add new mmc driver compatible with CONFIG_GENERIC_MMC
>       ARMV7: OMAP4: Use generic mmc driver on Panda
>       ARMV7: OMAP4: Use generic mmc driver on SDP4430
>       ARMV7: OMAP4: Enable saveenv to eMMC for SDP4430
> 
>  MAINTAINERS                                    |    5 +
>  MAKEALL                                        |    2 +
>  arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
>  arch/arm/cpu/armv7/omap4/board.c               |    5 +
>  arch/arm/include/asm/arch-omap3/mem.h          |   43 +++
>  arch/arm/include/asm/arch-omap3/mmc_host_def.h |   10 +
>  arch/arm/include/asm/arch-omap4/mmc_host_def.h |   10 +
>  arch/arm/lib/board.c                           |   10 +-
>  board/davinci/da8xxevm/da850evm.c              |   89 +++++
>  board/isee/igep0020/Makefile                   |   49 +++
>  board/isee/igep0020/config.mk                  |   33 ++
>  board/isee/igep0020/igep0020.c                 |  129 ++++++++
>  board/isee/igep0020/igep0020.h                 |  156 +++++++++
>  board/isee/igep0030/Makefile                   |   49 +++
>  board/isee/igep0030/config.mk                  |   34 ++
>  board/isee/igep0030/igep0030.c                 |   71 ++++
>  board/isee/igep0030/igep0030.h                 |  147 +++++++++
>  board/overo/config.mk                          |    2 +-
>  board/overo/overo.c                            |    9 +
>  board/ti/beagle/beagle.c                       |    9 +
>  board/ti/panda/config.mk                       |    4 +-
>  board/ti/panda/panda.c                         |    9 +
>  board/ti/sdp4430/config.mk                     |    3 +-
>  board/ti/sdp4430/sdp.c                         |   10 +
>  boards.cfg                                     |    2 +
>  common/env_mmc.c                               |   17 +-
>  drivers/mmc/Makefile                           |    1 +
>  drivers/mmc/mmc.c                              |   11 +
>  drivers/mmc/omap_hsmmc.c                       |  415 ++++++++++++++++++++++++
>  drivers/mtd/nand/davinci_nand.c                |    3 +-
>  include/configs/da850evm.h                     |   54 +++-
>  include/configs/igep0020.h                     |  228 +++++++++++++
>  include/configs/igep0030.h                     |  215 ++++++++++++
>  include/configs/omap3_beagle.h                 |   15 +-
>  include/configs/omap3_overo.h                  |   14 +-
>  include/configs/omap4_panda.h                  |   23 +-
>  include/configs/omap4_sdp4430.h                |   35 +--
>  37 files changed, 1853 insertions(+), 70 deletions(-)
>  create mode 100644 board/isee/igep0020/Makefile
>  create mode 100644 board/isee/igep0020/config.mk
>  create mode 100644 board/isee/igep0020/igep0020.c
>  create mode 100644 board/isee/igep0020/igep0020.h
>  create mode 100644 board/isee/igep0030/Makefile
>  create mode 100644 board/isee/igep0030/config.mk
>  create mode 100644 board/isee/igep0030/igep0030.c
>  create mode 100644 board/isee/igep0030/igep0030.h
>  create mode 100644 drivers/mmc/omap_hsmmc.c
>  create mode 100644 include/configs/igep0020.h
>  create mode 100644 include/configs/igep0030.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
How come everyone's going so slow if it's called rush hour?

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-10-14 21:31 s-paulraj at ti.com
  2010-10-17 18:15 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-10-14 21:31 UTC (permalink / raw)
  To: u-boot

Wolfgang,

Please pull u-boot-ti/master

Thanks,
Sandeep

The following changes since commit e79f48393dd919079b34f37957c933f8e75c164d:
  Lei Wen (1):
        env_mmc: fix cannot save env issue

are available in the git repository at:

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

Ben Gardiner (7):
      davinci_nand, trivial : use symbolic ECC start command
      da850evm : enable NAND even when not in NAND boot mode
      da850evm: setup the NAND flash timings
      da850evm: setup NAND support under CONFIG_USE_NAND
      da850evm: add mtdpart and ubi commands with NAND support
      da850evm: basic MII EMAC support
      da850evm: fix linux bootparam address

Enric Balletbo i Serra (3):
      OMAP3: SDRC: Introduce Numonyx DDR type
      OMAP3: Add support for the IGEP v2 board.
      OMAP3: Add support for the OMAP3 IGEP module.

Steve Sakoman (8):
      ARMV7: OMAP: Use default vendor/product ID for USB gadget
      ARMV7: OMAP4: Use generic mmc driver on Beagle
      ARMV7: OMAP4: Use generic mmc driver on Overo
      ARMV7: OMAP3: Implement relocation for Overo
      ARMV7: OMAP3: Enable cache support on Overo
      ARMV7: OMAP3: Fix bug in get_sdr_cs_offset()
      ARMV7: OMAP4: Implement relocation for Panda and OMAP4430SDP
      env_mmc: Fix crashing bug encountered after enabling ARM relocation

Sukumar Ghorai (5):
      MMC: Fix for capacity calculation on eMMC
      ARMV7: OMAP: Add new mmc driver compatible with CONFIG_GENERIC_MMC
      ARMV7: OMAP4: Use generic mmc driver on Panda
      ARMV7: OMAP4: Use generic mmc driver on SDP4430
      ARMV7: OMAP4: Enable saveenv to eMMC for SDP4430

 MAINTAINERS                                    |    5 +
 MAKEALL                                        |    2 +
 arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
 arch/arm/cpu/armv7/omap4/board.c               |    5 +
 arch/arm/include/asm/arch-omap3/mem.h          |   43 +++
 arch/arm/include/asm/arch-omap3/mmc_host_def.h |   10 +
 arch/arm/include/asm/arch-omap4/mmc_host_def.h |   10 +
 arch/arm/lib/board.c                           |   10 +-
 board/davinci/da8xxevm/da850evm.c              |   89 +++++
 board/isee/igep0020/Makefile                   |   49 +++
 board/isee/igep0020/config.mk                  |   33 ++
 board/isee/igep0020/igep0020.c                 |  129 ++++++++
 board/isee/igep0020/igep0020.h                 |  156 +++++++++
 board/isee/igep0030/Makefile                   |   49 +++
 board/isee/igep0030/config.mk                  |   34 ++
 board/isee/igep0030/igep0030.c                 |   71 ++++
 board/isee/igep0030/igep0030.h                 |  147 +++++++++
 board/overo/config.mk                          |    2 +-
 board/overo/overo.c                            |    9 +
 board/ti/beagle/beagle.c                       |    9 +
 board/ti/panda/config.mk                       |    4 +-
 board/ti/panda/panda.c                         |    9 +
 board/ti/sdp4430/config.mk                     |    3 +-
 board/ti/sdp4430/sdp.c                         |   10 +
 boards.cfg                                     |    2 +
 common/env_mmc.c                               |   17 +-
 drivers/mmc/Makefile                           |    1 +
 drivers/mmc/mmc.c                              |   11 +
 drivers/mmc/omap_hsmmc.c                       |  415 ++++++++++++++++++++++++
 drivers/mtd/nand/davinci_nand.c                |    3 +-
 include/configs/da850evm.h                     |   54 +++-
 include/configs/igep0020.h                     |  228 +++++++++++++
 include/configs/igep0030.h                     |  215 ++++++++++++
 include/configs/omap3_beagle.h                 |   15 +-
 include/configs/omap3_overo.h                  |   14 +-
 include/configs/omap4_panda.h                  |   23 +-
 include/configs/omap4_sdp4430.h                |   35 +--
 37 files changed, 1853 insertions(+), 70 deletions(-)
 create mode 100644 board/isee/igep0020/Makefile
 create mode 100644 board/isee/igep0020/config.mk
 create mode 100644 board/isee/igep0020/igep0020.c
 create mode 100644 board/isee/igep0020/igep0020.h
 create mode 100644 board/isee/igep0030/Makefile
 create mode 100644 board/isee/igep0030/config.mk
 create mode 100644 board/isee/igep0030/igep0030.c
 create mode 100644 board/isee/igep0030/igep0030.h
 create mode 100644 drivers/mmc/omap_hsmmc.c
 create mode 100644 include/configs/igep0020.h
 create mode 100644 include/configs/igep0030.h

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-09-28 18:03 s-paulraj at ti.com
@ 2010-09-28 20:34 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-09-28 20:34 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1285697020-10191-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit 85d3eba90df54bac27844221e2436550984c4d58:
>   Thomas Weber (1):
>         ixp/npe: Remove duplicated comment
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Aneesh V (1):
>       ARMV7: OMAP4: Calculate SDRAM size
> 
> Steve Sakoman (2):
>       ARMV7: OMAP4: Fix Panda pinmux setting to enable Wifi/BT Module
>       ARMV7: OMAP3: Update Beagle xM pinmux with USB hub and DVI gpio setup
> 
>  arch/arm/cpu/armv7/omap4/board.c        |   30 +++++++++++++++++++++++++++++-
>  arch/arm/include/asm/arch-omap4/omap4.h |   10 ++++++++++
>  board/ti/beagle/beagle.h                |    4 ++++
>  board/ti/panda/panda.h                  |   18 +++++++++---------
>  4 files changed, 52 insertions(+), 10 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
:       I've tried (in vi) "g/[a-z]\n[a-z]/s//_/"...but that doesn't
: cut it.  Any ideas?  (I take it that it may be a two-pass sort of solution).
In the first pass, install perl. :-) Larry Wall <6849@jpl-devvax.JPL.NASA.GOV>

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-09-28 18:03 s-paulraj at ti.com
  2010-09-28 20:34 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-09-28 18:03 UTC (permalink / raw)
  To: u-boot

The following changes since commit 85d3eba90df54bac27844221e2436550984c4d58:
  Thomas Weber (1):
        ixp/npe: Remove duplicated comment

are available in the git repository at:

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

Aneesh V (1):
      ARMV7: OMAP4: Calculate SDRAM size

Steve Sakoman (2):
      ARMV7: OMAP4: Fix Panda pinmux setting to enable Wifi/BT Module
      ARMV7: OMAP3: Update Beagle xM pinmux with USB hub and DVI gpio setup

 arch/arm/cpu/armv7/omap4/board.c        |   30 +++++++++++++++++++++++++++++-
 arch/arm/include/asm/arch-omap4/omap4.h |   10 ++++++++++
 board/ti/beagle/beagle.h                |    4 ++++
 board/ti/panda/panda.h                  |   18 +++++++++---------
 4 files changed, 52 insertions(+), 10 deletions(-)

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-09-09  8:29 s-paulraj at ti.com
@ 2010-09-09 17:55 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-09-09 17:55 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1284020942-26875-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang,
> 
> Please pull u-boot-ti/master
> This pull request comprises of a NAND patch which has been ACK'ed by Scott Wood.
> Also I ran MAKEALL for all ARM V7 boards and saw no issues.
> 
> Thanks,
> Sandeep
> 
> The following changes since commit 2df0e6fc6b71448e1752e4ce1d5577d8977f3e5e:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mips
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Mans Rullgard (3):
>       ARMV7: OMAP3: Fix and clean up L2 cache enable/disable functions
>       ARMV7: OMAP3: Convert setup_auxcr() to pure asm
>       ARMV7: OMAP3: Apply Cortex-A8 errata workarounds only on affected revisions
> 
> Ricardo Salveti de Araujo (1):
>       ARMV7: Fix pad mux for Panda LEDs
> 
> Steve Sakoman (15):
>       ARMV7: OMAP: Move syslib.c to omap-common since it can be shared by OMAP3 and OMAP4
>       ARMV7: OMAP: add convenience function to set TWL4030 regulator voltages
>       ARMV7: OMAP: Enable input driver on Overo's MMC1_CLK and MMC3_CLK pinmux setup
>       ARMV7: OMAP: Add mpurate boot arg for Overo and Beagle
>       ARMV7: OMAP: Add board revision detection for Overo
>       ARMV7: OMAP: Add detection and support for Beagle C4 revision
>       ARMV7: OMAP: Configure Overo's second network chip
>       ARMV7: OMAP3: Update CPU type detection for AM35XX/OMAP36XX/37XX
>       ARMV7: OMAP3: Add clock setup for OMAP36XX/37XX
>       ARMV7: OMAP3: Fix broken reset command on OMAP36XX/37XX and OMAP4
>       ARMV7: OMAP3: Remove erroneous hard coded sdram setup for 128MB/bank
>       mtd: nand: supress 'unknown NAND' warning if no nand is found
>       ARMV7: OMAP3: Add CONFIG_SYS_NAND_QUIET_TEST to Beagle and Overo configs
>       ARMV7: OMAP3: Add support for Beagle xM
>       ARMV7: OMAP: Overo: Autodetect presence/absence of transceiver on mmc2
> 
>  arch/arm/cpu/armv7/omap-common/Makefile            |    2 +
>  arch/arm/cpu/armv7/omap-common/reset.S             |    4 +-
>  arch/arm/cpu/armv7/{omap3 => omap-common}/syslib.c |    2 -
>  arch/arm/cpu/armv7/omap3/Makefile                  |    1 -
>  arch/arm/cpu/armv7/omap3/board.c                   |   35 --
>  arch/arm/cpu/armv7/omap3/cache.S                   |  101 ++--
>  arch/arm/cpu/armv7/omap3/clock.c                   |  549 ++++++++++++++------
>  arch/arm/cpu/armv7/omap3/lowlevel_init.S           |   69 +++
>  arch/arm/cpu/armv7/omap3/sdrc.c                    |   43 +-
>  arch/arm/cpu/armv7/omap3/sys_info.c                |  147 +++++-
>  arch/arm/include/asm/arch-omap3/clocks.h           |   17 +
>  arch/arm/include/asm/arch-omap3/clocks_omap3.h     |   27 +
>  arch/arm/include/asm/arch-omap3/cpu.h              |   15 +-
>  arch/arm/include/asm/arch-omap3/omap3.h            |   32 ++-
>  arch/arm/include/asm/arch-omap3/sys_proto.h        |    2 +
>  arch/arm/include/asm/arch-omap4/omap4.h            |    1 +
>  arch/arm/include/asm/arch-omap4/sys_proto.h        |    3 +
>  board/overo/overo.c                                |  105 ++++-
>  board/overo/overo.h                                |   47 ++-
>  board/ti/beagle/beagle.c                           |  102 +++--
>  board/ti/beagle/beagle.h                           |   40 ++-
>  board/ti/panda/panda.h                             |   44 +-
>  drivers/mtd/nand/nand_base.c                       |    9 +-
>  drivers/power/twl4030.c                            |   69 ++--
>  include/configs/omap3_beagle.h                     |    4 +
>  include/configs/omap3_overo.h                      |    4 +
>  include/twl4030.h                                  |   14 +
>  27 files changed, 1070 insertions(+), 418 deletions(-)
>  rename arch/arm/cpu/armv7/{omap3 => omap-common}/syslib.c (97%)

Applied to u-boot-arm, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
You could end up being oddly sad and full of a strange, diffuse  com-
passion  which would lead you to believe that it might be a good idea
to wipe out the whole human race and start again with amoebas.
                                 - Terry Pratchett, _Guards! Guards!_

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-09-09  8:29 s-paulraj at ti.com
  2010-09-09 17:55 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-09-09  8:29 UTC (permalink / raw)
  To: u-boot

Wolfgang,

Please pull u-boot-ti/master
This pull request comprises of a NAND patch which has been ACK'ed by Scott Wood.
Also I ran MAKEALL for all ARM V7 boards and saw no issues.

Thanks,
Sandeep

The following changes since commit 2df0e6fc6b71448e1752e4ce1d5577d8977f3e5e:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mips

are available in the git repository at:

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

Mans Rullgard (3):
      ARMV7: OMAP3: Fix and clean up L2 cache enable/disable functions
      ARMV7: OMAP3: Convert setup_auxcr() to pure asm
      ARMV7: OMAP3: Apply Cortex-A8 errata workarounds only on affected revisions

Ricardo Salveti de Araujo (1):
      ARMV7: Fix pad mux for Panda LEDs

Steve Sakoman (15):
      ARMV7: OMAP: Move syslib.c to omap-common since it can be shared by OMAP3 and OMAP4
      ARMV7: OMAP: add convenience function to set TWL4030 regulator voltages
      ARMV7: OMAP: Enable input driver on Overo's MMC1_CLK and MMC3_CLK pinmux setup
      ARMV7: OMAP: Add mpurate boot arg for Overo and Beagle
      ARMV7: OMAP: Add board revision detection for Overo
      ARMV7: OMAP: Add detection and support for Beagle C4 revision
      ARMV7: OMAP: Configure Overo's second network chip
      ARMV7: OMAP3: Update CPU type detection for AM35XX/OMAP36XX/37XX
      ARMV7: OMAP3: Add clock setup for OMAP36XX/37XX
      ARMV7: OMAP3: Fix broken reset command on OMAP36XX/37XX and OMAP4
      ARMV7: OMAP3: Remove erroneous hard coded sdram setup for 128MB/bank
      mtd: nand: supress 'unknown NAND' warning if no nand is found
      ARMV7: OMAP3: Add CONFIG_SYS_NAND_QUIET_TEST to Beagle and Overo configs
      ARMV7: OMAP3: Add support for Beagle xM
      ARMV7: OMAP: Overo: Autodetect presence/absence of transceiver on mmc2

 arch/arm/cpu/armv7/omap-common/Makefile            |    2 +
 arch/arm/cpu/armv7/omap-common/reset.S             |    4 +-
 arch/arm/cpu/armv7/{omap3 => omap-common}/syslib.c |    2 -
 arch/arm/cpu/armv7/omap3/Makefile                  |    1 -
 arch/arm/cpu/armv7/omap3/board.c                   |   35 --
 arch/arm/cpu/armv7/omap3/cache.S                   |  101 ++--
 arch/arm/cpu/armv7/omap3/clock.c                   |  549 ++++++++++++++------
 arch/arm/cpu/armv7/omap3/lowlevel_init.S           |   69 +++
 arch/arm/cpu/armv7/omap3/sdrc.c                    |   43 +-
 arch/arm/cpu/armv7/omap3/sys_info.c                |  147 +++++-
 arch/arm/include/asm/arch-omap3/clocks.h           |   17 +
 arch/arm/include/asm/arch-omap3/clocks_omap3.h     |   27 +
 arch/arm/include/asm/arch-omap3/cpu.h              |   15 +-
 arch/arm/include/asm/arch-omap3/omap3.h            |   32 ++-
 arch/arm/include/asm/arch-omap3/sys_proto.h        |    2 +
 arch/arm/include/asm/arch-omap4/omap4.h            |    1 +
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    3 +
 board/overo/overo.c                                |  105 ++++-
 board/overo/overo.h                                |   47 ++-
 board/ti/beagle/beagle.c                           |  102 +++--
 board/ti/beagle/beagle.h                           |   40 ++-
 board/ti/panda/panda.h                             |   44 +-
 drivers/mtd/nand/nand_base.c                       |    9 +-
 drivers/power/twl4030.c                            |   69 ++--
 include/configs/omap3_beagle.h                     |    4 +
 include/configs/omap3_overo.h                      |    4 +
 include/twl4030.h                                  |   14 +
 27 files changed, 1070 insertions(+), 418 deletions(-)
 rename arch/arm/cpu/armv7/{omap3 => omap-common}/syslib.c (97%)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-08-12 18:23 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
@ 2010-08-12 21:09 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-08-12 21:09 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1281637415-19784-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang,
> 
> This pull request is for 2 patches that should have gone through
> u-boot-mmc but there has been no response from Andy.
> Steve Sakoman tested it on multiple EVMs and so no issues.
> 
> Both patches had an incorrect Signed-off-by from the original author.
> In the e-mail address 'at' was used instead of '@'. I manually edited.
> 
> MAKEALL reported no errors/warnings
> 
> Thanks,
> Sandeep
> 
> The following changes since commit 69a2a4d9a5884a6f2d04a551308980d452b9b349:
>   Sergei Trofimovich (1):
>         disk/part.c: 'usb storage' avoiding overflow when output capacity
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Grazvydas Ignotas (2):
>       mmc: omap3: make local symbols static
>       mmc: omap3: fix block read function
> 
>  drivers/mmc/omap3_mmc.c |   68 ++++++++++++++++++++++-------------------------
>  drivers/mmc/omap3_mmc.h |    9 ------
>  2 files changed, 32 insertions(+), 45 deletions(-)

Pulled into u-boot-arm #master.  Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"There are three principal ways to lose money: wine, women, and engi-
neers. While the first two are more pleasant, the third is by far the
more certain."                           - Baron Rothschild, ca. 1800

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-08-12 18:23 s-paulraj at ti.com
  2010-08-12 21:09 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-08-12 18:23 UTC (permalink / raw)
  To: u-boot

Wolfgang,

This pull request is for 2 patches that should have gone through
u-boot-mmc but there has been no response from Andy.
Steve Sakoman tested it on multiple EVMs and so no issues.

Both patches had an incorrect Signed-off-by from the original author.
In the e-mail address 'at' was used instead of '@'. I manually edited.

MAKEALL reported no errors/warnings

Thanks,
Sandeep

The following changes since commit 69a2a4d9a5884a6f2d04a551308980d452b9b349:
  Sergei Trofimovich (1):
        disk/part.c: 'usb storage' avoiding overflow when output capacity

are available in the git repository at:

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

Grazvydas Ignotas (2):
      mmc: omap3: make local symbols static
      mmc: omap3: fix block read function

 drivers/mmc/omap3_mmc.c |   68 ++++++++++++++++++++++-------------------------
 drivers/mmc/omap3_mmc.h |    9 ------
 2 files changed, 32 insertions(+), 45 deletions(-)

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-08-06 16:25 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
@ 2010-08-10 20:21 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-08-10 20:21 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1281111908-22215-1-git-send-email-s-paulraj@ti.com> you wrote:
> The following changes since commit 9efac4a1eb99d9c5539aa6992025eeacab7980c6:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-samsung
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Steve Sakoman (8):
>       ARMV7: Add pad mux support for OMAP4
>       ARMV7: Fix udelay for OMAP4
>       ARMV7: Modify i2c driver for more reliable operation on OMAP4
>       ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems
>       ARMV7: Restructure omap3 musb driver to allow code sharing between OMAP3 and OMAP4
>       ARMV7: Enable musb driver and usbtty on OMAP4430 SDP
>       ARMV7: Enable musb driver and usbtty on OMAP4 Panda
>       ARMV7: Update default environment for OMAP4 boards
> 
>  arch/arm/cpu/armv7/omap-common/timer.c      |    9 -
>  arch/arm/cpu/armv7/omap4/board.c            |   11 +
>  arch/arm/include/asm/arch-omap3/cpu.h       |    3 +
>  arch/arm/include/asm/arch-omap3/i2c.h       |    4 +-
>  arch/arm/include/asm/arch-omap4/cpu.h       |    3 +
>  arch/arm/include/asm/arch-omap4/mux_omap4.h |  344 +++++++++++++++++++++++++++
>  arch/arm/include/asm/arch-omap4/omap4.h     |    2 +
>  arch/arm/include/asm/arch-omap4/sys_proto.h |    1 +
>  board/ti/panda/panda.c                      |   26 ++
>  board/ti/panda/panda.h                      |  265 +++++++++++++++++++++
>  board/ti/sdp4430/sdp.c                      |   26 ++
>  board/ti/sdp4430/sdp.h                      |  265 +++++++++++++++++++++
>  drivers/i2c/omap24xx_i2c.c                  |   31 ++-
>  drivers/i2c/omap24xx_i2c.h                  |    4 +
>  drivers/power/Makefile                      |    1 +
>  drivers/power/twl6030.c                     |   78 ++++++
>  drivers/usb/musb/omap3.c                    |   16 ++
>  drivers/usb/musb/omap3.h                    |    3 +-
>  include/configs/omap4_panda.h               |   26 ++-
>  include/configs/omap4_sdp4430.h             |   26 ++-
>  include/twl6030.h                           |   91 +++++++
>  21 files changed, 1210 insertions(+), 25 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-omap4/mux_omap4.h
>  create mode 100644 board/ti/panda/panda.h
>  create mode 100644 board/ti/sdp4430/sdp.h
>  create mode 100644 drivers/power/twl6030.c
>  create mode 100644 include/twl6030.h

Pulled into u-boot-arm #master. Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Pray: To ask that the laws of the universe be annulled in behalf of a
single petitioner confessedly unworthy.              - Ambrose Bierce

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-08-06 16:25 s-paulraj at ti.com
  2010-08-10 20:21 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-08-06 16:25 UTC (permalink / raw)
  To: u-boot

The following changes since commit 9efac4a1eb99d9c5539aa6992025eeacab7980c6:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-samsung

are available in the git repository at:

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

Steve Sakoman (8):
      ARMV7: Add pad mux support for OMAP4
      ARMV7: Fix udelay for OMAP4
      ARMV7: Modify i2c driver for more reliable operation on OMAP4
      ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems
      ARMV7: Restructure omap3 musb driver to allow code sharing between OMAP3 and OMAP4
      ARMV7: Enable musb driver and usbtty on OMAP4430 SDP
      ARMV7: Enable musb driver and usbtty on OMAP4 Panda
      ARMV7: Update default environment for OMAP4 boards

 arch/arm/cpu/armv7/omap-common/timer.c      |    9 -
 arch/arm/cpu/armv7/omap4/board.c            |   11 +
 arch/arm/include/asm/arch-omap3/cpu.h       |    3 +
 arch/arm/include/asm/arch-omap3/i2c.h       |    4 +-
 arch/arm/include/asm/arch-omap4/cpu.h       |    3 +
 arch/arm/include/asm/arch-omap4/mux_omap4.h |  344 +++++++++++++++++++++++++++
 arch/arm/include/asm/arch-omap4/omap4.h     |    2 +
 arch/arm/include/asm/arch-omap4/sys_proto.h |    1 +
 board/ti/panda/panda.c                      |   26 ++
 board/ti/panda/panda.h                      |  265 +++++++++++++++++++++
 board/ti/sdp4430/sdp.c                      |   26 ++
 board/ti/sdp4430/sdp.h                      |  265 +++++++++++++++++++++
 drivers/i2c/omap24xx_i2c.c                  |   31 ++-
 drivers/i2c/omap24xx_i2c.h                  |    4 +
 drivers/power/Makefile                      |    1 +
 drivers/power/twl6030.c                     |   78 ++++++
 drivers/usb/musb/omap3.c                    |   16 ++
 drivers/usb/musb/omap3.h                    |    3 +-
 include/configs/omap4_panda.h               |   26 ++-
 include/configs/omap4_sdp4430.h             |   26 ++-
 include/twl6030.h                           |   91 +++++++
 21 files changed, 1210 insertions(+), 25 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap4/mux_omap4.h
 create mode 100644 board/ti/panda/panda.h
 create mode 100644 board/ti/sdp4430/sdp.h
 create mode 100644 drivers/power/twl6030.c
 create mode 100644 include/twl6030.h

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

* [U-Boot] Please pull u-boot-ti/master
  2010-08-03 22:21     ` Wolfgang Denk
@ 2010-08-03 22:36       ` Steve Sakoman
  0 siblings, 0 replies; 324+ messages in thread
From: Steve Sakoman @ 2010-08-03 22:36 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 3, 2010 at 3:21 PM, Wolfgang Denk <wd@denx.de> wrote:
> Dear Steve Sakoman,
>
> In message <AANLkTimyVY=-eippjPncN144Qte6Oq1h5HzLkVS_rPz+@mail.gmail.com> you wrote:
>>
>> I just sent a revised version of the patch with that change incorporated.
>
> Thanks. I'll wait for Sandeep to rebase his tree and resend the pull
> rq, then.

OK.  Sorry for the inconvenience.

I also have the updated series in the following branch if that will
make it easier for Sandeep:

http://www.sakoman.com/cgi-bin/gitweb.cgi?p=u-boot.git;a=shortlog;h=refs/heads/omap4-next-upstream

Steve

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

* [U-Boot] Please pull u-boot-ti/master
  2010-08-03 22:03   ` Steve Sakoman
@ 2010-08-03 22:21     ` Wolfgang Denk
  2010-08-03 22:36       ` Steve Sakoman
  0 siblings, 1 reply; 324+ messages in thread
From: Wolfgang Denk @ 2010-08-03 22:21 UTC (permalink / raw)
  To: u-boot

Dear Steve Sakoman,

In message <AANLkTimyVY=-eippjPncN144Qte6Oq1h5HzLkVS_rPz+@mail.gmail.com> you wrote:
>
> I just sent a revised version of the patch with that change incorporated.

Thanks. I'll wait for Sandeep to rebase his tree and resend the pull
rq, then.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
News is what a chap who doesn't care much  about  anything  wants  to
read. And it's only news until he's read it. After that it's dead.
                           - Evelyn Waugh _Scoop_ (1938) bk. 1, ch. 5

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

* [U-Boot] Please pull u-boot-ti/master
  2010-08-03 21:37 ` Wolfgang Denk
@ 2010-08-03 22:03   ` Steve Sakoman
  2010-08-03 22:21     ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: Steve Sakoman @ 2010-08-03 22:03 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 3, 2010 at 2:37 PM, Wolfgang Denk <wd@denx.de> wrote:
> Dear Sandeep,
>
> In message <1280345146-18810-1-git-send-email-s-paulraj@ti.com> you wrote:
>>
>> Please pull u-boot-ti/master. I ran MAKEALL and saw no issues.
>> The patch modifying the I2c driver has an ACK from Heiko.
>> The patch restructuring the USB driver actually was a simple patch
>> adding some more #defines so i went ahead and added it.
>
> Sorry, I cannot.
>
> There is a license conflivt with that patch:
>
>> Steve Sakoman (8):
>> ? ? ? ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems

I just sent a revised version of the patch with that change incorporated.

Steve

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

* [U-Boot] Please pull u-boot-ti/master
  2010-07-28 19:25 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
@ 2010-08-03 21:37 ` Wolfgang Denk
  2010-08-03 22:03   ` Steve Sakoman
  0 siblings, 1 reply; 324+ messages in thread
From: Wolfgang Denk @ 2010-08-03 21:37 UTC (permalink / raw)
  To: u-boot

Dear Sandeep,

In message <1280345146-18810-1-git-send-email-s-paulraj@ti.com> you wrote:
> 
> Please pull u-boot-ti/master. I ran MAKEALL and saw no issues.
> The patch modifying the I2c driver has an ACK from Heiko.
> The patch restructuring the USB driver actually was a simple patch
> adding some more #defines so i went ahead and added it.

Sorry, I cannot.

There is a license conflivt with that patch:

> Steve Sakoman (8):
>       ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems



Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I used to be indecisive, now I'm not sure.

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-07-28 19:25 s-paulraj at ti.com
  2010-08-03 21:37 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-07-28 19:25 UTC (permalink / raw)
  To: u-boot

Wolfgang,

Please pull u-boot-ti/master. I ran MAKEALL and saw no issues.
The patch modifying the I2c driver has an ACK from Heiko.
The patch restructuring the USB driver actually was a simple patch
adding some more #defines so i went ahead and added it.

Thanks,
Sandeep

The following changes since commit e9aecdec153ae166739858e6a570432449b979f7:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ti

are available in the git repository at:

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

Steve Sakoman (8):
      ARMV7: Add pad mux support for OMAP4
      ARMV7: Fix udelay for OMAP4
      ARMV7: Modify i2c driver for more reliable operation on OMAP4
      ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems
      ARMV7: Restructure omap3 musb driver to allow code sharing between OMAP3 and OMAP4
      ARMV7: Enable musb driver and usbtty on OMAP4430 SDP
      ARMV7: Enable musb driver and usbtty on OMAP4 Panda
      ARMV7: Update default environment for OMAP4 boards

 arch/arm/cpu/armv7/omap-common/timer.c      |    9 -
 arch/arm/cpu/armv7/omap4/board.c            |   11 +
 arch/arm/include/asm/arch-omap3/cpu.h       |    3 +
 arch/arm/include/asm/arch-omap3/i2c.h       |    4 +-
 arch/arm/include/asm/arch-omap4/cpu.h       |    3 +
 arch/arm/include/asm/arch-omap4/mux_omap4.h |  344 +++++++++++++++++++++++++++
 arch/arm/include/asm/arch-omap4/omap4.h     |    2 +
 arch/arm/include/asm/arch-omap4/sys_proto.h |    1 +
 board/ti/panda/panda.c                      |   26 ++
 board/ti/panda/panda.h                      |  265 +++++++++++++++++++++
 board/ti/sdp4430/sdp.c                      |   26 ++
 board/ti/sdp4430/sdp.h                      |  265 +++++++++++++++++++++
 drivers/i2c/omap24xx_i2c.c                  |   31 ++-
 drivers/i2c/omap24xx_i2c.h                  |    4 +
 drivers/power/Makefile                      |    1 +
 drivers/power/twl6030.c                     |   77 ++++++
 drivers/usb/musb/omap3.c                    |   16 ++
 drivers/usb/musb/omap3.h                    |    3 +-
 include/configs/omap4_panda.h               |   26 ++-
 include/configs/omap4_sdp4430.h             |   26 ++-
 include/twl6030.h                           |   90 +++++++
 21 files changed, 1208 insertions(+), 25 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap4/mux_omap4.h
 create mode 100644 board/ti/panda/panda.h
 create mode 100644 board/ti/sdp4430/sdp.h
 create mode 100644 drivers/power/twl6030.c
 create mode 100644 include/twl6030.h

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

* [U-Boot] Please pull u-boot-ti/master
  2010-07-06  0:29 s-paulraj at ti.com
@ 2010-07-14 19:12 ` Wolfgang Denk
  0 siblings, 0 replies; 324+ messages in thread
From: Wolfgang Denk @ 2010-07-14 19:12 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1278376152-26972-1-git-send-email-s-paulraj@ti.com> you wrote:
> Wolfgang,
> 
> Please pull u-boot-ti/master.
> I ran MAKEALL for all ARMV7 boards and saw one compilation warning.
> This however was not becuase of the recent updates by Steve Sakoman.
> The compilation warning was due to a USB patch submitted by TI but
> got applied to u-boot through u-boot-usb. Will take care of it soon.
> 
> Regards,
> Sandeep
> 
> The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
>   Wolfgang Denk (1):
>         Make sure that argv[] argument pointers are not modified.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Nick Thompson (1):
>       Davinci: SPI: add the missing v2 patch changes
> 
> Steve Sakoman (8):
>       OMAP: mmc: add support for second and third mmc channels
>       ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7
>       ARMV7: Add basic support for TI OMAP4
>       ARMV7: Restructure OMAP mmc driver to allow code sharing between OMAP3 and OMAP4
>       ARMV7: Restructure OMAP i2c driver to allow code sharing between OMAP3 and OMAP4
>       ARMV7: Add support for TI OMAP4430 SDP
>       ARMV7: Add support for TI OMAP4 Panda
>       mmc: add function prototype for mmc_set_dev in mmc.h

Pulled into u-boot-arm #master repo. Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The human race is a race of cowards; and I am not  only  marching  in
that procession but carrying a banner.                   - Mark Twain

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-07-06  0:29 s-paulraj at ti.com
  2010-07-14 19:12 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-07-06  0:29 UTC (permalink / raw)
  To: u-boot

Wolfgang,

Please pull u-boot-ti/master.
I ran MAKEALL for all ARMV7 boards and saw one compilation warning.
This however was not becuase of the recent updates by Steve Sakoman.
The compilation warning was due to a USB patch submitted by TI but
got applied to u-boot through u-boot-usb. Will take care of it soon.

Regards,
Sandeep

The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
  Wolfgang Denk (1):
        Make sure that argv[] argument pointers are not modified.

are available in the git repository at:

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

Nick Thompson (1):
      Davinci: SPI: add the missing v2 patch changes

Steve Sakoman (8):
      OMAP: mmc: add support for second and third mmc channels
      ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7
      ARMV7: Add basic support for TI OMAP4
      ARMV7: Restructure OMAP mmc driver to allow code sharing between OMAP3 and OMAP4
      ARMV7: Restructure OMAP i2c driver to allow code sharing between OMAP3 and OMAP4
      ARMV7: Add support for TI OMAP4430 SDP
      ARMV7: Add support for TI OMAP4 Panda
      mmc: add function prototype for mmc_set_dev in mmc.h

 MAINTAINERS                                        |   24 ++-
 MAKEALL                                            |   10 +-
 Makefile                                           |    7 +
 arch/arm/cpu/{arm_cortexa8 => armv7}/Makefile      |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/config.mk     |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/cpu.c         |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/Makefile |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/clock.c  |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/iomux.c  |    0
 .../{arm_cortexa8 => armv7}/mx51/lowlevel_init.S   |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/soc.c    |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/speed.c  |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/timer.c  |    0
 .../cpu/{arm_cortexa8 => armv7}/mx51/u-boot.lds    |    2 +-
 .../mx51 => armv7/omap-common}/Makefile            |   10 +-
 .../{arm_cortexa8 => armv7/omap-common}/config.mk  |    0
 .../omap3 => armv7/omap-common}/reset.S            |    0
 .../omap3 => armv7/omap-common}/timer.c            |    5 +
 .../arm/cpu/{arm_cortexa8 => armv7}/omap3/Makefile |    2 -
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/board.c |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/cache.S |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/clock.c |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/emif4.c |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/gpio.c  |    0
 .../{arm_cortexa8 => armv7}/omap3/lowlevel_init.S  |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/mem.c   |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/sdrc.c  |    0
 .../cpu/{arm_cortexa8 => armv7}/omap3/sys_info.c   |    0
 .../arm/cpu/{arm_cortexa8 => armv7}/omap3/syslib.c |    0
 .../{arm_cortexa8/s5pc1xx => armv7/omap4}/Makefile |   16 +-
 arch/arm/cpu/armv7/omap4/board.c                   |   90 ++++++++
 .../omap3/reset.S => armv7/omap4/lowlevel_init.S}  |   40 +++--
 .../omap3/reset.S => armv7/omap4/sys_info.c}       |   50 +++--
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/Makefile   |    0
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/cache.S    |    2 +-
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/clock.c    |    0
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/cpu_info.c |    0
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/reset.S    |    0
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/sromc.c    |    0
 .../cpu/{arm_cortexa8 => armv7}/s5pc1xx/timer.c    |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/start.S       |    0
 arch/arm/cpu/{arm_cortexa8 => armv7}/u-boot.lds    |    2 +-
 arch/arm/include/asm/arch-mx51/asm-offsets.h       |    2 +-
 arch/arm/include/asm/arch-omap3/i2c.h              |  149 +-------------
 arch/arm/include/asm/arch-omap3/mmc_host_def.h     |   15 +-
 arch/arm/include/asm/arch-omap4/cpu.h              |   94 +++++++++
 arch/arm/include/asm/arch-omap4/i2c.h              |   74 +++++++
 arch/arm/include/asm/arch-omap4/mmc_host_def.h     |  171 +++++++++++++++
 arch/arm/include/asm/arch-omap4/omap4.h            |  118 +++++++++++
 .../reset.S => include/asm/arch-omap4/sys_proto.h} |   35 ++--
 board/logicpd/zoom2/zoom2.c                        |    2 +-
 .../cpu/arm_cortexa8 => board/ti/panda}/Makefile   |   24 ++-
 .../cpu/arm_cortexa8 => board/ti/panda}/config.mk  |   25 +--
 .../u-boot.lds => board/ti/panda/panda.c           |   65 +++---
 .../cpu/arm_cortexa8 => board/ti/sdp4430}/Makefile |   24 ++-
 .../arm_cortexa8 => board/ti/sdp4430}/config.mk    |   25 +--
 .../u-boot.lds => board/ti/sdp4430/sdp.c           |   66 +++---
 boards.cfg                                         |   26 ++-
 drivers/i2c/omap24xx_i2c.c                         |   17 ++-
 drivers/i2c/omap24xx_i2c.h                         |  166 +++++++++++++++
 drivers/mmc/omap3_mmc.c                            |   50 ++++-
 .../arch-omap3/mmc.h => drivers/mmc/omap3_mmc.h    |    2 +-
 drivers/spi/davinci_spi.c                          |    8 +-
 include/configs/am3517_evm.h                       |    2 +-
 include/configs/devkit8000.h                       |    2 +-
 include/configs/omap3_beagle.h                     |    2 +-
 include/configs/omap3_evm.h                        |    2 +-
 include/configs/omap3_overo.h                      |    2 +-
 include/configs/omap3_pandora.h                    |    2 +-
 include/configs/omap3_sdp3430.h                    |    2 +-
 include/configs/omap3_zoom1.h                      |    2 +-
 include/configs/omap3_zoom2.h                      |    2 +-
 include/configs/omap4_panda.h                      |  220 +++++++++++++++++++
 include/configs/omap4_sdp4430.h                    |  221 ++++++++++++++++++++
 include/configs/s5p_goni.h                         |    2 +-
 include/configs/smdkc100.h                         |    2 +-
 include/mmc.h                                      |    1 +
 77 files changed, 1504 insertions(+), 378 deletions(-)
 copy arch/arm/cpu/{arm_cortexa8 => armv7}/Makefile (100%)
 copy arch/arm/cpu/{arm_cortexa8 => armv7}/config.mk (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/cpu.c (100%)
 copy arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/Makefile (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/clock.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/iomux.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/lowlevel_init.S (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/soc.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/speed.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/timer.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/mx51/u-boot.lds (97%)
 rename arch/arm/cpu/{arm_cortexa8/mx51 => armv7/omap-common}/Makefile (87%)
 copy arch/arm/cpu/{arm_cortexa8 => armv7/omap-common}/config.mk (100%)
 copy arch/arm/cpu/{arm_cortexa8/omap3 => armv7/omap-common}/reset.S (100%)
 rename arch/arm/cpu/{arm_cortexa8/omap3 => armv7/omap-common}/timer.c (96%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/Makefile (97%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/board.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/cache.S (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/clock.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/emif4.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/gpio.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/lowlevel_init.S (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/mem.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/sdrc.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/sys_info.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/omap3/syslib.c (100%)
 copy arch/arm/cpu/{arm_cortexa8/s5pc1xx => armv7/omap4}/Makefile (83%)
 create mode 100644 arch/arm/cpu/armv7/omap4/board.c
 copy arch/arm/cpu/{arm_cortexa8/omap3/reset.S => armv7/omap4/lowlevel_init.S} (65%)
 copy arch/arm/cpu/{arm_cortexa8/omap3/reset.S => armv7/omap4/sys_info.c} (60%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/Makefile (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/cache.S (98%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/clock.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/cpu_info.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/reset.S (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/sromc.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/s5pc1xx/timer.c (100%)
 rename arch/arm/cpu/{arm_cortexa8 => armv7}/start.S (100%)
 copy arch/arm/cpu/{arm_cortexa8 => armv7}/u-boot.lds (97%)
 create mode 100644 arch/arm/include/asm/arch-omap4/cpu.h
 create mode 100644 arch/arm/include/asm/arch-omap4/i2c.h
 create mode 100644 arch/arm/include/asm/arch-omap4/mmc_host_def.h
 create mode 100644 arch/arm/include/asm/arch-omap4/omap4.h
 rename arch/arm/{cpu/arm_cortexa8/omap3/reset.S => include/asm/arch-omap4/sys_proto.h} (64%)
 copy {arch/arm/cpu/arm_cortexa8 => board/ti/panda}/Makefile (79%)
 copy {arch/arm/cpu/arm_cortexa8 => board/ti/panda}/config.mk (54%)
 copy arch/arm/cpu/arm_cortexa8/u-boot.lds => board/ti/panda/panda.c (53%)
 rename {arch/arm/cpu/arm_cortexa8 => board/ti/sdp4430}/Makefile (79%)
 rename {arch/arm/cpu/arm_cortexa8 => board/ti/sdp4430}/config.mk (54%)
 rename arch/arm/cpu/arm_cortexa8/u-boot.lds => board/ti/sdp4430/sdp.c (52%)
 create mode 100644 drivers/i2c/omap24xx_i2c.h
 rename arch/arm/include/asm/arch-omap3/mmc.h => drivers/mmc/omap3_mmc.h (99%)
 create mode 100644 include/configs/omap4_panda.h
 create mode 100644 include/configs/omap4_sdp4430.h

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-06-17 20:20 ` Wolfgang Denk
@ 2010-06-17 20:23   ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2010-06-17 20:23 UTC (permalink / raw)
  To: u-boot



> 
> Dear s-paulraj at ti.com,
> 
> In message <1276186363-13822-1-git-send-email-s-paulraj@ti.com> you wrote:
> >
> > Please pull u-boot-ti/master.
> > This set consists of a patch set from Sudhkar which earlier broke other
> > DaVinci boards. I verified that all DaVinci boards built fine.
> >
> > Thanks,
> > Sandeep
> >
> > The following changes since commit
> 23911740486c59851df57521c49bfd81ce1865ec:
> >   Delio Brignoli (1):
> >         DaVinci: Improve DaVinci SPI speed.
> >
> > are available in the git repository at:
> >
> >   git://git.denx.de/u-boot-ti.git master
> >
> > Grazvydas Ignotas (1):
> >       OMAP3: pandora: enable battery backup capacitor
> >
> > Sudhakar Rajashekhara (3):
> >       da830: Move common code out of da830evm.c file
> >       TI: DaVinci: Prepare for da850 support
> >       TI: DaVinci: Add board specific code for da850 EVM
> >
> >  MAINTAINERS                                     |    4 +
> >  MAKEALL                                         |    1 +
> >  Makefile                                        |    5 +-
> >  arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
> >  board/davinci/{da830evm => da8xxevm}/Makefile   |    6 +-
> >  board/davinci/da8xxevm/common.c                 |   55 +++++++++
> >  board/davinci/da8xxevm/common.h                 |   30 +++++
> >  board/davinci/{da830evm => da8xxevm}/config.mk  |    0
> >  board/davinci/{da830evm => da8xxevm}/da830evm.c |   29 ++---
> >  board/davinci/da8xxevm/da850evm.c               |  111
> ++++++++++++++++++
> >  board/pandora/pandora.c                         |    9 ++
> >  include/configs/da850evm.h                      |  140
> +++++++++++++++++++++++
> >  12 files changed, 371 insertions(+), 20 deletions(-)
> >  rename board/davinci/{da830evm => da8xxevm}/Makefile (90%)
> >  create mode 100644 board/davinci/da8xxevm/common.c
> >  create mode 100644 board/davinci/da8xxevm/common.h
> >  rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
> >  rename board/davinci/{da830evm => da8xxevm}/da830evm.c (90%)
> >  create mode 100644 board/davinci/da8xxevm/da850evm.c
> >  create mode 100644 include/configs/da850evm.h
> 
> I think I got all of these.

Yes, since you accepted my updated pull request 
> 
> Best regards,
> 
> Wolfgang Denk

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-06-10 16:12 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
@ 2010-06-17 20:20 ` Wolfgang Denk
  2010-06-17 20:23   ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Wolfgang Denk @ 2010-06-17 20:20 UTC (permalink / raw)
  To: u-boot

Dear s-paulraj at ti.com,

In message <1276186363-13822-1-git-send-email-s-paulraj@ti.com> you wrote:
> 
> Please pull u-boot-ti/master.
> This set consists of a patch set from Sudhkar which earlier broke other
> DaVinci boards. I verified that all DaVinci boards built fine.
> 
> Thanks,
> Sandeep
> 
> The following changes since commit 23911740486c59851df57521c49bfd81ce1865ec:
>   Delio Brignoli (1):
>         DaVinci: Improve DaVinci SPI speed.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Grazvydas Ignotas (1):
>       OMAP3: pandora: enable battery backup capacitor
> 
> Sudhakar Rajashekhara (3):
>       da830: Move common code out of da830evm.c file
>       TI: DaVinci: Prepare for da850 support
>       TI: DaVinci: Add board specific code for da850 EVM
> 
>  MAINTAINERS                                     |    4 +
>  MAKEALL                                         |    1 +
>  Makefile                                        |    5 +-
>  arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
>  board/davinci/{da830evm => da8xxevm}/Makefile   |    6 +-
>  board/davinci/da8xxevm/common.c                 |   55 +++++++++
>  board/davinci/da8xxevm/common.h                 |   30 +++++
>  board/davinci/{da830evm => da8xxevm}/config.mk  |    0
>  board/davinci/{da830evm => da8xxevm}/da830evm.c |   29 ++---
>  board/davinci/da8xxevm/da850evm.c               |  111 ++++++++++++++++++
>  board/pandora/pandora.c                         |    9 ++
>  include/configs/da850evm.h                      |  140 +++++++++++++++++++++++
>  12 files changed, 371 insertions(+), 20 deletions(-)
>  rename board/davinci/{da830evm => da8xxevm}/Makefile (90%)
>  create mode 100644 board/davinci/da8xxevm/common.c
>  create mode 100644 board/davinci/da8xxevm/common.h
>  rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
>  rename board/davinci/{da830evm => da8xxevm}/da830evm.c (90%)
>  create mode 100644 board/davinci/da8xxevm/da850evm.c
>  create mode 100644 include/configs/da850evm.h

I think I got all of these.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"My name is Linus Torvalds, you messed with my kernel, prepare to die"
                                                  - Linus Torvalds in
      <Pine.LNX.3.91.960426110644.24860I-100000@linux.cs.Helsinki.FI>

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-06-10 16:12 s-paulraj at ti.com
  2010-06-17 20:20 ` Wolfgang Denk
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-06-10 16:12 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-ti/master.
This set consists of a patch set from Sudhkar which earlier broke other
DaVinci boards. I verified that all DaVinci boards built fine.

Thanks,
Sandeep

The following changes since commit 23911740486c59851df57521c49bfd81ce1865ec:
  Delio Brignoli (1):
        DaVinci: Improve DaVinci SPI speed.

are available in the git repository at:

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

Grazvydas Ignotas (1):
      OMAP3: pandora: enable battery backup capacitor

Sudhakar Rajashekhara (3):
      da830: Move common code out of da830evm.c file
      TI: DaVinci: Prepare for da850 support
      TI: DaVinci: Add board specific code for da850 EVM

 MAINTAINERS                                     |    4 +
 MAKEALL                                         |    1 +
 Makefile                                        |    5 +-
 arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
 board/davinci/{da830evm => da8xxevm}/Makefile   |    6 +-
 board/davinci/da8xxevm/common.c                 |   55 +++++++++
 board/davinci/da8xxevm/common.h                 |   30 +++++
 board/davinci/{da830evm => da8xxevm}/config.mk  |    0
 board/davinci/{da830evm => da8xxevm}/da830evm.c |   29 ++---
 board/davinci/da8xxevm/da850evm.c               |  111 ++++++++++++++++++
 board/pandora/pandora.c                         |    9 ++
 include/configs/da850evm.h                      |  140 +++++++++++++++++++++++
 12 files changed, 371 insertions(+), 20 deletions(-)
 rename board/davinci/{da830evm => da8xxevm}/Makefile (90%)
 create mode 100644 board/davinci/da8xxevm/common.c
 create mode 100644 board/davinci/da8xxevm/common.h
 rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
 rename board/davinci/{da830evm => da8xxevm}/da830evm.c (90%)
 create mode 100644 board/davinci/da8xxevm/da850evm.c
 create mode 100644 include/configs/da850evm.h

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

* [U-Boot] Please Pull u-boot-ti/master
  2010-06-07 21:27 s-paulraj at ti.com
@ 2010-06-08 16:49 ` Tom Rix
  0 siblings, 0 replies; 324+ messages in thread
From: Tom Rix @ 2010-06-08 16:49 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> Tom,
> 
> Please pull u-boot-ti/master.
> There are some more patches but those would not apply clean.
> Will send a separate pull request for them.
> 
> I ran MAKEALL for all ARM 11 and CORTEX A8 boards.
> 
> Thanks,
> Sandeep
> 
> The following changes since commit 9bb3b3d4406c1e388a99f6fb189147d6a06cc2cf:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
> 

Applied to arm/master
Thanks
Tom

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-06-07 21:27 s-paulraj at ti.com
  2010-06-08 16:49 ` Tom Rix
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-06-07 21:27 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-ti/master.
There are some more patches but those would not apply clean.
Will send a separate pull request for them.

I ran MAKEALL for all ARM 11 and CORTEX A8 boards.

Thanks,
Sandeep

The following changes since commit 9bb3b3d4406c1e388a99f6fb189147d6a06cc2cf:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx

are available in the git repository at:

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

Cyril Chemparathy (3):
      ARM1176: Coexist with other ARM1176 platforms
      ARM1176: TI: TNETV107X soc initial support
      TI: TNETV107X EVM initial support

Delio Brignoli (1):
      DaVinci: Improve DaVinci SPI speed.

Vaibhav Hiremath (5):
      OMAP3EVM: Added NAND support
      omap3: Calculate CS1 size only when SDRC is
      omap3: Consolidate SDRC related operations
      AM35x: Add support for AM3517EVM
      AM35x: Add support for EMIF4

 MAINTAINERS                                     |    8 +
 MAKEALL                                         |    2 +
 Makefile                                        |    6 +
 arch/arm/cpu/arm1176/cpu.c                      |    3 -
 arch/arm/cpu/arm1176/start.S                    |   65 +++-
 arch/arm/cpu/arm1176/tnetv107x/Makefile         |   44 +++
 arch/arm/cpu/arm1176/tnetv107x/aemif.c          |   93 +++++
 arch/arm/cpu/arm1176/tnetv107x/clock.c          |  451 +++++++++++++++++++++++
 arch/arm/cpu/arm1176/tnetv107x/init.c           |   37 ++
 arch/arm/cpu/arm1176/tnetv107x/lowlevel_init.S  |   25 ++
 arch/arm/cpu/arm1176/tnetv107x/mux.c            |  334 +++++++++++++++++
 arch/arm/cpu/arm1176/tnetv107x/timer.c          |  122 ++++++
 arch/arm/cpu/arm1176/tnetv107x/wdt.c            |  180 +++++++++
 arch/arm/cpu/arm_cortexa8/omap3/Makefile        |    5 +-
 arch/arm/cpu/arm_cortexa8/omap3/board.c         |   34 +--
 arch/arm/cpu/arm_cortexa8/omap3/emif4.c         |  168 +++++++++
 arch/arm/cpu/arm_cortexa8/omap3/mem.c           |   90 -----
 arch/arm/cpu/arm_cortexa8/omap3/sdrc.c          |  202 ++++++++++
 arch/arm/cpu/arm_cortexa8/omap3/sys_info.c      |   41 --
 arch/arm/include/asm/arch-omap3/cpu.h           |   25 ++
 arch/arm/include/asm/arch-omap3/emif4.h         |   79 ++++
 arch/arm/include/asm/arch-omap3/mem.h           |   13 +
 arch/arm/include/asm/arch-omap3/sys_proto.h     |    3 +-
 arch/arm/include/asm/arch-tnetv107x/clock.h     |   68 ++++
 arch/arm/include/asm/arch-tnetv107x/emif_defs.h |    1 +
 arch/arm/include/asm/arch-tnetv107x/hardware.h  |  173 +++++++++
 arch/arm/include/asm/arch-tnetv107x/mux.h       |  306 +++++++++++++++
 arch/arm/include/asm/arch-tnetv107x/nand_defs.h |   38 ++
 board/logicpd/am3517evm/Makefile                |   46 +++
 board/logicpd/am3517evm/am3517evm.c             |   76 ++++
 board/logicpd/am3517evm/am3517evm.h             |  445 ++++++++++++++++++++++
 board/logicpd/am3517evm/config.mk               |   30 ++
 board/ti/tnetv107xevm/Makefile                  |   49 +++
 board/ti/tnetv107xevm/config.mk                 |   20 +
 board/ti/tnetv107xevm/sdb_board.c               |  149 ++++++++
 drivers/spi/davinci_spi.c                       |   77 +++--
 include/configs/am3517_evm.h                    |  296 +++++++++++++++
 include/configs/devkit8000.h                    |    2 +
 include/configs/omap3_beagle.h                  |    2 +
 include/configs/omap3_evm.h                     |   10 +-
 include/configs/omap3_overo.h                   |    2 +
 include/configs/omap3_pandora.h                 |    2 +
 include/configs/omap3_sdp3430.h                 |    2 +
 include/configs/omap3_zoom1.h                   |    2 +
 include/configs/omap3_zoom2.h                   |    2 +
 include/configs/smdk6400.h                      |    8 +-
 include/configs/tnetv107x_evm.h                 |  153 ++++++++
 47 files changed, 3764 insertions(+), 225 deletions(-)
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/Makefile
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/aemif.c
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/clock.c
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/init.c
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/lowlevel_init.S
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/mux.c
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/timer.c
 create mode 100644 arch/arm/cpu/arm1176/tnetv107x/wdt.c
 create mode 100644 arch/arm/cpu/arm_cortexa8/omap3/emif4.c
 create mode 100644 arch/arm/cpu/arm_cortexa8/omap3/sdrc.c
 create mode 100644 arch/arm/include/asm/arch-omap3/emif4.h
 create mode 100644 arch/arm/include/asm/arch-tnetv107x/clock.h
 create mode 100644 arch/arm/include/asm/arch-tnetv107x/emif_defs.h
 create mode 100644 arch/arm/include/asm/arch-tnetv107x/hardware.h
 create mode 100644 arch/arm/include/asm/arch-tnetv107x/mux.h
 create mode 100644 arch/arm/include/asm/arch-tnetv107x/nand_defs.h
 create mode 100644 board/logicpd/am3517evm/Makefile
 create mode 100644 board/logicpd/am3517evm/am3517evm.c
 create mode 100644 board/logicpd/am3517evm/am3517evm.h
 create mode 100644 board/logicpd/am3517evm/config.mk
 create mode 100644 board/ti/tnetv107xevm/Makefile
 create mode 100644 board/ti/tnetv107xevm/config.mk
 create mode 100644 board/ti/tnetv107xevm/sdb_board.c
 create mode 100644 include/configs/am3517_evm.h
 create mode 100644 include/configs/tnetv107x_evm.h

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2010-06-01 14:03 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-06-01 14:03 UTC (permalink / raw)
  To: u-boot

The following changes since commit 9bb3b3d4406c1e388a99f6fb189147d6a06cc2cf:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx

are available in the git repository at:

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

Sudhakar Rajashekhara (3):
      da830: Move common code out of da830evm.c file
      TI: DaVinci: Prepare for da850 support
      TI: DaVinci: Add board specific code for da850

 MAINTAINERS                                     |    4 +
 MAKEALL                                         |    1 +
 Makefile                                        |    5 +-
 arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
 board/davinci/common/misc.c                     |   30 +++++
 board/davinci/common/misc.h                     |    7 +
 board/davinci/{da830evm => da8xxevm}/Makefile   |    5 +-
 board/davinci/{da830evm => da8xxevm}/config.mk  |    0
 board/davinci/{da830evm => da8xxevm}/da830evm.c |   28 ++---
 board/davinci/da8xxevm/da850evm.c               |  110 ++++++++++++++++++
 include/configs/da850evm.h                      |  140 +++++++++++++++++++++++
 11 files changed, 311 insertions(+), 20 deletions(-)
 rename board/davinci/{da830evm => da8xxevm}/Makefile (91%)
 rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
 rename board/davinci/{da830evm => da8xxevm}/da830evm.c (90%)
 create mode 100644 board/davinci/da8xxevm/da850evm.c
 create mode 100644 include/configs/da850evm.h

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-02-24  5:01 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-02-24  5:01 UTC (permalink / raw)
  To: u-boot

Tom,

Please accept this pull request for this rather important looking fix

Regards,
Sandeep

The following changes since commit 2a6e25632fd71eae9cb9d9e098d72e90dfec8af1:
  Ladislav Michl (1):
        VoiceBlue: fix linker errors

are available in the git repository at:

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

Siarhei Siamashka (1):
      OMAP3: workaround for ARM Cortex-A8 erratum 725233

 cpu/arm_cortexa8/omap3/board.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-23  3:09 ` Paulraj, Sandeep
  2010-02-23 15:55   ` Tom
@ 2010-02-23 20:53   ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2010-02-23 20:53 UTC (permalink / raw)
  To: u-boot

Paulraj, Sandeep wrote:
> Tom,
> 
>> The following changes since commit
>> 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
>>   Jens Scharsig (1):
>>         new board (eb_cpux9k2)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> Ladislav Michl (8):
>>       NetStar: eeprom - undefined reference to `memset'
>>       NetStar: eeprom - be less verbose
>>       NetStar: eeprom - fix linker error
>>       NetStar: fix default environment
>>       NetStar: make mtdparts default ready for recent kernels
> You have already pulled in the 5 patches above. I thought I'd let you know.
> 
>>       netstar.h: do not exceed 80 columns
>>       VoiceBlue: limit line lenght to 80 characters
>>       VoiceBlue: fix linker errors
>>
>> Nick Thompson (1):
>>       da830evm: Add support for TI EMAC
>>
>> Sandeep Paulraj (1):
>>       DaVinci: Adding entry to MAKEALL for DM365 EVM
>>
>>  MAKEALL                                  |    1 +
>>  board/davinci/da830evm/da830evm.c        |   65 +++++++++++-
>>  board/netstar/Makefile                   |   54 +++++-----
>>  board/netstar/eeprom.c                   |   95 +++++++++--------
>>  board/netstar/eeprom.lds                 |   51 ---------
>>  board/netstar/eeprom_start.S             |   13 ---
>>  board/voiceblue/Makefile                 |   33 +++---
>>  board/voiceblue/eeprom.c                 |   97 +++++++++--------
>>  board/voiceblue/eeprom.lds               |   51 ---------
>>  board/voiceblue/eeprom_start.S           |   11 --
>>  include/asm-arm/arch-davinci/emac_defs.h |    1 +
>>  include/configs/da830evm.h               |    1 +
>>  include/configs/netstar.h                |  114 ++++++++++-----------
>>  include/configs/voiceblue.h              |  168 +++++++++++++++----------
>> -----
>>  14 files changed, 343 insertions(+), 412 deletions(-)
>>  delete mode 100644 board/netstar/eeprom.lds
>>  delete mode 100644 board/netstar/eeprom_start.S
>>  delete mode 100644 board/voiceblue/eeprom.lds
>>  delete mode 100644 board/voiceblue/eeprom_start.S
> 
> Regards,
> Sandeep
> 
Applied,
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-23 16:07     ` Paulraj, Sandeep
@ 2010-02-23 20:05       ` Tom
  0 siblings, 0 replies; 324+ messages in thread
From: Tom @ 2010-02-23 20:05 UTC (permalink / raw)
  To: u-boot

Paulraj, Sandeep wrote:
> 
>> -----Original Message-----
>> From: Tom [mailto:Tom.Rix at windriver.com]
>> Sent: Tuesday, February 23, 2010 10:55 AM
>> To: Paulraj, Sandeep
>> Cc: u-boot at lists.denx.de; Ben Warren
>> Subject: Re: [U-Boot] Please pull u-boot-ti/master
>>
>> Paulraj, Sandeep wrote:
>>> Tom,
>>>
>>>> The following changes since commit
>>>> 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
>>>>   Jens Scharsig (1):
>>>>         new board (eb_cpux9k2)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://git.denx.de/u-boot-ti.git master
>>>>
>>>> Ladislav Michl (8):
>>>>       NetStar: eeprom - undefined reference to `memset'
>>>>       NetStar: eeprom - be less verbose
>>>>       NetStar: eeprom - fix linker error
>>>>       NetStar: fix default environment
>>>>       NetStar: make mtdparts default ready for recent kernels
>>> You have already pulled in the 5 patches above. I thought I'd let you
>> know.
>>
>> Yes. I have these.
>>
>>>>       netstar.h: do not exceed 80 columns
>>>>       VoiceBlue: limit line lenght to 80 characters
>>>>       VoiceBlue: fix linker errors
>> I did not see a public ack for this one.
> 
>  http://lists.denx.de/pipermail/u-boot/2010-February/067840.html
> 
> I did so for the other as well I believe.

I believe i did not see the linker one.
Just checking..
Ok
>>>> Nick Thompson (1):
>>>>       da830evm: Add support for TI EMAC
>> Should this go through NET ?
> 
> This does not add the driver. That patch was ACK'ed by Ben long ago.
> This patch just does the PINMUX init and invokes the driver.
> 

Ok

>> Tom
> 
> Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-23 15:55   ` Tom
@ 2010-02-23 16:07     ` Paulraj, Sandeep
  2010-02-23 20:05       ` Tom
  0 siblings, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2010-02-23 16:07 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Tom [mailto:Tom.Rix at windriver.com]
> Sent: Tuesday, February 23, 2010 10:55 AM
> To: Paulraj, Sandeep
> Cc: u-boot at lists.denx.de; Ben Warren
> Subject: Re: [U-Boot] Please pull u-boot-ti/master
> 
> Paulraj, Sandeep wrote:
> > Tom,
> >
> >> The following changes since commit
> >> 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
> >>   Jens Scharsig (1):
> >>         new board (eb_cpux9k2)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-ti.git master
> >>
> >> Ladislav Michl (8):
> >>       NetStar: eeprom - undefined reference to `memset'
> >>       NetStar: eeprom - be less verbose
> >>       NetStar: eeprom - fix linker error
> >>       NetStar: fix default environment
> >>       NetStar: make mtdparts default ready for recent kernels
> > You have already pulled in the 5 patches above. I thought I'd let you
> know.
> 
> Yes. I have these.
> 
> >
> >>       netstar.h: do not exceed 80 columns
> >>       VoiceBlue: limit line lenght to 80 characters
> >>       VoiceBlue: fix linker errors
> 
> I did not see a public ack for this one.

 http://lists.denx.de/pipermail/u-boot/2010-February/067840.html

I did so for the other as well I believe.
> >>
> >> Nick Thompson (1):
> >>       da830evm: Add support for TI EMAC
> 
> Should this go through NET ?

This does not add the driver. That patch was ACK'ed by Ben long ago.
This patch just does the PINMUX init and invokes the driver.

> 
> Tom

Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-23  3:09 ` Paulraj, Sandeep
@ 2010-02-23 15:55   ` Tom
  2010-02-23 16:07     ` Paulraj, Sandeep
  2010-02-23 20:53   ` Tom
  1 sibling, 1 reply; 324+ messages in thread
From: Tom @ 2010-02-23 15:55 UTC (permalink / raw)
  To: u-boot

Paulraj, Sandeep wrote:
> Tom,
> 
>> The following changes since commit
>> 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
>>   Jens Scharsig (1):
>>         new board (eb_cpux9k2)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> Ladislav Michl (8):
>>       NetStar: eeprom - undefined reference to `memset'
>>       NetStar: eeprom - be less verbose
>>       NetStar: eeprom - fix linker error
>>       NetStar: fix default environment
>>       NetStar: make mtdparts default ready for recent kernels
> You have already pulled in the 5 patches above. I thought I'd let you know.

Yes. I have these.

> 
>>       netstar.h: do not exceed 80 columns
>>       VoiceBlue: limit line lenght to 80 characters
>>       VoiceBlue: fix linker errors

I did not see a public ack for this one.

>>
>> Nick Thompson (1):
>>       da830evm: Add support for TI EMAC

Should this go through NET ?

Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-18  2:45 s-paulraj at ti.com
@ 2010-02-23  3:09 ` Paulraj, Sandeep
  2010-02-23 15:55   ` Tom
  2010-02-23 20:53   ` Tom
  0 siblings, 2 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2010-02-23  3:09 UTC (permalink / raw)
  To: u-boot


Tom,

> 
> The following changes since commit
> 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
>   Jens Scharsig (1):
>         new board (eb_cpux9k2)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Ladislav Michl (8):
>       NetStar: eeprom - undefined reference to `memset'
>       NetStar: eeprom - be less verbose
>       NetStar: eeprom - fix linker error
>       NetStar: fix default environment
>       NetStar: make mtdparts default ready for recent kernels
You have already pulled in the 5 patches above. I thought I'd let you know.

>       netstar.h: do not exceed 80 columns
>       VoiceBlue: limit line lenght to 80 characters
>       VoiceBlue: fix linker errors
> 
> Nick Thompson (1):
>       da830evm: Add support for TI EMAC
> 
> Sandeep Paulraj (1):
>       DaVinci: Adding entry to MAKEALL for DM365 EVM
> 
>  MAKEALL                                  |    1 +
>  board/davinci/da830evm/da830evm.c        |   65 +++++++++++-
>  board/netstar/Makefile                   |   54 +++++-----
>  board/netstar/eeprom.c                   |   95 +++++++++--------
>  board/netstar/eeprom.lds                 |   51 ---------
>  board/netstar/eeprom_start.S             |   13 ---
>  board/voiceblue/Makefile                 |   33 +++---
>  board/voiceblue/eeprom.c                 |   97 +++++++++--------
>  board/voiceblue/eeprom.lds               |   51 ---------
>  board/voiceblue/eeprom_start.S           |   11 --
>  include/asm-arm/arch-davinci/emac_defs.h |    1 +
>  include/configs/da830evm.h               |    1 +
>  include/configs/netstar.h                |  114 ++++++++++-----------
>  include/configs/voiceblue.h              |  168 +++++++++++++++----------
> -----
>  14 files changed, 343 insertions(+), 412 deletions(-)
>  delete mode 100644 board/netstar/eeprom.lds
>  delete mode 100644 board/netstar/eeprom_start.S
>  delete mode 100644 board/voiceblue/eeprom.lds
>  delete mode 100644 board/voiceblue/eeprom_start.S

Regards,
Sandeep

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-08 19:28 s-paulraj at ti.com
  2010-02-12 14:33 ` Tom
@ 2010-02-20 22:27 ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2010-02-20 22:27 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> Tom,
> 
> Please accept this version of my pull request.
> 
> The following changes since commit 2f8f29f5f6f86b7c467a98508d02a28df735d1ee:
>   Sandeep Paulraj (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-ti
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Ladislav Michl (5):
>       NetStar: eeprom - undefined reference to `memset'
>       NetStar: eeprom - be less verbose
>       NetStar: eeprom - fix linker error
>       NetStar: fix default environment
>       NetStar: make mtdparts default ready for recent kernels
> 
I have pushed these 5 patches I missed.
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-02-18  2:45 s-paulraj at ti.com
  2010-02-23  3:09 ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-02-18  2:45 UTC (permalink / raw)
  To: u-boot

The following changes since commit 77e7273c40315abd2f3c17ad8d46a78950e3e65f:
  Jens Scharsig (1):
        new board (eb_cpux9k2)

are available in the git repository at:

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

Ladislav Michl (8):
      NetStar: eeprom - undefined reference to `memset'
      NetStar: eeprom - be less verbose
      NetStar: eeprom - fix linker error
      NetStar: fix default environment
      NetStar: make mtdparts default ready for recent kernels
      netstar.h: do not exceed 80 columns
      VoiceBlue: limit line lenght to 80 characters
      VoiceBlue: fix linker errors

Nick Thompson (1):
      da830evm: Add support for TI EMAC

Sandeep Paulraj (1):
      DaVinci: Adding entry to MAKEALL for DM365 EVM

 MAKEALL                                  |    1 +
 board/davinci/da830evm/da830evm.c        |   65 +++++++++++-
 board/netstar/Makefile                   |   54 +++++-----
 board/netstar/eeprom.c                   |   95 +++++++++--------
 board/netstar/eeprom.lds                 |   51 ---------
 board/netstar/eeprom_start.S             |   13 ---
 board/voiceblue/Makefile                 |   33 +++---
 board/voiceblue/eeprom.c                 |   97 +++++++++--------
 board/voiceblue/eeprom.lds               |   51 ---------
 board/voiceblue/eeprom_start.S           |   11 --
 include/asm-arm/arch-davinci/emac_defs.h |    1 +
 include/configs/da830evm.h               |    1 +
 include/configs/netstar.h                |  114 ++++++++++-----------
 include/configs/voiceblue.h              |  168 +++++++++++++++---------------
 14 files changed, 343 insertions(+), 412 deletions(-)
 delete mode 100644 board/netstar/eeprom.lds
 delete mode 100644 board/netstar/eeprom_start.S
 delete mode 100644 board/voiceblue/eeprom.lds
 delete mode 100644 board/voiceblue/eeprom_start.S

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-08 19:28 s-paulraj at ti.com
@ 2010-02-12 14:33 ` Tom
  2010-02-20 22:27 ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2010-02-12 14:33 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> Tom,
> 
> Please accept this version of my pull request.
> 
> The following changes since commit 2f8f29f5f6f86b7c467a98508d02a28df735d1ee:
>   Sandeep Paulraj (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-ti
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Ladislav Michl (5):
>       NetStar: eeprom - undefined reference to `memset'
>       NetStar: eeprom - be less verbose
>       NetStar: eeprom - fix linker error
>       NetStar: fix default environment
>       NetStar: make mtdparts default ready for recent kernels
> 
> Nick Thompson (2):
>       Davinci: Add EMIF-A macros for setting chip select parameters
>       DA830 EVM: Enable NAND support on Spectrum Digital EVM
> 
> Sanjeev Premi (1):
>       OMAP3: Avoid re-write to PRM_CLKSRC_CTRL
> 

Sorry.
I missed this.
Earlier 3 came in.
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2010-02-08 17:01 s-paulraj at ti.com
@ 2010-02-12 14:31 ` Tom
  0 siblings, 0 replies; 324+ messages in thread
From: Tom @ 2010-02-12 14:31 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> The following changes since commit 2f8f29f5f6f86b7c467a98508d02a28df735d1ee:
>   Sandeep Paulraj (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-ti
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Nick Thompson (2):
>       Davinci: Add EMIF-A macros for setting chip select parameters
>       DA830 EVM: Enable NAND support on Spectrum Digital EVM
> 
> Sanjeev Premi (1):
>       OMAP3: Avoid re-write to PRM_CLKSRC_CTRL
> 
>  board/davinci/da830evm/da830evm.c        |   37 ++++++++++++++++++++++++++++++
>  cpu/arm_cortexa8/omap3/clock.c           |   20 +++++++++++++---
>  include/asm-arm/arch-davinci/emif_defs.h |   18 +++++++++++++-
>  include/configs/da830evm.h               |   21 +++++++++++++----
>  4 files changed, 86 insertions(+), 10 deletions(-)
These 3 changes have been pushed to arm/master.
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-02-08 19:28 s-paulraj at ti.com
  2010-02-12 14:33 ` Tom
  2010-02-20 22:27 ` Tom
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-02-08 19:28 UTC (permalink / raw)
  To: u-boot

Tom,

Please accept this version of my pull request.

The following changes since commit 2f8f29f5f6f86b7c467a98508d02a28df735d1ee:
  Sandeep Paulraj (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ti

are available in the git repository at:

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

Ladislav Michl (5):
      NetStar: eeprom - undefined reference to `memset'
      NetStar: eeprom - be less verbose
      NetStar: eeprom - fix linker error
      NetStar: fix default environment
      NetStar: make mtdparts default ready for recent kernels

Nick Thompson (2):
      Davinci: Add EMIF-A macros for setting chip select parameters
      DA830 EVM: Enable NAND support on Spectrum Digital EVM

Sanjeev Premi (1):
      OMAP3: Avoid re-write to PRM_CLKSRC_CTRL

 board/davinci/da830evm/da830evm.c        |   37 ++++++++++++
 board/netstar/Makefile                   |   54 ++++++++---------
 board/netstar/eeprom.c                   |   95 ++++++++++++++++--------------
 board/netstar/eeprom.lds                 |   51 ----------------
 board/netstar/eeprom_start.S             |   13 ----
 cpu/arm_cortexa8/omap3/clock.c           |   20 +++++-
 include/asm-arm/arch-davinci/emif_defs.h |   18 +++++-
 include/configs/da830evm.h               |   21 +++++--
 include/configs/netstar.h                |   49 ++++++++--------
 9 files changed, 185 insertions(+), 173 deletions(-)
 delete mode 100644 board/netstar/eeprom.lds
 delete mode 100644 board/netstar/eeprom_start.S

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-02-08 17:01 s-paulraj at ti.com
  2010-02-12 14:31 ` Tom
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-02-08 17:01 UTC (permalink / raw)
  To: u-boot

The following changes since commit 2f8f29f5f6f86b7c467a98508d02a28df735d1ee:
  Sandeep Paulraj (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ti

are available in the git repository at:

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

Nick Thompson (2):
      Davinci: Add EMIF-A macros for setting chip select parameters
      DA830 EVM: Enable NAND support on Spectrum Digital EVM

Sanjeev Premi (1):
      OMAP3: Avoid re-write to PRM_CLKSRC_CTRL

 board/davinci/da830evm/da830evm.c        |   37 ++++++++++++++++++++++++++++++
 cpu/arm_cortexa8/omap3/clock.c           |   20 +++++++++++++---
 include/asm-arm/arch-davinci/emif_defs.h |   18 +++++++++++++-
 include/configs/da830evm.h               |   21 +++++++++++++----
 4 files changed, 86 insertions(+), 10 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
@ 2010-01-25 14:18 s-paulraj at ti.com
  0 siblings, 0 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2010-01-25 14:18 UTC (permalink / raw)
  To: u-boot

The following changes since commit 2ff6922280025c1315c53fa2eb4ab33f0c9591de:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

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

Nick Thompson (1):
      da830evm: Use table driven pin mux configuration

Sekhar Nori (1):
      TI DaVinci: Driver for the davinci SPI controller

 board/davinci/da830evm/da830evm.c |   35 +++---
 drivers/spi/Makefile              |    1 +
 drivers/spi/davinci_spi.c         |  223 +++++++++++++++++++++++++++++++++++++
 drivers/spi/davinci_spi.h         |  101 +++++++++++++++++
 4 files changed, 342 insertions(+), 18 deletions(-)
 create mode 100644 drivers/spi/davinci_spi.c
 create mode 100644 drivers/spi/davinci_spi.h

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

* [U-Boot] Please pull u-boot-ti/master
  2009-12-12 17:20 s-paulraj at ti.com
  2009-12-12 18:08 ` Tom
@ 2009-12-13 15:32 ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2009-12-13 15:32 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> The following changes since commit 57bf140ac66f95c9c36c494e4d027551b5477b01:
>   Wolfgang Denk (1):
>         Merge branch 'next-sync' of git://git.denx.de/u-boot-arm into next
> 
> are available in the git repository at:
> 
Pushed to arm/next
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2009-12-12 17:20 s-paulraj at ti.com
@ 2009-12-12 18:08 ` Tom
  2009-12-13 15:32 ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2009-12-12 18:08 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> The following changes since commit 57bf140ac66f95c9c36c494e4d027551b5477b01:
>   Wolfgang Denk (1):
>         Merge branch 'next-sync' of git://git.denx.de/u-boot-arm into next
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Nick Thompson (3):
>       Davinci: Table driven pinmux configuration
>       Davinci: Configurable NAND chip selects
>       Davinci: NAND enable ECC even when not in NAND boot mode
> 
> Robert P. J. Day (1):
>       Remove superfluous uses of V_PROMPT macro.
> 
Ok.
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
@ 2009-12-12 17:20 s-paulraj at ti.com
  2009-12-12 18:08 ` Tom
  2009-12-13 15:32 ` Tom
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2009-12-12 17:20 UTC (permalink / raw)
  To: u-boot

The following changes since commit 57bf140ac66f95c9c36c494e4d027551b5477b01:
  Wolfgang Denk (1):
        Merge branch 'next-sync' of git://git.denx.de/u-boot-arm into next

are available in the git repository at:

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

Nick Thompson (3):
      Davinci: Table driven pinmux configuration
      Davinci: Configurable NAND chip selects
      Davinci: NAND enable ECC even when not in NAND boot mode

Robert P. J. Day (1):
      Remove superfluous uses of V_PROMPT macro.

 board/davinci/common/misc.c              |   31 ++++++++++++++++++++++++++++++
 board/davinci/common/misc.h              |   13 ++++++++++++
 drivers/mtd/nand/davinci_nand.c          |   27 ++++++++++++-------------
 include/asm-arm/arch-davinci/emif_defs.h |   13 ++++++++---
 include/configs/apollon.h                |    4 +--
 include/configs/davinci_dm355evm.h       |    1 +
 include/configs/davinci_dm355leopard.h   |    1 +
 include/configs/davinci_dm365evm.h       |    1 +
 include/configs/davinci_dm6467evm.h      |    1 +
 include/configs/davinci_dvevm.h          |    1 +
 include/configs/davinci_schmoogie.h      |    1 +
 include/configs/davinci_sffsdr.h         |    1 +
 include/configs/davinci_sonata.h         |    1 +
 include/configs/omap2420h4.h             |    8 ++----
 include/configs/omap3_beagle.h           |    4 +--
 include/configs/omap3_evm.h              |    4 +--
 include/configs/omap3_overo.h            |    4 +--
 include/configs/omap3_pandora.h          |    4 +--
 include/configs/omap3_sdp3430.h          |    3 +-
 include/configs/omap3_zoom1.h            |    4 +--
 20 files changed, 84 insertions(+), 43 deletions(-)

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

* [U-Boot] Please pull u-boot-ti/master
  2009-11-21 23:27 s-paulraj at ti.com
  2009-11-23 21:33 ` Tom
@ 2009-11-25 14:11 ` Tom
  1 sibling, 0 replies; 324+ messages in thread
From: Tom @ 2009-11-25 14:11 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
>   Wolfgang Denk (1):
>         Merge branch 'master' of /home/wd/git/u-boot/custodians
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Grazvydas Ignotas (1):
>       OMAP3: pandora: fix booting without serial attached
> 
> Nick Thompson (3):
>       TI Davinci timer.c: Remove volatiles and memory mapped structures
>       TI Davinci: add a pin multiplexer configuration API
>       Add TI DA8xx support: DA8xx includes
> 
> Nishanth Menon (3):
>       OMAP3:SDRC: Cleanup references to SDP
>       OMAP3:SDRC: introduce DDR types
>       OMAP3: Fix SDRC init
> 
> Sandeep Paulraj (1):
>       TI DaVinci DM646x: Enable NAND on DM6467 EVM
> 
> Sekhar Nori (3):
>       TI DA8xx: Add DA8xx cpu functions
>       TI DA8xx: Add new directory for da830evm board
>       TI DA8xx: Integrate DA830 EVM support into U-Boot
>

I have pushed these changes to arm/next.
Thanks
Tom

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

* [U-Boot] Please pull u-boot-ti/master
  2009-11-24 15:08     ` Tom
@ 2009-11-24 15:21       ` Paulraj, Sandeep
  0 siblings, 0 replies; 324+ messages in thread
From: Paulraj, Sandeep @ 2009-11-24 15:21 UTC (permalink / raw)
  To: u-boot



> Paulraj, Sandeep wrote:
> > First sorry for top posting. Our entire center has lost internet
> connection and thus
> > we have gone back to the middle ages and i can't get my Outlook setup
> from home
> > properly.
> >
> > Regarding the DDR issues with Overo we have not received any closure.
> > But we have to move forward. My tree has some DDR related updates not in
> any
> > other tree. So i am asking all to make patches aginst u-boot-ti which as
> we can see is
> > not what Wolfgang wants to see.
> >
> > The change seems logical enough and works on multiple EVMs.
> >
> > Issues with Overo if any can be fixed as separate patches. I think it
> will
> > most probably work.
> 
> Ok.
> I will pull this into arm/next.
> I will cherry pick out
> 
>  > Grazvydas Ignotas (1):
>  >       OMAP3: pandora: fix booting without serial attached
> 
> for 2009.11
> Tom

I also want to let you know that this patch that I submitted to the list fixes a compilation warning

[PATCH] NAND: Add config option for imx27lite


> 
> >
> > Thanks,
> > Sandeep
> > ________________________________________
> > From: Tom [Tom.Rix at windriver.com]
> > Sent: Monday, November 23, 2009 4:33 PM
> > To: Paulraj, Sandeep
> > Cc: u-boot at lists.denx.de; wd at denx.de
> > Subject: Re: Please pull u-boot-ti/master
> >
> > Did we get closure of the memory failures on overo with sdrc patch ?
> > Tom
> >
> > s-paulraj at ti.com wrote:
> >> The following changes since commit
> b91b8f74fe9ded18344c3d03080a4abc07254502:
> >>   Wolfgang Denk (1):
> >>         Merge branch 'master' of /home/wd/git/u-boot/custodians
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-ti.git master
> >>
> >> Grazvydas Ignotas (1):
> >>       OMAP3: pandora: fix booting without serial attached
> >>
> >> Nick Thompson (3):
> >>       TI Davinci timer.c: Remove volatiles and memory mapped structures
> >>       TI Davinci: add a pin multiplexer configuration API
> >>       Add TI DA8xx support: DA8xx includes
> >>
> >> Nishanth Menon (3):
> >>       OMAP3:SDRC: Cleanup references to SDP
> >>       OMAP3:SDRC: introduce DDR types
> >>       OMAP3: Fix SDRC init
> >>
> >> Sandeep Paulraj (1):
> >>       TI DaVinci DM646x: Enable NAND on DM6467 EVM
> >>
> >> Sekhar Nori (3):
> >>       TI DA8xx: Add DA8xx cpu functions
> >>       TI DA8xx: Add new directory for da830evm board
> >>       TI DA8xx: Integrate DA830 EVM support into U-Boot
> >>
> >>  MAINTAINERS                             |    4 +
> >>  MAKEALL                                 |    1 +
> >>  Makefile                                |    3 +
> >>  board/davinci/common/misc.c             |   48 ++++++-
> >>  board/davinci/common/misc.h             |   12 ++
> >>  board/davinci/da830evm/Makefile         |   51 +++++++
> >>  board/davinci/da830evm/config.mk        |   43 ++++++
> >>  board/davinci/da830evm/da830evm.c       |  127 ++++++++++++++++
> >>  board/davinci/dm6467evm/dm6467evm.c     |   11 ++
> >>  board/pandora/pandora.h                 |    3 +-
> >>  cpu/arm926ejs/davinci/cpu.c             |   50 ++++++-
> >>  cpu/arm926ejs/davinci/psc.c             |   43 +++++-
> >>  cpu/arm926ejs/davinci/timer.c           |   28 ++--
> >>  cpu/arm_cortexa8/omap3/mem.c            |    5 +-
> >>  cpu/arm_cortexa8/omap3/sys_info.c       |    2 +-
> >>  include/asm-arm/arch-davinci/hardware.h |  237
> ++++++++++++++++++++++++++++++
> >>  include/asm-arm/arch-davinci/i2c_defs.h |    5 +
> >>  include/asm-arm/arch-omap3/cpu.h        |    1 +
> >>  include/asm-arm/arch-omap3/mem.h        |   98 +++++++++----
> >>  include/common.h                        |    3 +
> >>  include/configs/da830evm.h              |  243
> +++++++++++++++++++++++++++++++
> >>  include/configs/devkit8000.h            |    3 +
> >>  include/configs/omap3_beagle.h          |    3 +
> >>  include/configs/omap3_evm.h             |    3 +
> >>  include/configs/omap3_overo.h           |    3 +
> >>  include/configs/omap3_pandora.h         |    3 +
> >>  include/configs/omap3_sdp3430.h         |    3 +
> >>  include/configs/omap3_zoom1.h           |    3 +
> >>  include/configs/omap3_zoom2.h           |    3 +
> >>  29 files changed, 988 insertions(+), 54 deletions(-)
> >>  create mode 100644 board/davinci/da830evm/Makefile
> >>  create mode 100644 board/davinci/da830evm/config.mk
> >>  create mode 100644 board/davinci/da830evm/da830evm.c
> >>  create mode 100644 include/configs/da830evm.h
> >

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

* [U-Boot] Please pull u-boot-ti/master
  2009-11-23 22:08   ` Paulraj, Sandeep
@ 2009-11-24 15:08     ` Tom
  2009-11-24 15:21       ` Paulraj, Sandeep
  0 siblings, 1 reply; 324+ messages in thread
From: Tom @ 2009-11-24 15:08 UTC (permalink / raw)
  To: u-boot

Paulraj, Sandeep wrote:
> First sorry for top posting. Our entire center has lost internet connection and thus 
> we have gone back to the middle ages and i can't get my Outlook setup from home
> properly.
> 
> Regarding the DDR issues with Overo we have not received any closure.
> But we have to move forward. My tree has some DDR related updates not in any
> other tree. So i am asking all to make patches aginst u-boot-ti which as we can see is
> not what Wolfgang wants to see. 
> 
> The change seems logical enough and works on multiple EVMs.
> 
> Issues with Overo if any can be fixed as separate patches. I think it will
> most probably work.

Ok.
I will pull this into arm/next.
I will cherry pick out

 > Grazvydas Ignotas (1):
 >       OMAP3: pandora: fix booting without serial attached

for 2009.11
Tom

> 
> Thanks,
> Sandeep
> ________________________________________
> From: Tom [Tom.Rix at windriver.com]
> Sent: Monday, November 23, 2009 4:33 PM
> To: Paulraj, Sandeep
> Cc: u-boot at lists.denx.de; wd at denx.de
> Subject: Re: Please pull u-boot-ti/master
> 
> Did we get closure of the memory failures on overo with sdrc patch ?
> Tom
> 
> s-paulraj at ti.com wrote:
>> The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
>>   Wolfgang Denk (1):
>>         Merge branch 'master' of /home/wd/git/u-boot/custodians
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-ti.git master
>>
>> Grazvydas Ignotas (1):
>>       OMAP3: pandora: fix booting without serial attached
>>
>> Nick Thompson (3):
>>       TI Davinci timer.c: Remove volatiles and memory mapped structures
>>       TI Davinci: add a pin multiplexer configuration API
>>       Add TI DA8xx support: DA8xx includes
>>
>> Nishanth Menon (3):
>>       OMAP3:SDRC: Cleanup references to SDP
>>       OMAP3:SDRC: introduce DDR types
>>       OMAP3: Fix SDRC init
>>
>> Sandeep Paulraj (1):
>>       TI DaVinci DM646x: Enable NAND on DM6467 EVM
>>
>> Sekhar Nori (3):
>>       TI DA8xx: Add DA8xx cpu functions
>>       TI DA8xx: Add new directory for da830evm board
>>       TI DA8xx: Integrate DA830 EVM support into U-Boot
>>
>>  MAINTAINERS                             |    4 +
>>  MAKEALL                                 |    1 +
>>  Makefile                                |    3 +
>>  board/davinci/common/misc.c             |   48 ++++++-
>>  board/davinci/common/misc.h             |   12 ++
>>  board/davinci/da830evm/Makefile         |   51 +++++++
>>  board/davinci/da830evm/config.mk        |   43 ++++++
>>  board/davinci/da830evm/da830evm.c       |  127 ++++++++++++++++
>>  board/davinci/dm6467evm/dm6467evm.c     |   11 ++
>>  board/pandora/pandora.h                 |    3 +-
>>  cpu/arm926ejs/davinci/cpu.c             |   50 ++++++-
>>  cpu/arm926ejs/davinci/psc.c             |   43 +++++-
>>  cpu/arm926ejs/davinci/timer.c           |   28 ++--
>>  cpu/arm_cortexa8/omap3/mem.c            |    5 +-
>>  cpu/arm_cortexa8/omap3/sys_info.c       |    2 +-
>>  include/asm-arm/arch-davinci/hardware.h |  237 ++++++++++++++++++++++++++++++
>>  include/asm-arm/arch-davinci/i2c_defs.h |    5 +
>>  include/asm-arm/arch-omap3/cpu.h        |    1 +
>>  include/asm-arm/arch-omap3/mem.h        |   98 +++++++++----
>>  include/common.h                        |    3 +
>>  include/configs/da830evm.h              |  243 +++++++++++++++++++++++++++++++
>>  include/configs/devkit8000.h            |    3 +
>>  include/configs/omap3_beagle.h          |    3 +
>>  include/configs/omap3_evm.h             |    3 +
>>  include/configs/omap3_overo.h           |    3 +
>>  include/configs/omap3_pandora.h         |    3 +
>>  include/configs/omap3_sdp3430.h         |    3 +
>>  include/configs/omap3_zoom1.h           |    3 +
>>  include/configs/omap3_zoom2.h           |    3 +
>>  29 files changed, 988 insertions(+), 54 deletions(-)
>>  create mode 100644 board/davinci/da830evm/Makefile
>>  create mode 100644 board/davinci/da830evm/config.mk
>>  create mode 100644 board/davinci/da830evm/da830evm.c
>>  create mode 100644 include/configs/da830evm.h
> 

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

* [U-Boot] Please pull u-boot-ti/master
  2009-11-23 21:33 ` Tom
@ 2009-11-23 22:08   ` Paulraj, Sandeep
  2009-11-24 15:08     ` Tom
  0 siblings, 1 reply; 324+ messages in thread
From: Paulraj, Sandeep @ 2009-11-23 22:08 UTC (permalink / raw)
  To: u-boot

First sorry for top posting. Our entire center has lost internet connection and thus 
we have gone back to the middle ages and i can't get my Outlook setup from home
properly.

Regarding the DDR issues with Overo we have not received any closure.
But we have to move forward. My tree has some DDR related updates not in any
other tree. So i am asking all to make patches aginst u-boot-ti which as we can see is
not what Wolfgang wants to see. 

The change seems logical enough and works on multiple EVMs.

Issues with Overo if any can be fixed as separate patches. I think it will
most probably work.

Thanks,
Sandeep
________________________________________
From: Tom [Tom.Rix at windriver.com]
Sent: Monday, November 23, 2009 4:33 PM
To: Paulraj, Sandeep
Cc: u-boot at lists.denx.de; wd at denx.de
Subject: Re: Please pull u-boot-ti/master

Did we get closure of the memory failures on overo with sdrc patch ?
Tom

s-paulraj at ti.com wrote:
> The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
>   Wolfgang Denk (1):
>         Merge branch 'master' of /home/wd/git/u-boot/custodians
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-ti.git master
>
> Grazvydas Ignotas (1):
>       OMAP3: pandora: fix booting without serial attached
>
> Nick Thompson (3):
>       TI Davinci timer.c: Remove volatiles and memory mapped structures
>       TI Davinci: add a pin multiplexer configuration API
>       Add TI DA8xx support: DA8xx includes
>
> Nishanth Menon (3):
>       OMAP3:SDRC: Cleanup references to SDP
>       OMAP3:SDRC: introduce DDR types
>       OMAP3: Fix SDRC init
>
> Sandeep Paulraj (1):
>       TI DaVinci DM646x: Enable NAND on DM6467 EVM
>
> Sekhar Nori (3):
>       TI DA8xx: Add DA8xx cpu functions
>       TI DA8xx: Add new directory for da830evm board
>       TI DA8xx: Integrate DA830 EVM support into U-Boot
>
>  MAINTAINERS                             |    4 +
>  MAKEALL                                 |    1 +
>  Makefile                                |    3 +
>  board/davinci/common/misc.c             |   48 ++++++-
>  board/davinci/common/misc.h             |   12 ++
>  board/davinci/da830evm/Makefile         |   51 +++++++
>  board/davinci/da830evm/config.mk        |   43 ++++++
>  board/davinci/da830evm/da830evm.c       |  127 ++++++++++++++++
>  board/davinci/dm6467evm/dm6467evm.c     |   11 ++
>  board/pandora/pandora.h                 |    3 +-
>  cpu/arm926ejs/davinci/cpu.c             |   50 ++++++-
>  cpu/arm926ejs/davinci/psc.c             |   43 +++++-
>  cpu/arm926ejs/davinci/timer.c           |   28 ++--
>  cpu/arm_cortexa8/omap3/mem.c            |    5 +-
>  cpu/arm_cortexa8/omap3/sys_info.c       |    2 +-
>  include/asm-arm/arch-davinci/hardware.h |  237 ++++++++++++++++++++++++++++++
>  include/asm-arm/arch-davinci/i2c_defs.h |    5 +
>  include/asm-arm/arch-omap3/cpu.h        |    1 +
>  include/asm-arm/arch-omap3/mem.h        |   98 +++++++++----
>  include/common.h                        |    3 +
>  include/configs/da830evm.h              |  243 +++++++++++++++++++++++++++++++
>  include/configs/devkit8000.h            |    3 +
>  include/configs/omap3_beagle.h          |    3 +
>  include/configs/omap3_evm.h             |    3 +
>  include/configs/omap3_overo.h           |    3 +
>  include/configs/omap3_pandora.h         |    3 +
>  include/configs/omap3_sdp3430.h         |    3 +
>  include/configs/omap3_zoom1.h           |    3 +
>  include/configs/omap3_zoom2.h           |    3 +
>  29 files changed, 988 insertions(+), 54 deletions(-)
>  create mode 100644 board/davinci/da830evm/Makefile
>  create mode 100644 board/davinci/da830evm/config.mk
>  create mode 100644 board/davinci/da830evm/da830evm.c
>  create mode 100644 include/configs/da830evm.h

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

* [U-Boot] Please pull u-boot-ti/master
  2009-11-21 23:27 s-paulraj at ti.com
@ 2009-11-23 21:33 ` Tom
  2009-11-23 22:08   ` Paulraj, Sandeep
  2009-11-25 14:11 ` Tom
  1 sibling, 1 reply; 324+ messages in thread
From: Tom @ 2009-11-23 21:33 UTC (permalink / raw)
  To: u-boot

Did we get closure of the memory failures on overo with sdrc patch ?
Tom

s-paulraj at ti.com wrote:
> The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
>   Wolfgang Denk (1):
>         Merge branch 'master' of /home/wd/git/u-boot/custodians
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-ti.git master
> 
> Grazvydas Ignotas (1):
>       OMAP3: pandora: fix booting without serial attached
> 
> Nick Thompson (3):
>       TI Davinci timer.c: Remove volatiles and memory mapped structures
>       TI Davinci: add a pin multiplexer configuration API
>       Add TI DA8xx support: DA8xx includes
> 
> Nishanth Menon (3):
>       OMAP3:SDRC: Cleanup references to SDP
>       OMAP3:SDRC: introduce DDR types
>       OMAP3: Fix SDRC init
> 
> Sandeep Paulraj (1):
>       TI DaVinci DM646x: Enable NAND on DM6467 EVM
> 
> Sekhar Nori (3):
>       TI DA8xx: Add DA8xx cpu functions
>       TI DA8xx: Add new directory for da830evm board
>       TI DA8xx: Integrate DA830 EVM support into U-Boot
> 
>  MAINTAINERS                             |    4 +
>  MAKEALL                                 |    1 +
>  Makefile                                |    3 +
>  board/davinci/common/misc.c             |   48 ++++++-
>  board/davinci/common/misc.h             |   12 ++
>  board/davinci/da830evm/Makefile         |   51 +++++++
>  board/davinci/da830evm/config.mk        |   43 ++++++
>  board/davinci/da830evm/da830evm.c       |  127 ++++++++++++++++
>  board/davinci/dm6467evm/dm6467evm.c     |   11 ++
>  board/pandora/pandora.h                 |    3 +-
>  cpu/arm926ejs/davinci/cpu.c             |   50 ++++++-
>  cpu/arm926ejs/davinci/psc.c             |   43 +++++-
>  cpu/arm926ejs/davinci/timer.c           |   28 ++--
>  cpu/arm_cortexa8/omap3/mem.c            |    5 +-
>  cpu/arm_cortexa8/omap3/sys_info.c       |    2 +-
>  include/asm-arm/arch-davinci/hardware.h |  237 ++++++++++++++++++++++++++++++
>  include/asm-arm/arch-davinci/i2c_defs.h |    5 +
>  include/asm-arm/arch-omap3/cpu.h        |    1 +
>  include/asm-arm/arch-omap3/mem.h        |   98 +++++++++----
>  include/common.h                        |    3 +
>  include/configs/da830evm.h              |  243 +++++++++++++++++++++++++++++++
>  include/configs/devkit8000.h            |    3 +
>  include/configs/omap3_beagle.h          |    3 +
>  include/configs/omap3_evm.h             |    3 +
>  include/configs/omap3_overo.h           |    3 +
>  include/configs/omap3_pandora.h         |    3 +
>  include/configs/omap3_sdp3430.h         |    3 +
>  include/configs/omap3_zoom1.h           |    3 +
>  include/configs/omap3_zoom2.h           |    3 +
>  29 files changed, 988 insertions(+), 54 deletions(-)
>  create mode 100644 board/davinci/da830evm/Makefile
>  create mode 100644 board/davinci/da830evm/config.mk
>  create mode 100644 board/davinci/da830evm/da830evm.c
>  create mode 100644 include/configs/da830evm.h

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

* [U-Boot] Please pull u-boot-ti/master
@ 2009-11-21 23:27 s-paulraj at ti.com
  2009-11-23 21:33 ` Tom
  2009-11-25 14:11 ` Tom
  0 siblings, 2 replies; 324+ messages in thread
From: s-paulraj at ti.com @ 2009-11-21 23:27 UTC (permalink / raw)
  To: u-boot

The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
  Wolfgang Denk (1):
        Merge branch 'master' of /home/wd/git/u-boot/custodians

are available in the git repository at:

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

Grazvydas Ignotas (1):
      OMAP3: pandora: fix booting without serial attached

Nick Thompson (3):
      TI Davinci timer.c: Remove volatiles and memory mapped structures
      TI Davinci: add a pin multiplexer configuration API
      Add TI DA8xx support: DA8xx includes

Nishanth Menon (3):
      OMAP3:SDRC: Cleanup references to SDP
      OMAP3:SDRC: introduce DDR types
      OMAP3: Fix SDRC init

Sandeep Paulraj (1):
      TI DaVinci DM646x: Enable NAND on DM6467 EVM

Sekhar Nori (3):
      TI DA8xx: Add DA8xx cpu functions
      TI DA8xx: Add new directory for da830evm board
      TI DA8xx: Integrate DA830 EVM support into U-Boot

 MAINTAINERS                             |    4 +
 MAKEALL                                 |    1 +
 Makefile                                |    3 +
 board/davinci/common/misc.c             |   48 ++++++-
 board/davinci/common/misc.h             |   12 ++
 board/davinci/da830evm/Makefile         |   51 +++++++
 board/davinci/da830evm/config.mk        |   43 ++++++
 board/davinci/da830evm/da830evm.c       |  127 ++++++++++++++++
 board/davinci/dm6467evm/dm6467evm.c     |   11 ++
 board/pandora/pandora.h                 |    3 +-
 cpu/arm926ejs/davinci/cpu.c             |   50 ++++++-
 cpu/arm926ejs/davinci/psc.c             |   43 +++++-
 cpu/arm926ejs/davinci/timer.c           |   28 ++--
 cpu/arm_cortexa8/omap3/mem.c            |    5 +-
 cpu/arm_cortexa8/omap3/sys_info.c       |    2 +-
 include/asm-arm/arch-davinci/hardware.h |  237 ++++++++++++++++++++++++++++++
 include/asm-arm/arch-davinci/i2c_defs.h |    5 +
 include/asm-arm/arch-omap3/cpu.h        |    1 +
 include/asm-arm/arch-omap3/mem.h        |   98 +++++++++----
 include/common.h                        |    3 +
 include/configs/da830evm.h              |  243 +++++++++++++++++++++++++++++++
 include/configs/devkit8000.h            |    3 +
 include/configs/omap3_beagle.h          |    3 +
 include/configs/omap3_evm.h             |    3 +
 include/configs/omap3_overo.h           |    3 +
 include/configs/omap3_pandora.h         |    3 +
 include/configs/omap3_sdp3430.h         |    3 +
 include/configs/omap3_zoom1.h           |    3 +
 include/configs/omap3_zoom2.h           |    3 +
 29 files changed, 988 insertions(+), 54 deletions(-)
 create mode 100644 board/davinci/da830evm/Makefile
 create mode 100644 board/davinci/da830evm/config.mk
 create mode 100644 board/davinci/da830evm/da830evm.c
 create mode 100644 include/configs/da830evm.h

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

* [U-Boot] Please Pull u-boot-ti/master
  2009-09-29 15:50 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
@ 2009-09-30  1:32 ` Tom
  0 siblings, 0 replies; 324+ messages in thread
From: Tom @ 2009-09-30  1:32 UTC (permalink / raw)
  To: u-boot

s-paulraj at ti.com wrote:
> The following changes since commit 277b59d6df73da71d4f6569e9fc33b6014d236f7:
>   Sandeep Paulraj (1):
>         TI: DaVinci DM365: Minor config cleanup
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-ti.git master
> 
> Dirk Behme (1):
>       OMAP3 MMC: Fix warning dereferencing type-punned pointer
> 
> Olof Johansson (3):
>       OMAP3: Clean up whitespace in mux configs
>       SMC911X: Add chip auto detection
>       TI: OMAP3: Overo Tobi ethernet support
> 
> Sandeep Paulraj (3):
>       TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
>       TI: DaVinci: GPIO header file and definitions
>       TI: DaVinci DM365: Enabling network Support on DM365 EVM
> 
> Steve Sakoman (1):
>       OMAP3: Update Overo and Beagle environment
> 
> Tom Rix (1):
>       TI OMAP3 Use arm init sequence to initialize i2c
> 
>  board/davinci/dm365evm/dm365evm.c        |   43 ++
>  board/logicpd/zoom1/zoom1.h              |  164 ++++----
>  board/logicpd/zoom2/zoom2.h              |  188 +++++-----
>  board/overo/overo.c                      |   59 +++
>  board/overo/overo.h                      |  645 +++++++++++++++---------------
>  board/pandora/pandora.h                  |  662 +++++++++++++++---------------
>  board/ti/beagle/beagle.h                 |  640 ++++++++++++++--------------
>  board/ti/evm/evm.h                       |  662 +++++++++++++++---------------
>  board/timll/devkit8000/devkit8000.h      |  628 ++++++++++++++--------------
>  drivers/mmc/omap3_mmc.c                  |   48 +--
>  drivers/net/smc911x.c                    |   14 +-
>  drivers/net/smc911x.h                    |    7 +-
>  include/asm-arm/arch-davinci/emac_defs.h |    4 +-
>  include/asm-arm/arch-davinci/gpio_defs.h |   53 +++
>  include/asm-arm/arch-davinci/nand_defs.h |    2 +-
>  include/asm-arm/arch-omap3/mmc.h         |    7 +
>  include/configs/devkit8000.h             |    1 +
>  include/configs/omap3_beagle.h           |   28 +-
>  include/configs/omap3_evm.h              |    1 +
>  include/configs/omap3_overo.h            |   45 ++-
>  include/configs/omap3_pandora.h          |    1 +
>  include/configs/omap3_zoom1.h            |    1 +
>  include/configs/omap3_zoom2.h            |    1 +
>  23 files changed, 2054 insertions(+), 1850 deletions(-)
>  create mode 100644 include/asm-arm/arch-davinci/gpio_defs.h
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

OK.
I will pull these in, likely over the weekend.
I will ask for some testing and then send Wolfgang a pull request for ARM.
Tom

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

* [U-Boot] Please Pull u-boot-ti/master
@ 2009-09-29 15:50 s-paulraj at ti.com
  2009-09-30  1:32 ` Tom
  0 siblings, 1 reply; 324+ messages in thread
From: s-paulraj at ti.com @ 2009-09-29 15:50 UTC (permalink / raw)
  To: u-boot

The following changes since commit 277b59d6df73da71d4f6569e9fc33b6014d236f7:
  Sandeep Paulraj (1):
        TI: DaVinci DM365: Minor config cleanup

are available in the git repository at:

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

Dirk Behme (1):
      OMAP3 MMC: Fix warning dereferencing type-punned pointer

Olof Johansson (3):
      OMAP3: Clean up whitespace in mux configs
      SMC911X: Add chip auto detection
      TI: OMAP3: Overo Tobi ethernet support

Sandeep Paulraj (3):
      TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
      TI: DaVinci: GPIO header file and definitions
      TI: DaVinci DM365: Enabling network Support on DM365 EVM

Steve Sakoman (1):
      OMAP3: Update Overo and Beagle environment

Tom Rix (1):
      TI OMAP3 Use arm init sequence to initialize i2c

 board/davinci/dm365evm/dm365evm.c        |   43 ++
 board/logicpd/zoom1/zoom1.h              |  164 ++++----
 board/logicpd/zoom2/zoom2.h              |  188 +++++-----
 board/overo/overo.c                      |   59 +++
 board/overo/overo.h                      |  645 +++++++++++++++---------------
 board/pandora/pandora.h                  |  662 +++++++++++++++---------------
 board/ti/beagle/beagle.h                 |  640 ++++++++++++++--------------
 board/ti/evm/evm.h                       |  662 +++++++++++++++---------------
 board/timll/devkit8000/devkit8000.h      |  628 ++++++++++++++--------------
 drivers/mmc/omap3_mmc.c                  |   48 +--
 drivers/net/smc911x.c                    |   14 +-
 drivers/net/smc911x.h                    |    7 +-
 include/asm-arm/arch-davinci/emac_defs.h |    4 +-
 include/asm-arm/arch-davinci/gpio_defs.h |   53 +++
 include/asm-arm/arch-davinci/nand_defs.h |    2 +-
 include/asm-arm/arch-omap3/mmc.h         |    7 +
 include/configs/devkit8000.h             |    1 +
 include/configs/omap3_beagle.h           |   28 +-
 include/configs/omap3_evm.h              |    1 +
 include/configs/omap3_overo.h            |   45 ++-
 include/configs/omap3_pandora.h          |    1 +
 include/configs/omap3_zoom1.h            |    1 +
 include/configs/omap3_zoom2.h            |    1 +
 23 files changed, 2054 insertions(+), 1850 deletions(-)
 create mode 100644 include/asm-arm/arch-davinci/gpio_defs.h

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

end of thread, other threads:[~2015-02-02 19:00 UTC | newest]

Thread overview: 324+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-13 19:33 [U-Boot] Please pull u-boot-ti/master Tom Rini
2012-01-16  7:39 ` Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2015-01-30 14:20 Tom Rini
2015-02-02 19:00 ` Tom Rini
2014-12-05 14:53 Tom Rini
2014-12-08 21:41 ` Tom Rini
2014-11-05 21:33 Tom Rini
2014-11-10 21:29 ` Tom Rini
2014-10-23 17:17 Tom Rini
2014-10-27 14:32 ` Tom Rini
2014-09-18 12:34 Tom Rini
2014-09-21 16:45 ` Albert ARIBAUD
2014-09-04 20:48 Tom Rini
2014-09-08 22:19 ` Albert ARIBAUD
2014-08-25 19:18 Tom Rini
2014-08-29 17:48 ` Tom Rini
2014-07-26  1:29 Tom Rini
2014-07-29 11:55 ` Albert ARIBAUD
2014-06-19 22:03 Tom Rini
2014-07-01 13:43 ` Albert ARIBAUD
2014-06-06 21:56 Tom Rini
2014-06-08  7:45 ` Albert ARIBAUD
2014-05-23 23:52 Tom Rini
2014-05-24  8:39 ` Albert ARIBAUD
2014-05-14  1:36 Tom Rini
2014-05-16 15:20 ` Albert ARIBAUD
2014-04-18 13:24 Tom Rini
2014-04-21 16:54 ` Karicheri, Muralidharan
2014-04-21 19:32 ` Albert ARIBAUD
2014-03-31 15:21 Tom Rini
2014-04-02  5:12 ` Albert ARIBAUD
2014-03-12 20:05 Tom Rini
2014-03-12 20:23 ` Tom Rini
2014-03-13 15:56   ` Albert ARIBAUD
2014-03-06 15:45 Tom Rini
2014-03-06 16:05 ` Enric Balletbo Serra
2014-03-06 16:24   ` Tom Rini
2014-03-06 16:22 ` Tom Rini
2014-03-07 13:24   ` Albert ARIBAUD
2014-03-04 19:19 Tom Rini
2014-03-05  8:51 ` Albert ARIBAUD
2014-02-21 19:16 Tom Rini
2014-02-24 12:29 ` Albert ARIBAUD
2014-01-24 20:20 Tom Rini
2014-01-29 13:07 ` Albert ARIBAUD
2014-01-29 15:07 ` Albert ARIBAUD
2014-01-08 13:33 Tom Rini
2014-01-08 22:06 ` Albert ARIBAUD
2013-12-18 20:07 Tom Rini
2013-12-19 13:14 ` Dan Murphy
2013-12-19 14:23   ` Tom Rini
2013-12-04 22:06 Tom Rini
2013-12-06  8:33 ` Albert ARIBAUD
2013-12-06  9:20   ` Yegor Yefremov
2013-12-06 10:08     ` Stefan Roese
2013-12-06 10:11       ` Yegor Yefremov
2013-12-06 12:06       ` Albert ARIBAUD
2013-12-06 13:38         ` Stefan Roese
2013-12-06 14:23           ` Albert ARIBAUD
2013-11-12 14:50 Tom Rini
2013-11-12 15:03 ` Tom Rini
2013-10-07 11:44 Tom Rini
2013-10-07 16:17 ` Albert ARIBAUD
2013-09-21 12:06 Tom Rini
2013-10-02  7:39 ` Albert ARIBAUD
2013-08-28 18:25 Tom Rini
2013-09-04 15:14 ` Albert ARIBAUD
2013-08-16 13:39 Tom Rini
2013-07-30 13:29 Tom Rini
2013-07-30 20:07 ` Albert ARIBAUD
2013-07-30  2:21 Tom Rini
2013-07-30  9:45 ` Stefan Roese
2013-07-30 13:38   ` Tom Rini
2013-07-30 13:37 ` Tom Rini
2013-07-02 20:05 Tom Rini
2013-07-04 12:10 ` Albert ARIBAUD
2013-06-18 15:25 Tom Rini
2013-06-19 23:18 ` Albert ARIBAUD
2013-06-10 15:38 Tom Rini
2013-06-10 17:11 ` Albert ARIBAUD
2013-06-07 19:19 Tom Rini
2013-06-08 20:43 ` Lubomir Popov
2013-06-09  8:07   ` Igor Grinberg
2013-06-09 21:37   ` Michael Trimarchi
2013-06-10  8:54     ` Lubomir Popov
2013-06-10  9:55       ` Michael Trimarchi
2013-06-10 10:57         ` Lubomir Popov
2013-06-10 14:51         ` Albert ARIBAUD
2013-06-10 15:37         ` Tom Rini
2013-06-08 21:57 ` Albert ARIBAUD
2013-06-10 12:44   ` Tom Rini
2013-06-05 12:54 Tom Rini
2013-06-05 15:00 ` Albert ARIBAUD
2013-05-10 13:16 Tom Rini
2013-05-11 20:54 ` Albert ARIBAUD
2013-04-12 20:47 Tom Rini
2013-04-13  8:36 ` Albert ARIBAUD
2013-04-10 20:07 Tom Rini
2013-04-10 21:28 ` Albert ARIBAUD
2013-04-08 16:33 Tom Rini
2013-04-09  5:47 ` Albert ARIBAUD
2013-03-22 20:18 Tom Rini
2013-03-24 16:48 ` Albert ARIBAUD
2013-03-24 16:51   ` Tom Rini
2013-03-24 17:57     ` Albert ARIBAUD
2013-03-11 18:25 Tom Rini
2013-03-12  7:03 ` Nikita Kiryanov
2013-03-12  7:14   ` Albert ARIBAUD
2013-03-12 12:50     ` Tom Rini
2013-03-12 12:49   ` Tom Rini
2013-03-12 14:13 ` Albert ARIBAUD
2013-02-19 16:14 Tom Rini
2013-02-21 17:52 ` R Sricharan
2013-02-21 17:57   ` Tom Rini
2013-02-21 18:02     ` R Sricharan
2013-02-21 21:53 ` Albert ARIBAUD
2013-02-07 19:19 Tom Rini
2013-02-08 18:50 ` Albert ARIBAUD
2013-02-04 20:13 Tom Rini
2013-02-07 19:18 ` Tom Rini
2013-01-25 22:13 Tom Rini
2013-01-26 10:55 ` Albert ARIBAUD
2013-01-26 12:22   ` Javier Martinez Canillas
2013-01-11  0:59 Tom Rini
2013-01-11 17:23 ` Albert ARIBAUD
2012-12-10 20:18 Tom Rini
2013-01-08 13:12 ` Albert ARIBAUD
2012-11-02 17:08 Tom Rini
2012-11-03  9:58 ` Albert ARIBAUD
2012-10-25 18:49 Tom Rini
2012-10-26  5:37 ` Albert ARIBAUD
2012-10-23 18:19 Tom Rini
2012-10-25 18:34 ` Tom Rini
2012-10-02  0:12 Tom Rini
2012-10-03  0:01 ` Albert ARIBAUD
2012-09-20 23:52 Tom Rini
2012-09-21 21:07 ` Albert ARIBAUD
2012-09-21 21:17   ` Tom Rini
2012-09-05  0:41 Tom Rini
2012-09-05 20:59 ` Albert ARIBAUD
2012-08-24 23:40 Tom Rini
2012-08-25 11:30 ` Albert ARIBAUD
2012-08-07 17:08 Tom Rini
2012-08-13 23:14 ` Albert ARIBAUD
2012-08-03 16:16 Tom Rini
2012-08-05 20:26 ` Albert ARIBAUD
2012-07-09 18:43 Tom Rini
2012-07-09 20:38 ` Albert ARIBAUD
2012-07-05 16:18 Tom Rini
2012-07-05 21:31 ` Albert ARIBAUD
2012-05-25 15:02 Tom Rini
2012-06-10 21:39 ` Albert ARIBAUD
2012-05-14 21:26 Tom Rini
2012-05-15  6:29 ` Albert ARIBAUD
2012-05-03 15:53 Tom Rini
2012-05-08 15:11 ` Albert ARIBAUD
2012-05-08 17:08   ` Tom Rini
2012-04-23 17:19 Tom Rini
2012-04-25  7:06 ` Albert ARIBAUD
2012-04-10 17:57 Tom Rini
2012-04-16 12:46 ` Albert ARIBAUD
2012-03-28 21:54 Tom Rini
2012-03-29  6:21 ` Albert ARIBAUD
2012-03-29 18:01 ` Tom Rini
2012-03-29 23:51   ` Albert ARIBAUD
2012-03-30  0:58     ` Tom Rini
2012-03-30  5:35       ` Albert ARIBAUD
2012-03-30 14:16         ` Tom Rini
2012-03-26 22:40 Tom Rini
2012-03-27 20:07 ` Albert ARIBAUD
2012-03-19 18:29 Tom Rini
2012-03-26 17:36 ` Tom Rini
2012-03-26 20:45   ` Albert ARIBAUD
2012-03-26 21:09     ` Albert ARIBAUD
2012-03-05 23:03 Tom Rini
2012-03-06  7:29 ` Albert ARIBAUD
2012-03-06 14:28   ` Tom Rini
2012-03-06 20:16   ` Wolfgang Denk
2012-03-07  7:22     ` Albert ARIBAUD
2012-02-23 16:01 Tom Rini
2012-02-27 20:17 ` Albert ARIBAUD
2012-02-14 18:00 Tom Rini
2012-02-17  8:02 ` Albert ARIBAUD
2012-02-10 22:56 Tom Rini
2012-02-12  9:10 ` Albert ARIBAUD
2012-02-02 18:10 Tom Rini
2012-02-03 18:49 ` Albert ARIBAUD
2012-01-25 21:34 Tom Rini
2012-01-04 16:19 Tom Rini
2012-01-12 22:06 ` Albert ARIBAUD
2011-12-13 18:58 Tom Rini
2011-12-05 23:52 Tom Rini
2011-12-06 22:40 ` Tom Rini
2011-12-06 22:54   ` Albert ARIBAUD
2011-11-29 22:53 Tom Rini
2011-12-05 17:07 ` Albert ARIBAUD
2011-11-16 15:24 s-paulraj at ti.com
2011-11-17 13:55 ` Albert ARIBAUD
2011-11-17 14:56   ` Kumar Gala
2011-11-15 15:11 s-paulraj at ti.com
2011-11-15 21:27 ` Albert ARIBAUD
2011-11-09 22:04 s-paulraj at ti.com
2011-11-10 15:36 ` Albert ARIBAUD
2011-11-08 14:05 s-paulraj at ti.com
2011-11-08 19:41 ` Albert ARIBAUD
2011-11-04 17:46 s-paulraj at ti.com
2011-11-03 20:11 s-paulraj at ti.com
2011-11-03 21:30 ` Albert ARIBAUD
2011-11-03 16:54 s-paulraj at ti.com
2011-11-03 17:24 ` Luca Ceresoli
2011-11-03 17:52   ` Paulraj, Sandeep
2011-11-03 18:05     ` Wolfgang Denk
2011-11-03 18:17     ` Albert ARIBAUD
2011-11-03 18:23       ` Tom Rini
2011-11-03 20:13       ` Paulraj, Sandeep
2011-11-03 21:06         ` Albert ARIBAUD
2011-11-03 21:11           ` Paulraj, Sandeep
2011-11-03 21:15             ` Albert ARIBAUD
2011-11-03 18:26   ` Tom Rini
2011-11-03 19:46     ` Albert ARIBAUD
2011-11-03 20:04   ` Tom Rini
2011-10-21 17:00 s-paulraj at ti.com
2011-10-21 18:12 ` Albert ARIBAUD
2011-10-21 19:57   ` Dirk Behme
2011-10-21 20:04     ` Paulraj, Sandeep
2011-10-21 20:09       ` Albert ARIBAUD
2011-10-21 21:00         ` Tom Rini
2011-10-21 21:48           ` Albert ARIBAUD
2011-09-09 20:35 s-paulraj at ti.com
2011-09-09 21:26 ` Albert ARIBAUD
2011-09-10  6:00   ` Albert ARIBAUD
2011-09-10 19:00     ` Paulraj, Sandeep
2011-09-10  6:11 ` Albert ARIBAUD
2011-09-08 15:16 s-paulraj at ti.com
2011-09-08 15:54 ` Albert ARIBAUD
2011-09-08 16:52   ` Paulraj, Sandeep
2011-09-08 17:20     ` Albert ARIBAUD
2011-09-08 15:58 ` Albert ARIBAUD
2011-09-04  2:35 s-paulraj at ti.com
2011-07-21 13:36 s-paulraj at ti.com
2011-07-23 13:13 ` Albert ARIBAUD
2011-07-18 14:07 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2011-06-09 12:58 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2011-06-13 10:23 ` Albert ARIBAUD
2011-04-29 20:39 s-paulraj at ti.com
2011-05-07 10:13 ` Albert ARIBAUD
2011-05-09  5:49   ` Prafulla Wadaskar
2011-04-28 19:26 s-paulraj at ti.com
2011-04-28 19:38 ` Albert ARIBAUD
2011-04-29 20:39   ` Paulraj, Sandeep
2011-04-20 15:16 s-paulraj at ti.com
2011-04-20 18:43 ` Albert ARIBAUD
2011-04-19 14:02 s-paulraj at ti.com
2011-04-20  8:58 ` Albert ARIBAUD
2011-04-18 23:33 s-paulraj at ti.com
2011-04-19  5:41 ` Albert ARIBAUD
2011-04-18 23:18 s-paulraj at ti.com
2010-12-30 16:36 s-paulraj at ti.com
2011-01-05 20:40 ` Albert ARIBAUD
2010-12-28 23:39 s-paulraj at ti.com
2010-12-28 23:49 ` Albert ARIBAUD
2010-12-28 23:59   ` Paulraj, Sandeep
2010-12-29  0:14 ` Albert ARIBAUD
2010-12-14  2:45 s-paulraj at ti.com
2010-12-17  9:08 ` Wolfgang Denk
2010-12-11 15:54 s-paulraj at ti.com
2010-12-13 22:52 ` Wolfgang Denk
2010-11-30 16:13 s-paulraj at ti.com
2010-11-30 20:26 ` Wolfgang Denk
2010-11-30  3:28 s-paulraj at ti.com
2010-11-30 20:18 ` Wolfgang Denk
2010-11-29  1:04 s-paulraj at ti.com
2010-11-29 20:28 ` Paulraj, Sandeep
2010-11-19 21:31 s-paulraj at ti.com
2010-11-24 18:17 ` Wolfgang Denk
2010-11-04 20:35 s-paulraj at ti.com
2010-11-12 23:20 ` Wolfgang Denk
2010-10-14 21:31 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-10-17 18:15 ` Wolfgang Denk
2010-09-28 18:03 s-paulraj at ti.com
2010-09-28 20:34 ` Wolfgang Denk
2010-09-09  8:29 s-paulraj at ti.com
2010-09-09 17:55 ` Wolfgang Denk
2010-08-12 18:23 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-08-12 21:09 ` Wolfgang Denk
2010-08-06 16:25 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-08-10 20:21 ` Wolfgang Denk
2010-07-28 19:25 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-08-03 21:37 ` Wolfgang Denk
2010-08-03 22:03   ` Steve Sakoman
2010-08-03 22:21     ` Wolfgang Denk
2010-08-03 22:36       ` Steve Sakoman
2010-07-06  0:29 s-paulraj at ti.com
2010-07-14 19:12 ` Wolfgang Denk
2010-06-10 16:12 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-06-17 20:20 ` Wolfgang Denk
2010-06-17 20:23   ` Paulraj, Sandeep
2010-06-07 21:27 s-paulraj at ti.com
2010-06-08 16:49 ` Tom Rix
2010-06-01 14:03 s-paulraj at ti.com
2010-02-24  5:01 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-02-18  2:45 s-paulraj at ti.com
2010-02-23  3:09 ` Paulraj, Sandeep
2010-02-23 15:55   ` Tom
2010-02-23 16:07     ` Paulraj, Sandeep
2010-02-23 20:05       ` Tom
2010-02-23 20:53   ` Tom
2010-02-08 19:28 s-paulraj at ti.com
2010-02-12 14:33 ` Tom
2010-02-20 22:27 ` Tom
2010-02-08 17:01 s-paulraj at ti.com
2010-02-12 14:31 ` Tom
2010-01-25 14:18 s-paulraj at ti.com
2009-12-12 17:20 s-paulraj at ti.com
2009-12-12 18:08 ` Tom
2009-12-13 15:32 ` Tom
2009-11-21 23:27 s-paulraj at ti.com
2009-11-23 21:33 ` Tom
2009-11-23 22:08   ` Paulraj, Sandeep
2009-11-24 15:08     ` Tom
2009-11-24 15:21       ` Paulraj, Sandeep
2009-11-25 14:11 ` Tom
2009-09-29 15:50 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2009-09-30  1:32 ` Tom

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.