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

Hi Tom,
please pull from u-boot-imx, thanks !
The following changes since commit e94793c844a40606252f2e3f6428063e057b3fd2:
spl: add USB Gadget config option (2016-11-28 19:49:49 -0500)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to 4db4d42ee290a8cad00b358b2e7ef6a00483893b:
imx6: clock: Enable External Memory Interface [EIM] clock (eim_slow_clock) (2016-11-30 09:57:19 +0100)
---------------------------------------------------------------- Angus Ainslie (1): imx7: SPI: add suport for SPI flash in mikroBUS slot
Breno Lima (1): mx6sx: Add initial support for UDOO Neo Board
Christoph Fritz (2): pwm: imx: increase support up to PWM8 for i.MX6SX mx6sx: Add initial support for Samtec VIN|ING 2000 board
Eric Nelson (6): tools: imximage: display DCD block offset, length imx: mx6: ddr: add register MPZQLP2CTL for LPDDR2 mx6: ddr: allow 32 cycles for DQS gating calibration mx6: ddr: pass mx6_ddr_sysinfo to calibration routines mx6: ddr: add routine to return DDR calibration data ARM: mx6: ddr: use Kconfig for inclusion of DDR calibration routines
Heiko Schocher (2): mx35: add DT support to flea3 board mx35: adjust default environment for flea3 board
Ken Lin (1): board: ge: bx50v3: add the PMIC configuration support
Lukasz Majewski (1): imx6: clock: Enable External Memory Interface [EIM] clock (eim_slow_clock)
Marcin Niestroj (1): ARM: mx6: add MMC2 boot device detection support in SPL
Max Krummenacher (2): spl: mmc: fix switch statement imx: make ipu's di configurable
Peng Fan (1): imx: mx6ull: update the REFTOP_VBGADJ setting
Sanchayan Maity (1): colibri_vf: Read kernel and device tree from static UBI volumes
Sebastien Bourdelin (1): ARM: ts4600: add basic board support
Soeren Moch (1): tbs2910: Make Ethernet functional again
Stefan Agner (1): arm: mx6: specify SPL padding
Stefano Babic (3): mx35: factorize SDRAM setup in flea3 mx35: add GPIO setup on flea3 board Merge branch 'master' of git://git.denx.de/u-boot
Sven Ebenfeld (1): arm: imx: wandboard: fix compile error if CONFIG_VIDEO is deactivated
Ye.Li (1): imx: mx6sx: Disable ENET clock before switching clock parent
arch/arm/Kconfig | 6 + arch/arm/cpu/armv7/mx6/Kconfig | 20 ++ arch/arm/cpu/armv7/mx6/clock.c | 19 ++ arch/arm/cpu/armv7/mx6/ddr.c | 131 +++++--- arch/arm/cpu/armv7/mx6/soc.c | 31 +- arch/arm/imx-common/spl.c | 6 +- arch/arm/imx-common/video.c | 2 +- arch/arm/include/asm/arch-mx6/clock.h | 1 + arch/arm/include/asm/arch-mx6/crm_regs.h | 1 + arch/arm/include/asm/arch-mx6/mx6-ddr.h | 10 +- arch/arm/include/asm/imx-common/video.h | 1 + board/CarMediaLab/flea3/flea3.c | 124 ++----- board/freescale/mx7dsabresd/mx7dsabresd.c | 24 ++ board/ge/bx50v3/bx50v3.c | 54 ++++ board/kosagi/novena/novena_spl.c | 4 +- board/samtec/vining_2000/Kconfig | 12 + board/samtec/vining_2000/MAINTAINERS | 6 + board/samtec/vining_2000/Makefile | 6 + board/samtec/vining_2000/imximage.cfg | 132 ++++++++ board/samtec/vining_2000/vining_2000.c | 517 ++++++++++++++++++++++++++++++ board/tbs/tbs2910/tbs2910.c | 33 ++ board/technologic/ts4600/Kconfig | 15 + board/technologic/ts4600/MAINTAINERS | 6 + board/technologic/ts4600/Makefile | 11 + board/technologic/ts4600/iomux.c | 149 +++++++++ board/technologic/ts4600/ts4600.c | 89 +++++ board/udoo/neo/Kconfig | 12 + board/udoo/neo/MAINTAINERS | 7 + board/udoo/neo/Makefile | 6 + board/udoo/neo/neo.c | 441 +++++++++++++++++++++++++ board/wandboard/wandboard.c | 2 + common/spl/spl_mmc.c | 1 - configs/flea3_defconfig | 4 + configs/mx7dsabresd_secure_defconfig | 3 + configs/novena_defconfig | 1 + configs/ts4600_defconfig | 18 ++ configs/udoo_neo_defconfig | 30 ++ configs/vining_2000_defconfig | 31 ++ drivers/pwm/pwm-imx-util.c | 12 +- include/configs/colibri_vf.h | 6 +- include/configs/flea3.h | 9 +- include/configs/imx6_spl.h | 6 + include/configs/mx7dsabresd.h | 3 + include/configs/ts4600.h | 70 ++++ include/configs/udoo_neo.h | 94 ++++++ include/configs/vining_2000.h | 123 +++++++ include/configs/wandboard.h | 2 + tools/imximage.c | 10 +- 48 files changed, 2144 insertions(+), 157 deletions(-) create mode 100644 board/samtec/vining_2000/Kconfig create mode 100644 board/samtec/vining_2000/MAINTAINERS create mode 100644 board/samtec/vining_2000/Makefile create mode 100644 board/samtec/vining_2000/imximage.cfg create mode 100644 board/samtec/vining_2000/vining_2000.c create mode 100644 board/technologic/ts4600/Kconfig create mode 100644 board/technologic/ts4600/MAINTAINERS create mode 100644 board/technologic/ts4600/Makefile create mode 100644 board/technologic/ts4600/iomux.c create mode 100644 board/technologic/ts4600/ts4600.c create mode 100644 board/udoo/neo/Kconfig create mode 100644 board/udoo/neo/MAINTAINERS create mode 100644 board/udoo/neo/Makefile create mode 100644 board/udoo/neo/neo.c create mode 100644 configs/ts4600_defconfig create mode 100644 configs/udoo_neo_defconfig create mode 100644 configs/vining_2000_defconfig create mode 100644 include/configs/ts4600.h create mode 100644 include/configs/udoo_neo.h create mode 100644 include/configs/vining_2000.h

On Wed, Nov 30, 2016 at 11:57:06AM +0100, Stefano Babic wrote:
Hi Tom,
please pull from u-boot-imx, thanks !
The following changes since commit e94793c844a40606252f2e3f6428063e057b3fd2:
spl: add USB Gadget config option (2016-11-28 19:49:49 -0500)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to 4db4d42ee290a8cad00b358b2e7ef6a00483893b:
imx6: clock: Enable External Memory Interface [EIM] clock (eim_slow_clock) (2016-11-30 09:57:19 +0100)
Applied to u-boot/master, thanks!
participants (2)
-
Stefano Babic
-
Tom Rini