[U-Boot] [PATCH 01/10] kconfig: add blank Kconfig files

2014-09-07 Thread Masahiro Yamada
This would be useful to start moving various config options. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- Kconfig | 12 +++- common/Kconfig | 4 drivers/Kconfig | 51

[U-Boot] [PATCH 03/10] kconfig: move CONFIG_CMD_BOOTM to Kconfig

2014-09-07 Thread Masahiro Yamada
CONFIG_CMD_BOOTM is defined in config_cmd_defaults.h which is forcebly included from each board. So, the default value of config CMD_BOOTM should be y. For some boards undefining it (bf506f-ezkit, controlcenterd_TRAILBLA, controlcenterd_TRAILBLAZER_DEVELOP, controlcenterd_TRAILBLAZER), #

[U-Boot] [PATCH 02/10] kconfig: move CONFIG_CC_OPTIMIZE_LIBS_FOR_SPEED to Kconfig

2014-09-07 Thread Masahiro Yamada
If this option is enabled, the objects under lib/ directory are compiled with speed optimization, not size optimization. (Currently, only used by some Blackfin boards.) Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- configs/bct-brettl2_defconfig | 1 +

[U-Boot] [PATCH 05/10] kconfig: move CONFIG_CMD_EXPORTENV to Kconfig

2014-09-07 Thread Masahiro Yamada
Since CONFIG_CMD_EXPORTENV is defined in config_cmd_defaults.h, it should be enabled for all the boards except bf506f-ezkit that undefs it explicitely. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- common/Kconfig | 4 configs/bf506f-ezkit_defconfig | 1 +

[U-Boot] [PATCH 04/10] kconfig: move CONFIG_CMD_CRC32 to Kconfig

2014-09-07 Thread Masahiro Yamada
Since CONFIG_CMD_CRC32 is defined in config_cmd_defaults.h, it is enabled for all the boards except the ones undefining it explicitly: kwb tseries_mmc tseries_nand tseries_spi vct_platinum_onenand_small vct_platinum_small vct_platinumavc_onenand_small vct_platinumavc_small

[U-Boot] [PATCH 08/10] kconfig: remove config_cmd_defaults.h

2014-09-07 Thread Masahiro Yamada
Now config_cmd_defaults.h is empty so it can be deleted safely. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- include/config_cmd_defaults.h | 13 - scripts/Makefile.autoconf | 1 - 2 files changed, 14 deletions(-) delete mode 100644 include/config_cmd_defaults.h

[U-Boot] [PATCH 07/10] kconfig: move CONFIG_CMD_IMPORTENV to Kconfig

2014-09-07 Thread Masahiro Yamada
Since CONFIG_CMD_IMPORTENV is defined in config_cmd_defaults.h, it should be enabled for all the boards except bf506f-ezkit that undefs it explicitely. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- common/Kconfig | 4 configs/bf506f-ezkit_defconfig | 1 +

[U-Boot] [PATCH 0/2] Refactoring the type defs in Kconfig

2014-09-07 Thread Masahiro Yamada
This series can be applied onto commit 0b703dbcee although 2/2 might become out-of-date soon if someone adds a new board. (It is OK because 2/2 can be easily reproduced.) Masahiro Yamada (2): kconfig: add CONFIG_SYS_{ARCH, CPU, ...} type def to arch/Kconfig kconfig: remove redundant string

[U-Boot] [PATCH 1/2] kconfig: add CONFIG_SYS_{ARCH, CPU, ...} type def to arch/Kconfig

2014-09-07 Thread Masahiro Yamada
This commit adds the type definitions (+ help messages) of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} to arch/Kconfig, which would save lots of type defs for taget boards. (See also the next commit.) Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- arch/Kconfig | 56

Re: [U-Boot] Verified boot and Legacy Kernel Images

2014-09-07 Thread mike
Hi Simon, Thanks and to Heiko also. Mike On 09/05/2014 11:54 PM, Simon Glass wrote: Hi, On 6 May 2014 00:38, Heiko Schocher h...@denx.de wrote: Hello Mike, Am 05.05.2014 16:27, schrieb Mike Pearce: Please help as I am confused. I implemented verified boot on 2014.04 using

[U-Boot] [PATCH V5 08/19] arm: mx6: ddr: cleanup

2014-09-07 Thread Nikita Kiryanov
No functional changes. Cc: Stefano Babic sba...@denx.de Cc: Tim Harvey thar...@gateworks.com Acked-by: Tim Harvey thar...@gateworks.com Signed-off-by: Nikita Kiryanov nik...@compulab.co.il --- Changes in V5: - Rebased over latest mainline code. Changes in V4: - No changes.

[U-Boot] [PATCH V5 13/19] arm: mx6: add support for Compulab cm-fx6 CoM

2014-09-07 Thread Nikita Kiryanov
Add initial support for Compulab CM-FX6 CoM. Support includes MMC, SPI flash, and SPL with dynamic DRAM detection. Cc: Igor Grinberg grinb...@compulab.co.il Cc: Stefano Babic sba...@denx.de Cc: Tom Rini tr...@ti.com Cc: Marek Vasut ma...@denx.de Cc: Simon Glass s...@chromium.org Acked-by: Marek

[U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410

2014-09-07 Thread Gerald Kerma
This serie of patches add some needed features to sheevaplug Gerald Kerma (5): ARM: sheevaplug: change env location ARM: sheevaplug: add MVSATA driver ARM: sheevaplug: add MTD defaults ARM: sheevaplug: redefine MTDPARTS ARM: sheevaplug: add HUSH parser include/configs/sheevaplug.h |

[U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location

2014-09-07 Thread Gerald Kerma
This patch move the environment offset in sheevaplug. The size of the u-boot binary is become too big. Fix saving environments was result of corrupting the u-boot. Signed-off-by: Gerald Kerma drea...@doukki.net Changes in v2: - patch description Changes in v1: - fix sheevaplug environment

[U-Boot] [PATCH 3/5] ARM: sheevaplug: add MTD defaults

2014-09-07 Thread Gerald Kerma
This patch add MTDIDS and MTDPARTS defaults settings to sheevaplug Signed-off-by: Gerald Kerma drea...@doukki.net Changes in v1: - add MTDIDS and MTDPARTS default to sheevaplug --- include/configs/sheevaplug.h | 5 + 1 file changed, 5 insertions(+) diff --git

[U-Boot] [PATCH 2/5] ARM: sheevaplug: add MVSATA driver

2014-09-07 Thread Gerald Kerma
This patch add MVSATA driver to sheevaplug Signed-off-by: Gerald Kerma drea...@doukki.net Changes in v1: - add MVSATA driver to sheevaplug - enable ext4 FS support --- include/configs/sheevaplug.h | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 5/5] ARM: sheevaplug: add HUSH parser

2014-09-07 Thread Gerald Kerma
This patch add HUSH command parser Signed-off-by: Gerald Kerma drea...@doukki.net Changes in v1: - add HUSH command parser --- include/configs/sheevaplug.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index

[U-Boot] [PATCH 4/5] ARM: sheevaplug: redefine MTDPARTS

2014-09-07 Thread Gerald Kerma
This patch redefine MTDPARTS Signed-off-by: Gerald Kerma drea...@doukki.net Changes in v1: - redefine MTDPARTS --- include/configs/sheevaplug.h | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index

[U-Boot] [PATCH] e1000: fix no nvm build

2014-09-07 Thread Marcel Ziswiler
Fix the following build error in case CONFIG_E1000_NO_NVM is enabled: CC drivers/net/e1000.o drivers/net/e1000.c: In function ‘e1000_initialize’: drivers/net/e1000.c:5365:5: error: ‘struct e1000_hw’ has no member named ‘eeprom_semaphore_present’

[U-Boot] [PATCH] e1000: add i211 and unprogrammed i210/i211 support

2014-09-07 Thread Marcel Ziswiler
This patch adds support for i211 as well as unprogrammed aka tools only i210/i211 chip support. Signed-off-by: Marcel Ziswiler mar...@ziswiler.com --- drivers/net/e1000.c | 6 ++ include/pci_ids.h | 2 ++ 2 files changed, 8 insertions(+) diff --git a/drivers/net/e1000.c

Re: [U-Boot] [PATCH V5 13/19] arm: mx6: add support for Compulab cm-fx6 CoM

2014-09-07 Thread Marek Vasut
On Sunday, September 07, 2014 at 05:59:29 PM, Nikita Kiryanov wrote: Add initial support for Compulab CM-FX6 CoM. Support includes MMC, SPI flash, and SPL with dynamic DRAM detection. Cc: Igor Grinberg grinb...@compulab.co.il Cc: Stefano Babic sba...@denx.de Cc: Tom Rini tr...@ti.com Cc:

Re: [U-Boot] [PATCH] e1000: fix no nvm build

2014-09-07 Thread Marek Vasut
On Monday, September 08, 2014 at 12:02:11 AM, Marcel Ziswiler wrote: Fix the following build error in case CONFIG_E1000_NO_NVM is enabled: CC drivers/net/e1000.o drivers/net/e1000.c: In function ‘e1000_initialize’: drivers/net/e1000.c:5365:5: error: ‘struct e1000_hw’

Re: [U-Boot] [PATCH] e1000: add i211 and unprogrammed i210/i211 support

2014-09-07 Thread Marek Vasut
On Monday, September 08, 2014 at 12:03:50 AM, Marcel Ziswiler wrote: This patch adds support for i211 as well as unprogrammed aka tools only i210/i211 chip support. Signed-off-by: Marcel Ziswiler mar...@ziswiler.com Does the network really work with an i21x with unprogrammed iNVM ? Best

[U-Boot] relocation problem on powerpc

2014-09-07 Thread Chris Packham
Hi All, I have come across what I think is a relocation problem for powerpc. I've added the following to ArpTimeoutCheck + printf(NetArpWaitTimerStart = %ld\n, NetArpWaitTimerStart); + printf(NetArpWaitTimerStart = %p\n, NetArpWaitTimerStart); + printf(NetArpWaitTry = %d\n,

Re: [U-Boot] relocation problem on powerpc

2014-09-07 Thread Chris Packham
On Mon, Sep 8, 2014 at 4:32 PM, Chris Packham judge.pack...@gmail.com wrote: Hi All, I have come across what I think is a relocation problem for powerpc. I've added the following to ArpTimeoutCheck + printf(NetArpWaitTimerStart = %ld\n, NetArpWaitTimerStart); +

Re: [U-Boot] relocation problem on powerpc

2014-09-07 Thread Chris Packham
There are some disadvantages to living in a weird timezone, mostly that you end up having conversations with yourself. On Mon, Sep 8, 2014 at 4:32 PM, Chris Packham judge.pack...@gmail.com wrote: Hi All, I have come across what I think is a relocation problem for powerpc. I've added the