mbox

[U-Boot] Please pull u-boot-ti/master

Message ID CA+M6bX=4TqpkwqmPt672h1HTQn35TXe_70uwKtzs5w_B8y5bKg@mail.gmail.com
State Accepted
Headers show

Pull-request

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

Message

Tom Rini Jan. 13, 2012, 7:33 p.m. UTC
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!

Comments

Albert ARIBAUD Jan. 16, 2012, 7:39 a.m. UTC | #1
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,