[U-Boot] [PULL] Please pull u-boot-imx
Stefano Babic
sbabic at denx.de
Tue Apr 28 17:01:11 CEST 2015
Hi Tom,
please pull from u-boot-imx, thanks !
The following changes since commit f33cdaa4c3da4a8fd35aa2f9a3172f31cc887b35:
Prepare v2015.04 (2015-04-13 10:53:03 -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 205d58699b157df75f1aa0b363ea9c21add21a0c:
mx6cuboxi: Load the correct 'fdtfile' variable (2015-04-27 13:13:58 +0200)
----------------------------------------------------------------
Eric Nelson (1):
nitrogen6x: allow gzipped bitmap display
Fabio Estevam (9):
mx6: Add initial SPL support for HummingBoard-i2eX
mx6sabresd: Fix SPL memory description
mx6sabresd: Remove uneeded ifdef
mx6cuboxi: Fix the defconfig name
mx6cuboxi: Prepare for multi SoC support
mx6cuboxi: Introduce multi-SoC support
mx6cuboxi: Differentiate Cubox-i and Hummingboard
mx6cuboxi: Use more standard namings for fdt variables
mx6cuboxi: Load the correct 'fdtfile' variable
Jörg Krause (1):
ARM: mxs: Get boot mode from OCRAM
Pushpal Sidhu (3):
imx: ventana: add DT fixup for GW522x to change PCIE_RST# GPIO
imx: ventana: Add new memory configuration
imx: ventana: Update missing memory/calib handling
Stefan Roese (1):
arm: mx6: tqma6: Extract baseboard configs into separate config file
Tim Harvey (34):
arm: mx6: ddr: add pd_fast_exit flag to system information
fdt: add new fdt_fixup_display function to configure display
imx: ventana: disable 4k tftp/nfs packets
imx: ventana: add i210 support
imx: ventana: assign default ethprime dynamically
imx: ventana: remove unused GPIO configuration
imx: ventana: add usb_pcisel hwconfig support
imx: ventana: enable precharge power-down fast-exit mode
imx: ventana: add support for 4Gb density mem devices with IMX6DL
imx: ventana: set LTC3676 PMIC to appropriate values per datasheet
imx: ventana: config: add USB Mass Storage (ums) support
imx: ventana: config: Support ramdisk
imx: ventana: config: enable edid support
imx: ventana: config: enable EXT4 filesystem read/write support
imx: ventana: fix various sparse warnings
imx: ventana: disable IMX6 watchdogs on GW51xx RevA and RevB
imx: ventana: Add support for GW551x
imx: ventana: add usb_pgood_delay 2sec default
imx: ventana: add wdis config for GW5520
imx: ventana: only pinmux FEC enet signals for boards using it
imx: ventana: update boot scripts to support ubifs boot vol
imx: ventana: remove GSC hwmon voltage rail min/max test
imx: ventana: add mem_mb dynamic env var
imx: ventana: gsc: add new hwmon rails
imx: ventana: added DT fixup for GW551x-A video input
imx: ventana: updated 16bit DDR calibration
imx: ventana: remove 128x16 calibration (share with 128x32)
imx: ventana: add DT fixup for GW54xx compatibility with older kernels
imx: ventana: add support for DLC-700JMGT4 and DLC-800FIGT3 LCD
displays
imx: ventana: added device-tree display configuration for LVDS
displays
imx: ventana: add 'gsc wd' command for enabling and disabling GSC
watchdog
imx: ventana: use hdmiinfmt env var to override HDMI capture format
imx: ventana: set HDMI video in to yuv422bt656 for GW551x-A
power: pfuze100: fix LDO_EN bit value
gaurav rana (1):
iMX: Fix compilation error when enabling SECURE_BOOT
arch/arm/Kconfig | 6 ++
arch/arm/cpu/arm926ejs/mxs/spl_boot.c | 29 ++--------
arch/arm/cpu/armv7/mx6/ddr.c | 7 ++-
arch/arm/include/asm/arch-mx6/mx6-ddr.h | 1 +
board/freescale/common/Makefile | 3 +-
board/freescale/mx6sabresd/mx6sabresd.c | 13 ++---
board/gateworks/gw_ventana/eeprom.c | 10 +++-
board/gateworks/gw_ventana/gsc.c | 130
+++++++++++++++++++++++++++++------------
board/gateworks/gw_ventana/gsc.h | 10 +++-
board/gateworks/gw_ventana/gw_ventana.c | 367
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------
board/gateworks/gw_ventana/gw_ventana_spl.c | 129
++++++++++++++++++++++++++++++++++++-----
board/gateworks/gw_ventana/ventana_eeprom.h | 1 +
board/solidrun/mx6cuboxi/Kconfig | 15 +++++
board/solidrun/mx6cuboxi/MAINTAINERS | 6 ++
board/solidrun/mx6cuboxi/Makefile | 9 +++
board/solidrun/mx6cuboxi/README | 21 +++++++
board/solidrun/mx6cuboxi/mx6cuboxi.c | 510
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
common/fdt_support.c | 29 ++++++++++
configs/mx6cuboxi_defconfig | 6 ++
include/configs/gw_ventana.h | 68 ++++++++++++++--------
include/configs/mx6cuboxi.h | 218
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
include/configs/nitrogen6x.h | 3 +
include/configs/tqma6.h | 57 ++++++------------
include/configs/tqma6_mba6.h | 30 ++++++++++
include/fdt_support.h | 13 +++++
include/power/pfuze100_pmic.h | 2 +-
26 files changed, 1480 insertions(+), 213 deletions(-)
create mode 100644 board/solidrun/mx6cuboxi/Kconfig
create mode 100644 board/solidrun/mx6cuboxi/MAINTAINERS
create mode 100644 board/solidrun/mx6cuboxi/Makefile
create mode 100644 board/solidrun/mx6cuboxi/README
create mode 100644 board/solidrun/mx6cuboxi/mx6cuboxi.c
create mode 100644 configs/mx6cuboxi_defconfig
create mode 100644 include/configs/mx6cuboxi.h
create mode 100644 include/configs/tqma6_mba6.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