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

Hi Tom,
apart of patches that I should put to -next and not in -master, there was something wrong in my tree. I had to rebase it (sorry for that..) and I moved all new features into -next. Just bug fixes remain, with the exception of:
Akshay Bhat (1): arm: imx: Add support for Advantech DMS-BA16 board
I applied this one month ago, I do not know why it was slipped in previous PR.
-master builds clean - I will check then in -next the breakage. Sorry for inconvenience.
The following changes since commit b615267633996a9410a88b54a55965d8b021f6f8:
ARM: tegra: Add support for TK1-SOM board from Colorado Engineering (2016-09-01 09:24:30 -0700)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to d4ee5043f36e7a418c3fb5be2e76eb5f6ee2cd9f:
warp7: Print secure/non-secure mode info (2016-09-06 18:22:48 +0200)
---------------------------------------------------------------- Akshay Bhat (1): arm: imx: Add support for Advantech DMS-BA16 board
Breno Lima (1): warp7: Modify fdt_file environment variable
Christopher Spinrath (1): ARM: board: cm_fx6: fix mtd partition fixup
Eric Nelson (1): mx6ul_14x14_evk: don't use array for SD2 card detect pad
Fabio Estevam (12): mx7dsabresd: Print secure/non-secure mode info warp: Fix RAM size runtime detection pico-imx6ul: Directly write to register LDOGCTL mx7dsabresd: Directly write to register LDOGCTL mx7dsabresd: Directly write to register LDOGCTL mx6: ddr: Allow changing REFSEL and REFR fields mx6ul_14x14_evk: Pass refsel and refr fields to avoid hang mx6ul_14x14_evk: Adjust SPL DDR3 settings mx6ul_14x14_ev: Enable the CCGR clocks earlier warp7: Add a secure mode target warp7: Use PARTUUID to specify the rootfs location warp7: Print secure/non-secure mode info
Soeren Moch (2): board: tbs2910: always enable usbkbd board: tbs2910: fix HDMI pre-console buffer
Stefan Agner (1): mtd: nand: mxs: fix cache alignment for cache lines >32
Tim Harvey (1): imx: ventana: enable splashscreen support
Vanessa Maegima (1): warp7: Add PMIC support
arch/arm/cpu/armv7/mx6/Kconfig | 5 + arch/arm/cpu/armv7/mx6/ddr.c | 6 +- arch/arm/include/asm/arch-mx6/mx6-ddr.h | 2 + board/advantech/dms-ba16/Kconfig | 31 +++++ board/advantech/dms-ba16/MAINTAINERS | 8 ++ board/advantech/dms-ba16/Makefile | 8 ++ board/advantech/dms-ba16/clocks.cfg | 25 ++++ board/advantech/dms-ba16/ddr-setup.cfg | 39 ++++++ board/advantech/dms-ba16/dms-ba16.c | 570 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ board/advantech/dms-ba16/dms-ba16_1g.cfg | 25 ++++ board/advantech/dms-ba16/dms-ba16_2g.cfg | 25 ++++ board/advantech/dms-ba16/micron-1g.cfg | 63 ++++++++++ board/advantech/dms-ba16/samsung-2g.cfg | 63 ++++++++++ board/bachmann/ot1200/ot1200_spl.c | 2 + board/barco/platinum/spl_picon.c | 2 + board/barco/platinum/spl_titanium.c | 2 + board/ccv/xpress/spl.c | 2 + board/compulab/cm_fx6/cm_fx6.c | 6 +- board/compulab/cm_fx6/spl.c | 4 + board/congatec/cgtqmx6eval/cgtqmx6eval.c | 2 + board/el/el6x/el6x.c | 2 + board/freescale/mx6sabresd/mx6sabresd.c | 2 + board/freescale/mx6slevk/mx6slevk.c | 2 + board/freescale/mx6sxsabresd/mx6sxsabresd.c | 2 + board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c | 50 ++++---- board/freescale/mx7dsabresd/mx7dsabresd.c | 13 +- board/gateworks/gw_ventana/gw_ventana_spl.c | 2 + board/kosagi/novena/novena_spl.c | 2 + board/phytec/pcm058/pcm058.c | 2 + board/solidrun/mx6cuboxi/mx6cuboxi.c | 2 + board/technexion/pico-imx6ul/pico-imx6ul.c | 4 +- board/udoo/udoo_spl.c | 2 + board/wandboard/spl.c | 6 + board/warp/imximage.cfg | 115 ++++++++++++++++++ board/warp7/warp7.c | 66 +++++++++- configs/dms-ba16-1g_defconfig | 34 ++++++ configs/dms-ba16_defconfig | 33 +++++ configs/warp7_secure_defconfig | 36 ++++++ configs/warp_defconfig | 2 +- drivers/mtd/nand/mxs_nand.c | 5 + include/configs/advantech_dms-ba16.h | 315 +++++++++++++++++++++++++++++++++++++++++++++++ include/configs/gw_ventana.h | 7 +- include/configs/tbs2910.h | 15 +-- include/configs/warp7.h | 23 +++- tools/logos/gateworks.bmp | Bin 0 -> 56202 bytes 45 files changed, 1576 insertions(+), 56 deletions(-) create mode 100644 board/advantech/dms-ba16/Kconfig create mode 100644 board/advantech/dms-ba16/MAINTAINERS create mode 100644 board/advantech/dms-ba16/Makefile create mode 100644 board/advantech/dms-ba16/clocks.cfg create mode 100644 board/advantech/dms-ba16/ddr-setup.cfg create mode 100644 board/advantech/dms-ba16/dms-ba16.c create mode 100644 board/advantech/dms-ba16/dms-ba16_1g.cfg create mode 100644 board/advantech/dms-ba16/dms-ba16_2g.cfg create mode 100644 board/advantech/dms-ba16/micron-1g.cfg create mode 100644 board/advantech/dms-ba16/samsung-2g.cfg create mode 100644 board/warp/imximage.cfg create mode 100644 configs/dms-ba16-1g_defconfig create mode 100644 configs/dms-ba16_defconfig create mode 100644 configs/warp7_secure_defconfig create mode 100644 include/configs/advantech_dms-ba16.h create mode 100644 tools/logos/gateworks.bmp
Regards, Stefano

On Tue, Sep 06, 2016 at 06:54:52PM +0200, Stefano Babic wrote:
Hi Tom,
apart of patches that I should put to -next and not in -master, there was something wrong in my tree. I had to rebase it (sorry for that..) and I moved all new features into -next. Just bug fixes remain, with the exception of:
Akshay Bhat (1): arm: imx: Add support for Advantech DMS-BA16 board
I applied this one month ago, I do not know why it was slipped in previous PR.
-master builds clean - I will check then in -next the breakage. Sorry for inconvenience.
The following changes since commit b615267633996a9410a88b54a55965d8b021f6f8:
ARM: tegra: Add support for TK1-SOM board from Colorado Engineering (2016-09-01 09:24:30 -0700)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to d4ee5043f36e7a418c3fb5be2e76eb5f6ee2cd9f:
warp7: Print secure/non-secure mode info (2016-09-06 18:22:48 +0200)
Applied to u-boot/master, thanks!

Hi Tom,
On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini trini@konsulko.com wrote:
Applied to u-boot/master, thanks!
Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary

On Fri, Sep 09, 2016 at 09:34:23AM -0300, Fabio Estevam wrote:
Hi Tom,
On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini trini@konsulko.com wrote:
Applied to u-boot/master, thanks!
Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary
Gah. Git annoys me every once in a while, fixed now. Thanks!
participants (3)
-
Fabio Estevam
-
Stefano Babic
-
Tom Rini