Commit 321f86e18d6aae9f7b7ba3ef1eb0cec769481874

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent adcc570599

ARM: zynq: disable CONFIG_SYS_MALLOC_F to fix MMC boot

Since commit 326a682358c1 (malloc_f: enable SYS_MALLOC_F by default
if DM is on), Zynq MMC boot hangs up after printing the following:

    U-Boot SPL 2015.04-rc5-00053-gadcc570 (Apr 08 2015 - 12:59:11)
    mmc boot
    reading system.dtb

Prior to commit 326a682358c1, Zynq boards enabled CONFIG_DM, but
not CONFIG_SYS_MALLOC_F.  That commit forcibly turned on
CONFIG_SYS_MALLOC_F.  I have not figured out the root cause, but
anyway it looks like CONFIG_SYS_MALLOC_F gave a bad impact on the
Zynq MMC boot.

We are planning to have the v2015.04 release in a few days.
I know this is a defensive fixup, but what I can do now is to add
   # CONFIG_SYS_MALLOC_F is not set
to every Zynq defconfig file to get back the original behavior.

Tested on:
  - Zedboard
  - ZC706 board

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Michal Simek <michal.simek@xilinx.com>
Cc: Simon Glass <sjg@chromium.org>

Showing 7 changed files with 7 additions and 0 deletions Side-by-side Diff

configs/zynq_microzed_defconfig
... ... @@ -3,6 +3,7 @@
3 3 CONFIG_ZYNQ=y
4 4 CONFIG_TARGET_ZYNQ_MICROZED=y
5 5 CONFIG_OF_CONTROL=y
  6 +# CONFIG_SYS_MALLOC_F is not set
6 7 CONFIG_FIT=y
7 8 CONFIG_FIT_VERBOSE=y
8 9 CONFIG_FIT_SIGNATURE=y
configs/zynq_zc70x_defconfig
... ... @@ -4,6 +4,7 @@
4 4 CONFIG_TARGET_ZYNQ_ZC70X=y
5 5 CONFIG_OF_CONTROL=y
6 6 CONFIG_DEFAULT_DEVICE_TREE="zynq-zc702"
  7 +# CONFIG_SYS_MALLOC_F is not set
7 8 CONFIG_FIT=y
8 9 CONFIG_FIT_VERBOSE=y
9 10 CONFIG_FIT_SIGNATURE=y
configs/zynq_zc770_xm010_defconfig
... ... @@ -5,6 +5,7 @@
5 5 CONFIG_TARGET_ZYNQ_ZC770=y
6 6 CONFIG_OF_CONTROL=y
7 7 CONFIG_DEFAULT_DEVICE_TREE="zynq-zc770-xm010"
  8 +# CONFIG_SYS_MALLOC_F is not set
8 9 CONFIG_FIT=y
9 10 CONFIG_FIT_VERBOSE=y
10 11 CONFIG_FIT_SIGNATURE=y
configs/zynq_zc770_xm012_defconfig
... ... @@ -5,6 +5,7 @@
5 5 CONFIG_TARGET_ZYNQ_ZC770=y
6 6 CONFIG_OF_CONTROL=y
7 7 CONFIG_DEFAULT_DEVICE_TREE="zynq-zc770-xm012"
  8 +# CONFIG_SYS_MALLOC_F is not set
8 9 CONFIG_FIT=y
9 10 CONFIG_FIT_VERBOSE=y
10 11 CONFIG_FIT_SIGNATURE=y
configs/zynq_zc770_xm013_defconfig
... ... @@ -5,6 +5,7 @@
5 5 CONFIG_TARGET_ZYNQ_ZC770=y
6 6 CONFIG_OF_CONTROL=y
7 7 CONFIG_DEFAULT_DEVICE_TREE="zynq-zc770-xm013"
  8 +# CONFIG_SYS_MALLOC_F is not set
8 9 CONFIG_FIT=y
9 10 CONFIG_FIT_VERBOSE=y
10 11 CONFIG_FIT_SIGNATURE=y
configs/zynq_zed_defconfig
... ... @@ -4,6 +4,7 @@
4 4 CONFIG_TARGET_ZYNQ_ZED=y
5 5 CONFIG_OF_CONTROL=y
6 6 CONFIG_DEFAULT_DEVICE_TREE="zynq-zed"
  7 +# CONFIG_SYS_MALLOC_F is not set
7 8 CONFIG_FIT=y
8 9 CONFIG_FIT_VERBOSE=y
9 10 CONFIG_FIT_SIGNATURE=y
configs/zynq_zybo_defconfig
... ... @@ -4,6 +4,7 @@
4 4 CONFIG_TARGET_ZYNQ_ZYBO=y
5 5 CONFIG_OF_CONTROL=y
6 6 CONFIG_DEFAULT_DEVICE_TREE="zynq-zybo"
  7 +# CONFIG_SYS_MALLOC_F is not set
7 8 CONFIG_FIT=y
8 9 CONFIG_FIT_VERBOSE=y
9 10 CONFIG_FIT_SIGNATURE=y