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

Hi Tom,
please pull from u-boot-imx, thanks !
The following changes since commit ace97d26176a3ebc9ec07738450de93eea35975c:
Merge branch 'zynq' of git://www.denx.de/git/u-boot-microblaze (2015-04-29 06:46:33 -0400)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to 6f63370510ebd7b6dfc83ef4cc6bfd448ecc5dc2:
imx: ventana: use stack relocation (2015-05-15 16:42:14 +0200)
---------------------------------------------------------------- Brecht Neyrinck (1): bugfix i.mx6 pwm: prevent overflow of period_c * duty_ns
Fabio Estevam (11): mx6cuboxi: Add HDMI output support mx6cuboxi: Add USB host support mx6cuboxi: Allow HDMI and USB keyboard to be stdout/stdin logos: Add Solidrun's logo mx6cuboxi: Fix Ethernet PHY detection problem mx6cuboxi: Pull down PAD_ENET_RXD0/RXD1 mx6cuboxi: Skip usb initialization when booting without HDMI hummingboard: Remove mx6solo specific support mx6cuboxi: Mention Cubox-i in the README warp: README: Fix typo mx6: Set shared override bit in PL310 AUX_CTRL register
Heiko Schocher (2): arm, imx6, i2c: add I2C4 for MX6DL i2c, mxc: rework i2c base address names for different SoCs
Nikolay Dimitrov (2): arm: mx6: Clamp MMDC and DDR3 clocks for timing calculations arm: mx6: ddr3: Remove dead code
Soeren Moch (4): tbs2910: support for usb otg host mode tbs2910: only enable vga output for stdout/stderr when hdmi detected tbs2910: use default CONFIG_SYS_PBSIZE tbs2910: add CONFIG_SUPPORT_EMMC_BOOT
Stefan Roese (2): arm: mx6: tqma6: Fix USB and add other filesystems arm: mx6: tqma6: Update to optionally configure an alternative SPI setup
Stefano Babic (2): Merge branch 'master' of git://git.denx.de/u-boot Merge branch 'master' of git://git.denx.de/u-boot
Tim Harvey (17): imx: ventana: fix boot to SD imx: ventana: set dtype env var to boot media imx: ventana: display SPL boot device imx: ventana: config: enable gpio command imx: ventana: config: enable driver model imx: ventana: register gpio's with gpio_request imx: ventana: enable DM_SERIAL imx: ventana: config: enable Thermal support imx: ventana: fix pcie reset for GW522x imx: ventana: default msata/pci mux to pci before PCI enumeration imx: ventana: split out common functions between SPL and uboot imx: ventana: move GSC boot watchdog disable function to gsc.c imx: ventana: detect pmic using i2c probe instead of board model imx: ventana: use common uart and i2c setup functions in SPL imx: ventana: add gpio setup to SPL imx: ventana: add GSC boot watchdog disable to SPL imx: ventana: use stack relocation
Ulises Cardenas (2): Fix mxc_hab documenation imx: dek_blob: Add explicit include for mapmem
arch/arm/Kconfig | 5 - arch/arm/cpu/armv7/mx6/clock.c | 33 +++-- arch/arm/cpu/armv7/mx6/ddr.c | 52 +++---- arch/arm/cpu/armv7/mx6/soc.c | 8 + arch/arm/imx-common/cmd_dek.c | 1 + arch/arm/imx-common/i2c-mxv7.c | 5 +- arch/arm/include/asm/arch-imx/imx-regs.h | 2 +- arch/arm/include/asm/arch-mx25/imx-regs.h | 6 +- arch/arm/include/asm/arch-mx27/imx-regs.h | 4 +- arch/arm/include/asm/arch-mx6/crm_regs.h | 2 + arch/arm/include/asm/arch-mx6/imx-regs.h | 1 + arch/arm/include/asm/arch-vf610/imx-regs.h | 2 +- arch/arm/include/asm/pl310.h | 2 + board/gateworks/gw_ventana/Makefile | 2 +- board/gateworks/gw_ventana/common.c | 827 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ board/gateworks/gw_ventana/common.h | 98 +++++++++++++ board/gateworks/gw_ventana/gsc.c | 27 ++++ board/gateworks/gw_ventana/gsc.h | 1 + board/gateworks/gw_ventana/gw_ventana.c | 911 ++++++------------------------------------------------------------------------------------------------------------ board/gateworks/gw_ventana/gw_ventana_spl.c | 86 +++++------ board/solidrun/hummingboard/Kconfig | 15 -- board/solidrun/hummingboard/MAINTAINERS | 6 - board/solidrun/hummingboard/Makefile | 9 -- board/solidrun/hummingboard/README | 40 ----- board/solidrun/hummingboard/hummingboard.c | 182 ----------------------- board/solidrun/hummingboard/solo.cfg | 25 ---- board/solidrun/mx6cuboxi/README | 10 +- board/solidrun/mx6cuboxi/mx6cuboxi.c | 158 +++++++++++++++++++- board/tbs/tbs2910/tbs2910.c | 10 ++ board/tqc/tqma6/tqma6.c | 2 +- board/warp/README | 4 +- configs/gwventana_defconfig | 2 + configs/hummingboard_solo_defconfig | 3 - doc/README.mxc_hab | 12 +- drivers/i2c/mxc_i2c.c | 40 ++--- drivers/pwm/pwm-imx-util.c | 2 +- include/configs/gw_ventana.h | 22 ++- include/configs/hummingboard.h | 224 ---------------------------- include/configs/mx6cuboxi.h | 43 +++++- include/configs/tbs2910.h | 21 ++- include/configs/tqma6.h | 7 +- tools/logos/solidrun.bmp | Bin 0 -> 5558 bytes 42 files changed, 1390 insertions(+), 1522 deletions(-) create mode 100644 board/gateworks/gw_ventana/common.c create mode 100644 board/gateworks/gw_ventana/common.h delete mode 100644 board/solidrun/hummingboard/Kconfig delete mode 100644 board/solidrun/hummingboard/MAINTAINERS delete mode 100644 board/solidrun/hummingboard/Makefile delete mode 100644 board/solidrun/hummingboard/README delete mode 100644 board/solidrun/hummingboard/hummingboard.c delete mode 100644 board/solidrun/hummingboard/solo.cfg delete mode 100644 configs/hummingboard_solo_defconfig delete mode 100644 include/configs/hummingboard.h create mode 100644 tools/logos/solidrun.bmp

On Fri, May 15, 2015 at 05:18:26PM +0200, Stefano Babic wrote:
Hi Tom,
please pull from u-boot-imx, thanks !
The following changes since commit ace97d26176a3ebc9ec07738450de93eea35975c:
Merge branch 'zynq' of git://www.denx.de/git/u-boot-microblaze (2015-04-29 06:46:33 -0400)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to 6f63370510ebd7b6dfc83ef4cc6bfd448ecc5dc2:
imx: ventana: use stack relocation (2015-05-15 16:42:14 +0200)
This was updated a little bit more off-list and I've applied to u-boot/master, thanks!
participants (2)
-
Stefano Babic
-
Tom Rini