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

Tom Rini trini at ti.com
Fri Mar 22 21:18:39 CET 2013


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>


More information about the U-Boot mailing list