Re: [U-Boot] please pull u-boot-samsung master

2014-03-13 Thread Albert ARIBAUD
Hi Minkyu, On Thu, 13 Mar 2014 15:10:46 +0900, Minkyu Kang wrote: > Dear Albert, > > The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb: > > Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400) > > are available in the git repository at: > > http://git.denx.de/u-boot

[U-Boot] [PATCH v2] arm64 patch: gicv3 support

2014-03-13 Thread fenghua
From: David Feng This patch add gicv3 support to uboot armv8 platform. Changes for v2: - rename arm/cpu/armv8/gic.S with arm/lib/gic_64.S - move smp_kick_all_cpus() from gic.S to start.S, it would be implementation dependent. - Each core initialize it's own ReDistributor instead of mas

[U-Boot] Pull request: u-boot-sh/maste

2014-03-13 Thread Nobuhiro Iwamatsu
Dear Tom Rini. Please pull u-boot-sh master branch. The following changes since commit 2e50f6dccb3eeb1a20993c9da73fe355da35cf04: kbuild: delete *.pyc files by "make distclean" (2014-03-12 17:05:00 -0400) are available in the git repository at: git://git.denx.de/u-boot-sh.git master for yo

Re: [U-Boot] [PATCH] sh: fix PFC registers definition for SH772{2, 3, 4}

2014-03-13 Thread Nobuhiro Iwamatsu
Appied, thanks! Best regards, Nobuhiro 2014-03-10 22:05 GMT+09:00 Baruch Siach : > Add missing port X data register, and fix the offset of ports Y and Z. > > Signed-off-by: Baruch Siach > --- > I only have access to the SH7724 manual. But since the Linux kernel driver > includes PXDR definitio

Re: [U-Boot] [PATCH] sh: ecovec: correct romImage address in comment

2014-03-13 Thread Nobuhiro Iwamatsu
Appied, thanks! Best regards, Nobuhiro 2014-03-10 22:09 GMT+09:00 Baruch Siach : > romImage is set by CONFIG_ECOVEC_ROMIMAGE_ADDR to 0xA004. > > Signed-off-by: Baruch Siach > --- > board/renesas/ecovec/lowlevel_init.S | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [U-Boot] [PATCH] kbuild: Rename UIMAGE to MKIMAGE

2014-03-13 Thread Masahiro Yamada
Hello Marek, > U-Boot uses the 'mkimage' tool to produce various image types, > not only uImage image type. Rename the invocation name from > UIMAGE to MKIMAGE. > > The following command was used to do the replacement: > git grep 'quiet_cmd_mkimage.* = UIMAGE' | cut -d : -f 1 | \ > xargs -i se

[U-Boot] [PATCH 1/3 v2] net/phy: enable get_phy_id redefinable

2014-03-13 Thread Shengzhou Liu
As some PHYs have non-standard PHY ID registers, PHY Id can't be read correctly by current get_phy_id function, so we enable get_phy_id redefinable to permit specific PHY driver having own specific get_phy_id function. Signed-off-by: Shengzhou Liu --- v2: use __weak drivers/net/phy/phy.c | 3 ++

[U-Boot] [PATCH 3/3 v2] net/phy: Add support for CS4315/CS4340 PHY

2014-03-13 Thread Shengzhou Liu
Add support for Cortina CS4315/CS4340 10G PHY. - This driver loads CS43xx firmware to initialize Cortina PHY. - To define macro CONFIG_PHY_CORTINA will enable this driver. - Cortina PHY has non-standard offset of PHY ID registers, so define own get_phy_id(). Signed-off-by: Shengzhou Liu --- v2:

[U-Boot] [PATCH 2/3 v2] net/phy: update get_phy_device_by_mask to probe more 10G PHY

2014-03-13 Thread Shengzhou Liu
In function get_phy_device_by_mask(), when trying Clause 45, we should extend the value of devad(used in create_phy_by_mask) to zero to cover more PHYs (e.g. devad must be 0 for CS4315 PHY). Signed-off-by: Shengzhou Liu --- v2: no change drivers/net/phy/phy.c | 4 ++-- 1 file changed, 2 inserti

[U-Boot] [PATCH] kbuild: Rename UIMAGE to MKIMAGE

2014-03-13 Thread Marek Vasut
U-Boot uses the 'mkimage' tool to produce various image types, not only uImage image type. Rename the invocation name from UIMAGE to MKIMAGE. The following command was used to do the replacement: git grep 'quiet_cmd_mkimage.* = UIMAGE' | cut -d : -f 1 | \ xargs -i sed -i "s@\(quiet_cmd_mkimage\)\

[U-Boot] [PATCH] t1040rdb/qe: add QE support for T1040RDB

2014-03-13 Thread Zhao Qiang
add CONFIG_QE, CONFIG_U_QE and CONFIG_SYS_QE_FW_ADDR into "include/configs/T1040RDB.h" Signed-off-by: Zhao Qiang --- include/configs/T1040RDB.h | 4 1 file changed, 4 insertions(+) diff --git a/include/configs/T1040RDB.h b/include/configs/T1040RDB.h index 7420db9..f036192 100644 --- a/incl

[U-Boot] [PATCH v6 1/2] QE/FMAN: modify CONFIG_SYS_QE_FMAN_FW_ADDR to CONFIG_SYS_FMAN_FW_ADDR and CONFIG_SYS_QE_FW_ADDR

2014-03-13 Thread Zhao Qiang
CONFIG_SYS_QE_FMAN_FW_ADDR is used to both Fman and QE for microcode address. Now using CONFIG_SYS_FMAN_FW_ADDR for Fman microcode address, and CONFIG_SYS_QE_FW_ADDR for QE microcode address. Signed-off-by: Zhao Qiang --- Changes for v2: - no Changes for v3: - no Changes for v4:

[U-Boot] [PATCH v6 2/2] Powerpc/QE: Add QE support for T1040

2014-03-13 Thread Zhao Qiang
The u-qe of T1040 has addresses different from qe, modify those addresses value for both u-qe and qe. Add function qe_board_setup to mux the bus to tdm or uart according to hwconfig. Signed-off-by: Zhao Qiang --- Changes for v2: - modify CONFIG_SYS_QE_FMAN_FW_ADDR to CONFIG_SYS_FMAN_FW_A

Re: [U-Boot] [PATCH V2 3/3] cmd:gpt: randomly generate each partition uuid if undefined

2014-03-13 Thread Przemyslaw Marczak
On 03/13/2014 08:49 PM, Stephen Warren wrote: On 03/13/2014 11:28 AM, Przemyslaw Marczak wrote: On 03/10/2014 06:44 PM, Stephen Warren wrote: On 03/05/2014 09:45 AM, Przemyslaw Marczak wrote: Changes: - randomly generate each partition uuid if undefined - print info about generated uuid - save

[U-Boot] [PATCH] sparc: consolidate CONFIG_{LEON, LEON2, LEON3} definition

2014-03-13 Thread Masahiro Yamada
CONFIG_LEON is already defined in arch/sparc/cpu/{leon2,leon3}/config.mk. Remove the redundant definition in board header files. All leon3 boards define CONFIG_LEON3 in board header files. Move the definition to arch/sparc/cpu/leon3/config.mk. CONFIG_LEON2 can be move to arch/sparc/cpu/leon2/conf

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Stephen Warren
On 03/13/2014 01:48 PM, Wolfgang Denk wrote: > Dear Tom, > > In message <20140313191814.GB16360@bill-the-cat> you wrote: >> +struct uuid { + unsigned int time_low; + unsigned short time_mid; + unsigned short time_hi_and_version; + unsigned char clock_seq_hi_and_reserve

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Przemyslaw Marczak
Hello, On 03/13/2014 08:18 PM, Tom Rini wrote: On Thu, Mar 13, 2014 at 07:41:24PM +0100, Wolfgang Denk wrote: Dear Przemyslaw Marczak, In message you wrote: This patch adds support to generate UUID (Universally Unique Identifier) in version 4 based on RFC4122, which is randomly. ... +str

Re: [U-Boot] [PATCH V2 3/3] cmd:gpt: randomly generate each partition uuid if undefined

2014-03-13 Thread Stephen Warren
On 03/13/2014 11:28 AM, Przemyslaw Marczak wrote: > On 03/10/2014 06:44 PM, Stephen Warren wrote: >> On 03/05/2014 09:45 AM, Przemyslaw Marczak wrote: >>> Changes: >>> - randomly generate each partition uuid if undefined >>> - print info about generated uuid >>> - save environment on gpt write succ

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Wolfgang Denk
Dear Tom, In message <20140313191814.GB16360@bill-the-cat> you wrote: > > > > +struct uuid { > > > + unsigned int time_low; > > > + unsigned short time_mid; > > > + unsigned short time_hi_and_version; > > > + unsigned char clock_seq_hi_and_reserved; > > > + unsigned char clock_seq_low; > > > + un

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Tom Rini
On Thu, Mar 13, 2014 at 07:41:24PM +0100, Wolfgang Denk wrote: > Dear Przemyslaw Marczak, > > In message > > you wrote: > > This patch adds support to generate UUID (Universally Unique Identifier) > > in version 4 based on RFC4122, which is randomly. > ... > > +struct uuid { > > + unsigned in

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Wolfgang Denk
Dear Przemyslaw Marczak, In message <5321f4aa.4000...@samsung.com> you wrote: > > > Is that structure definition endianness-safe? > > UUID format is big-endian. OK. Then you must make sure to store the data such that they result in a big endian data format. > Actually for version 4 it doesn't

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Wolfgang Denk
Dear Przemyslaw Marczak, In message you wrote: > This patch adds support to generate UUID (Universally Unique Identifier) > in version 4 based on RFC4122, which is randomly. ... > +struct uuid { > + unsigned int time_low; > + unsigned short time_mid; > + unsigned short time_hi_and_v

Re: [U-Boot] [PATCH V2 2/3] lib: uuid: add functions to generate UUID version 4

2014-03-13 Thread Przemyslaw Marczak
Hello again, On 03/10/2014 06:37 PM, Stephen Warren wrote: On 03/05/2014 09:45 AM, Przemyslaw Marczak wrote: This patch adds support to generate UUID (Universally Unique Identifier) in version 4 based on RFC4122, which is randomly. Source: https://www.ietf.org/rfc/rfc4122.txt Changes: - add n

[U-Boot] [PATCH 08/11] ARM: tegra: Tegra20 pinmux cleanup

2014-03-13 Thread Stephen Warren
From: Stephen Warren This renames all the Tegra20 pinmux pins and functions so they have a prefix which matches the type name. The entries in tegra20_pingroups[] are all updated to remove the columns which are no longer used. All affected code is updated to match. Signed-off-by: Stephen Warren

[U-Boot] [PATCH 07/11] ARM: tegra: pinmux naming consistency fixes

2014-03-13 Thread Stephen Warren
From: Stephen Warren Clean up the naming of pinmux-related objects: * Refer to drive groups rather than pad groups to match the Linux kernel. * Ensure all pinmux API types are prefixed with pmux_, values (defines) are prefixed with PMUX_, and functions prefixed with pinmux_. * Modify a few type

[U-Boot] [PATCH 04/11] ARM: tegra: prototype pinmux_init() in board.h

2014-03-13 Thread Stephen Warren
From: Stephen Warren pinmux_init() is a board-level function, not a pinmux driver function. Move the prototype to a board header rather than the driver header. Signed-off-by: Stephen Warren --- arch/arm/include/asm/arch-tegra/board.h | 1 + arch/arm/include/asm/arch-tegra114/pinmux.h | 3 -

[U-Boot] [PATCH 06/11] ARM: tegra: reduce public pinmux API

2014-03-13 Thread Stephen Warren
From: Stephen Warren Remove a few unused functions from the pinmux header. They aren't currently used, and removing them prevents any new usage from appearing. This will ease moving to just pinmux_config_table() and padgrp_config_table() in the future. Signed-off-by: Stephen Warren --- arch/ar

[U-Boot] [PATCH 02/11] ARM: tegra: pinctrl: remove vddio

2014-03-13 Thread Stephen Warren
From: Stephen Warren This field isn't used anywhere, so remove it. Note that PIN() macros are left unchanged for now, to avoid many diffs to them; later commits will completely rewrite them just one time. Signed-off-by: Stephen Warren --- arch/arm/cpu/tegra114-common/pinmux.c | 2 -- ar

[U-Boot] [PATCH 00/11] ARM: tegra: pinmux driver cleanup

2014-03-13 Thread Stephen Warren
From: Stephen Warren This series: a) Removes some unused cruft from the Tegra pinmux drivers. b) Creates a single implementation of the Tegra pinmux API thus removing a lot of duplicate code. c) Auto-generates the Tegra30/114/124 pinmux data from the same data source used to auto-generate t

[U-Boot] [PATCH 01/11] ARM: tegra: pinctrl: remove func_safe

2014-03-13 Thread Stephen Warren
From: Stephen Warren This field isn't used anywhere, so remove it. Note that PIN() macros are left unchanged for now, to avoid many diffs to them; later commits will completely rewrite them just one time. Signed-off-by: Stephen Warren --- arch/arm/cpu/tegra114-common/pinmux.c | 6 --

[U-Boot] [PATCH 03/11] ARM: tegra: pinctrl: make pmux_func values consistent on Tegra20

2014-03-13 Thread Stephen Warren
From: Stephen Warren For consistency with other SoCs, modify Tegra20's enum pmux_func to: * Remove PMUX_FUNC values that aren't real * Use the same PMUX_FUNC_RSVD[1-4] values, and ensure (RSVD1 & 3)==0; this will be assumed by pinmux_set_func() in a future patch. Unfortunately, PMUX_FUNC_RSVD

Re: [U-Boot] [PATCH] arm: Handle .gnu.hash section in ldscripts

2014-03-13 Thread Albert ARIBAUD
Hi Lukasz, On Thu, 13 Mar 2014 16:43:09 +0100, Lukasz Majewski wrote: > I can report the same issue with OBS build of u-boot. > > When u-boot is build with qemu emulated environment with gcc-4.8.2 > (native armv7l toolchain) in the OBS it needs patch prepared by Andreas. Hmm, ok, so maybe I ca

Re: [U-Boot] [PATCH V2 3/3] cmd:gpt: randomly generate each partition uuid if undefined

2014-03-13 Thread Przemyslaw Marczak
Hello, Sorry for silent, but I've had some other work. I agree with yours previous comments and those will apply to v3 but I don't agree with few comments to this patch. On 03/10/2014 06:44 PM, Stephen Warren wrote: On 03/05/2014 09:45 AM, Przemyslaw Marczak wrote: Changes: - randomly generat

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

2014-03-13 Thread Albert ARIBAUD
Hi Stefano, On Wed, 12 Mar 2014 11:44:25 +0100, Stefano Babic wrote: > Hi Albert, > > please pull from u-boot-imx, thanks ! > > The following changes since commit cc07294bc704694ae33db75b25ac557e5917a83f: > > arm: am335x: DXR2: Reset SMSC LAN9303 switch via GPIO upon bootup > (2014-03-04 09

Re: [U-Boot] Please pull u-boot-ti/master

2014-03-13 Thread Albert ARIBAUD
Hi Tom, On Wed, 12 Mar 2014 16:23:11 -0400, Tom Rini wrote: > On Wed, Mar 12, 2014 at 04:05:05PM -0400, Tom Rini wrote: > > > Hey, > > > > The following changes since commit 8ee950dd273aef6a074d41bf2ee4ef11d6f848fb: > > > > Prepare v2014.04-rc2 (2014-03-10 17:21:06 -0400) > > > > are avail

Re: [U-Boot] [PATCH] arm: Handle .gnu.hash section in ldscripts

2014-03-13 Thread Lukasz Majewski
Hi Albert, Andreas, > Hi Andreas, > > On Sun, 09 Mar 2014 21:52:44 +0100, Andreas Färber > wrote: > > > Hi, > > > > Am 09.03.2014 21:34, schrieb Albert ARIBAUD: > > > On Sun, 09 Mar 2014 21:22:34 +0100, Andreas Färber > > > wrote: > > >> Am 09.03.2014 21:05, schrieb Albert ARIBAUD: > > >>> On

Re: [U-Boot] [PATCH] powerpc/t208x: enable command MEMTEST DDR_INTERACTIVE EEPROM

2014-03-13 Thread York Sun
On 03/13/2014 12:10 AM, Wolfgang Denk wrote: > Dear York Sun, > > In message <88c8c779-b636-4abf-9751-33e471307...@freescale.com> you wrote: >> >> On Mar 12, 2014, at 8:17 PM, Shengzhou Liu wrote: >> >>> Enable CONFIG_CMD_MEMTEST, CONFIG_FSL_DDR_INTERACTIVE, CONFIG_CMD_EEPROM >> >> I can see the d

[U-Boot] [RFC PATCH 4/6] fpga: xilinx: Avoid CamelCase for in Xilinx_desc

2014-03-13 Thread Michal Simek
No functional changes. Signed-off-by: Michal Simek --- board/armadeus/apf27/fpga.c | 2 +- board/astro/mcf5373l/fpga.c | 2 +- board/balloon3/balloon3.c| 2 +- board/esd/pmc440/fpga.c | 2 +- board/gen860t/fpga.c | 2 +- board/matr

[U-Boot] [RFC PATCH 5/6] fpga: xilinx: Fix the rest of CamelCases

2014-03-13 Thread Michal Simek
No functional changes. Signed-off-by: Michal Simek --- include/spartan2.h | 40 include/spartan3.h | 44 ++-- include/virtex2.h | 34 +- include/xilinx.h | 42

[U-Boot] [RFC PATCH 6/6] fpga: xilinx: Simplify load/dump/info function handling

2014-03-13 Thread Michal Simek
Connect FPGA version with appropriate operations to remove huge switch-cases for every FPGA family. Tested on Zynq. Spartan2/Spartan3/Virtex2 just compile test. Signed-off-by: Michal Simek --- drivers/fpga/spartan2.c | 12 +++- drivers/fpga/spartan3.c | 12 +++- drivers/fpga/virtex2.c | 12

[U-Boot] [RFC PATCH 3/6] fpga: virtex2: Avoid CamelCase

2014-03-13 Thread Michal Simek
No functional changes. Signed-off-by: Michal Simek --- board/gen860t/fpga.c | 4 ++-- drivers/fpga/virtex2.c | 34 +- drivers/fpga/xilinx.c | 14 +++--- include/virtex2.h | 34 +- include/xilinx.h | 2 +- 5

[U-Boot] [RFC PATCH 2/6] fpga: spartan3: Avoid CamelCase

2014-03-13 Thread Michal Simek
No functional changes. Signed-off-by: Michal Simek --- board/armadeus/apf27/fpga.c | 4 ++-- board/astro/mcf5373l/fpga.c | 4 ++-- board/balloon3/balloon3.c| 2 +- board/esd/pmc440/fpga.c | 4 ++-- board/matrix_vision/mvsmr/fpga.c | 2 +- boar

[U-Boot] [RFC PATCH 1/6] fpga: spartan2: Avoid CamelCase

2014-03-13 Thread Michal Simek
No functional changes. Signed-off-by: Michal Simek --- board/esd/pmc440/fpga.c | 2 +- board/matrix_vision/mvsmr/fpga.c | 2 +- drivers/fpga/spartan2.c | 40 drivers/fpga/xilinx.c| 14 +++--- include/spartan2.h

Re: [U-Boot] [PATCH 01/12] kbuild, mxs: use short logs for MXS images

2014-03-13 Thread Tom Rini
On Thu, Mar 13, 2014 at 05:01:59AM +0100, Marek Vasut wrote: > Hello Masahiro-san, > [...] > > > Yes, I see. We shall eventually rename it to mkimage throughout the code. > > > > > > How shall we proceed? I see we have three options: > > > - Post V2 of this patch > > > - Fix the rest of the files

Re: [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function

2014-03-13 Thread Marek Vasut
On Thursday, March 13, 2014 at 06:31:03 AM, Heiko Schocher wrote: > Hello Marek, > > Am 12.03.2014 12:43, schrieb Marek Vasut: > > On Wednesday, March 12, 2014 at 11:01:19 AM, Heiko Schocher wrote: > >> move the flushing code into an extra function dfu_flush(), > >> so it can be used from other co

Re: [U-Boot] ref: virt-v7.c switching to non_secure mode

2014-03-13 Thread Andre Przywara
Hi, We are able to figure out the issue. PERIPHBASE returned on ARNDALE board was 0x1050 and adding GIC offset was creating an incorrect address. please see: https://github.com/apritzel/u-boot-hypmode/commit/5d9c4209907c6d67dadd033887a30c2f10efeb4c Setting CONFIG_ARM_GIC_BASE_ADDRESS as

Re: [U-Boot] post_memory_tests

2014-03-13 Thread Wolfgang Denk
Dear chi l, In message you wrote: > > Thank you for your answer. Yes. the test runs from the NOR flash (post_run > function calls the test in arch/arm/lib/board.c before the relocation of U- > Boot in the RAM). That is why I'm kind of confuse about why the tests works > for 4K regions and not fo

Re: [U-Boot] [PATCH] arm: omap: cm_t35: Fix: Re-add GPMC_NAND_ECC_LP_x8_LAYOUT

2014-03-13 Thread Stefan Roese
Hi Pekon, On 13.03.2014 12:49, Gupta, Pekon wrote: From: Stefan Roese [mailto:s...@denx.de] Patch a7e36fc9 (mtd: nand: omap: remove unused #defines from common omap_gpmc.h) removed some MTD related defines. Including GPMC_NAND_ECC_LP_x8_LAYOUT. But this define is also needed for the memory cont

Re: [U-Boot] [PATCH] arm: omap: cm_t35: Fix: Re-add GPMC_NAND_ECC_LP_x8_LAYOUT

2014-03-13 Thread Gupta, Pekon
>From: Stefan Roese [mailto:s...@denx.de] > >Patch a7e36fc9 (mtd: nand: omap: remove unused #defines from common >omap_gpmc.h) removed some MTD related defines. Including >GPMC_NAND_ECC_LP_x8_LAYOUT. But this define is also needed for the >memory controller configuration (only the x8 defines are ne

Re: [U-Boot] ref: virt-v7.c switching to non_secure mode

2014-03-13 Thread armdev
Dear Andre, Thanks for replying. On 13-Mar-2014, at 3:11 pm, Andre Przywara wrote: > Hi, > >> We are able to figure out the issue. PERIPHBASE returned on ARNDALE >> board was 0x1050 and adding GIC offset was creating an incorrect >> address. > > please see: > https://github.com/apritzel

Re: [U-Boot] post_memory_tests

2014-03-13 Thread chi l
Hello, Thank you for your answer. Yes. the test runs from the NOR flash (post_run function calls the test in arch/arm/lib/board.c before the relocation of U-Boot in the RAM). That is why I'm kind of confuse about why the tests works for 4K regions and not for 8K regions. Maybe, even if the tes

Re: [U-Boot] post_memory_tests

2014-03-13 Thread Wolfgang Denk
Dear chi l, In message you wrote: > > What is the purpose of the _POST_WORD_ADDR variable in include/post.h? How > should I define the value of that variable? See post_word_load() and post_word_store() [both in include/post.h] how _POST_WORD_ADDR gets used. You need a persistent (across resets

[U-Boot] post_memory_tests

2014-03-13 Thread chi l
Hello, I need to run memory RAM test on an ARM based platform. I saw that there is the POST tests framework in u-boot and I had some questions about it. What is the purpose of the _POST_WORD_ADDR variable in include/post.h? How should I define the value of that variable? Also, I try to run the

Re: [U-Boot] [PATCH] powerpc/t208x: enable command MEMTEST DDR_INTERACTIVE EEPROM

2014-03-13 Thread Wolfgang Denk
Dear York Sun, In message <88c8c779-b636-4abf-9751-33e471307...@freescale.com> you wrote: > > On Mar 12, 2014, at 8:17 PM, Shengzhou Liu wrote: > > > Enable CONFIG_CMD_MEMTEST, CONFIG_FSL_DDR_INTERACTIVE, CONFIG_CMD_EEPROM > > I can see the ddr debugging and eeprom command are useful. But I am