[U-Boot] [PULL] Please pull u-boot-imx

Stefano Babic sbabic at denx.de
Wed Apr 13 12:23:37 CEST 2016


Hi Tom,

please pull from u-boot-imx, thanks !

The following changes since commit e4fb863f6dec0002069d57422ebe3ce3af69a273:

  dm: blk: Add tests for block devices (2016-03-17 21:27:39 -0600)

are available in the git repository at:

  git://www.denx.de/git/u-boot-imx.git master

for you to fetch changes up to 59c9e9b408014025cfa158a98aeafbcf33aa2d3d:

  mx6slevk: imximage.cfg: update to fix tINIT3 and tIH-CA violations
(2016-04-03 19:18:45 +0200)

----------------------------------------------------------------
Akshay Bhat (1):
      arm: imx: Add support for GE Bx50v3 boards

Fabio Estevam (10):
      mx7_common: Remove unexisting options
      mx7dsabresd: Define serial port locally
      mx7: Distinguish between dual and solo versions
      mx6sabre_common: Fix U-Boot corruption after 'saveenv'
      mx6sabresd: Use VESA 1024x768 timings
      mx7_common: Put early/late init configs into board file
      warp7: Add initial support
      mx6sabresd: Remove unneeded enable_lvds() function
      warp7: Pass the UART base definition
      mx7_common: Define CONFIG_SYS_MALLOC_LEN in the board file

Leonid Iziumtsev (1):
      mx27: 16-bit wide watchdog registers

Marek Vasut (3):
      arm: mx5: Enable NAND TrimFFS on M53EVK
      arm: imx6: Switch DDR3 calibration to wait_for_bit()
      arm: mxs: Update MX28EVK config

Peng Fan (5):
      imx: mx6ul: skip setting ahb rate
      imx: mx6ul configure the PMIC_STBY_REQ pin as open drain
      imx: print ARM clock for clocks command
      imx: mx6sx: move MX6SX to Kconfig entry
      imx: mx7d: move MX7D to Kconfig entry

Stefan Roese (2):
      arm: mx6: Add UART8 base address for i.MX6UL
      arm: mx6: Add CCV xPress board support

Stefano Babic (1):
      Merge branch 'next'

Tom Rini (2):
      mx6qarm2: imximage_mx6dl.cfg update to fix tINIT3 violation
      mx6slevk: imximage.cfg: update to fix tINIT3 and tIH-CA violations

Ye Li (1):
      imx: mx6: Fix incorrect clear mmdc_ch0 handshake mask

 arch/arm/cpu/arm926ejs/mx27/reset.c         |   8 +-
 arch/arm/cpu/armv7/mx6/Kconfig              |  23 ++
 arch/arm/cpu/armv7/mx6/clock.c              |   1 +
 arch/arm/cpu/armv7/mx6/ddr.c                |  44 +--
 arch/arm/cpu/armv7/mx6/soc.c                |  36 +-
 arch/arm/cpu/armv7/mx7/Kconfig              |   8 +
 arch/arm/cpu/armv7/mx7/soc.c                |  18 +
 arch/arm/imx-common/cpu.c                   |   2 +
 arch/arm/include/asm/arch-imx/cpu.h         |   1 +
 arch/arm/include/asm/arch-mx27/imx-regs.h   |   6 +-
 arch/arm/include/asm/arch-mx6/imx-regs.h    |   1 +
 board/ccv/xpress/Kconfig                    |  12 +
 board/ccv/xpress/MAINTAINERS                |   7 +
 board/ccv/xpress/Makefile                   |   8 +
 board/ccv/xpress/imximage.cfg               | 176 +++++++++
 board/ccv/xpress/spl.c                      | 116 ++++++
 board/ccv/xpress/xpress.c                   | 331 +++++++++++++++++
 board/freescale/mx6qarm2/imximage_mx6dl.cfg |   4 +-
 board/freescale/mx6sabresd/mx6sabresd.c     |  40 +--
 board/freescale/mx6slevk/imximage.cfg       |   4 +-
 board/ge/bx50v3/Kconfig                     |  18 +
 board/ge/bx50v3/MAINTAINERS                 |   8 +
 board/ge/bx50v3/Makefile                    |   8 +
 board/ge/bx50v3/bx50v3.c                    | 533
++++++++++++++++++++++++++++
 board/ge/bx50v3/bx50v3.cfg                  | 151 ++++++++
 board/warp7/Kconfig                         |   9 +
 board/warp7/MAINTAINERS                     |   6 +
 board/warp7/Makefile                        |   6 +
 board/warp7/imximage.cfg                    |  95 +++++
 board/warp7/warp7.c                         | 102 ++++++
 configs/ge_b450v3_defconfig                 |   8 +
 configs/ge_b650v3_defconfig                 |   8 +
 configs/ge_b850v3_defconfig                 |   8 +
 configs/mx28evk_defconfig                   |   1 +
 configs/mx6sxsabreauto_defconfig            |   2 +-
 configs/mx6sxsabresd_defconfig              |   2 +-
 configs/mx6sxsabresd_spl_defconfig          |   2 +-
 configs/mx7dsabresd_defconfig               |   2 +-
 configs/warp7_defconfig                     |  12 +
 configs/xpress_defconfig                    |   6 +
 configs/xpress_spl_defconfig                |   7 +
 include/configs/ge_bx50v3.h                 | 349 ++++++++++++++++++
 include/configs/m53evk.h                    |   1 +
 include/configs/mx28evk.h                   |   3 +
 include/configs/mx6sabre_common.h           |   2 +-
 include/configs/mx7_common.h                |  10 -
 include/configs/mx7dsabresd.h               |   8 +
 include/configs/warp7.h                     | 155 ++++++++
 include/configs/xpress.h                    | 166 +++++++++
 49 files changed, 2442 insertions(+), 92 deletions(-)
 create mode 100644 board/ccv/xpress/Kconfig
 create mode 100644 board/ccv/xpress/MAINTAINERS
 create mode 100644 board/ccv/xpress/Makefile
 create mode 100644 board/ccv/xpress/imximage.cfg
 create mode 100644 board/ccv/xpress/spl.c
 create mode 100644 board/ccv/xpress/xpress.c
 create mode 100644 board/ge/bx50v3/Kconfig
 create mode 100644 board/ge/bx50v3/MAINTAINERS
 create mode 100644 board/ge/bx50v3/Makefile
 create mode 100644 board/ge/bx50v3/bx50v3.c
 create mode 100644 board/ge/bx50v3/bx50v3.cfg
 create mode 100644 board/warp7/Kconfig
 create mode 100644 board/warp7/MAINTAINERS
 create mode 100644 board/warp7/Makefile
 create mode 100644 board/warp7/imximage.cfg
 create mode 100644 board/warp7/warp7.c
 create mode 100644 configs/ge_b450v3_defconfig
 create mode 100644 configs/ge_b650v3_defconfig
 create mode 100644 configs/ge_b850v3_defconfig
 create mode 100644 configs/warp7_defconfig
 create mode 100644 configs/xpress_defconfig
 create mode 100644 configs/xpress_spl_defconfig
 create mode 100644 include/configs/ge_bx50v3.h
 create mode 100644 include/configs/warp7.h
 create mode 100644 include/configs/xpress.h

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================


More information about the U-Boot mailing list