Re: [U-Boot] [PATCH v1 0/2] Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-07-23 Thread Dirk Eibach
Ping. 2014-06-30 13:05 GMT+02:00 dirk.eib...@gdsys.cc: From: Dirk Eibach dirk.eib...@gdsys.cc Dirk Eibach (2): ppc: Make ppc4xx ready for CONFIG_SYS_GENERIC_BOARD board: Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards arch/powerpc/cpu/ppc4xx/cpu_init.c | 2 ++ include/configs

[U-Boot] [PATCH v3 0/13] Fixes on gdsys boards and some new functionality

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v3: - describe ihs_i2c in README Changes in v2: - make sha256 support optional - move ihs_i2c to drivers/i2c - split unrelated changes - use defines for I2C bus numbers Dirk Eibach (13): board: controlcenterd: Fix pci access board: gdsys

[U-Boot] [PATCH v3 02/13] board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API change

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/p1022/sdhc_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/gdsys/p1022/sdhc_boot.c b/board/gdsys/p1022/sdhc_boot.c

[U-Boot] [PATCH v3 03/13] board: controlcenterd: Use new API for setting i2c bus

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: - use defines for I2C bus numbers board/gdsys/p1022/controlcenterd-id.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/board/gdsys

[U-Boot] [PATCH v3 12/13] board: gdsys: Remove commands to reduce footprint

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Commit 2842c1c fit: add sha256 support badly increased memory footprint, so some of our boards did not build anymore. Since monitor base must not be changed I removed some commands to save memory. Maybe making sha256 optional for fit would be an option

[U-Boot] [PATCH v3 07/13] board: gdsys: Increase iocon and dlv10g version string

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None include/configs/dlvision-10g.h | 2 +- include/configs/iocon.h| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs

[U-Boot] [PATCH v3 08/13] board: gdsys: Configure bridge on DP501 to support DDC only

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The I2C bridge on DP501 supports EDID, MCCS and HDCP by default. Allow EDID only to avoid I2C address conflicts. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/common/dp501.c | 1 + include

[U-Boot] [PATCH v3 04/13] board: iocon: Support DisplayPort hardware

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc There is a new iocon hardware flavor, supporting DisplayPort finally. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 12 + board/gdsys/common/Makefile | 2 +- board/gdsys

[U-Boot] [PATCH v3 11/13] board: iocon: Modify iocon hardware startup

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc To avoid peer ChReceivePathStatus-messages on iocon startup, initialize PHYs as soon as possible. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 9 - 1 file changed, 4

[U-Boot] [PATCH v3 09/13] board: gdsys: Make gdsys osd hardware detection more robust

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 17 ++- board/gdsys/common/osd.c | 113 +++-- drivers/i2c/ihs_i2c.c | 1

[U-Boot] [PATCH v3 01/13] board: controlcenterd: Fix pci access

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc readl was called with values instead of pointers to these values. Why this ever did work is a mystery... Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/p1022/controlcenterd.c | 6 +++--- 1 file

[U-Boot] [PATCH v3 10/13] board: gdsys: Enable scrambling on DP501

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc For proper displayport performance, scrambling has to be enabled, but is turned off on DP501 by default. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None board/gdsys/common/dp501.c | 1 + 1 file changed, 1

[U-Boot] [PATCH v3 13/13] fit: make sha256 support optional

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc sha256 has some beefy memory footprint. Make it optional for constrained systems. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: - make sha256 support optional include/configs/dlvision-10g.h | 1 + include/configs

[U-Boot] [PATCH v3 05/13] i2c: IHS I2C master driver

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc IHS I2C master support was merely a hack in the osd driver. Now it is a proper u-boot I2C framework driver, supporting the v2.00 master features. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: - describe ihs_i2c in README Changes

[U-Boot] [PATCH v3 06/13] board: gdsys: Fix dlvision-10g I2C configuration

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc PPC4xx config options were not complete. ICS8N3QV01 and SIL1178 needed some more configuration. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v3: None Changes in v2: None include/configs/dlvision-10g.h | 10 -- 1 file changed, 8

[U-Boot] [PATCH v4 02/13] board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API change

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/p1022/sdhc_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/gdsys/p1022/sdhc_boot.c b/board/gdsys

[U-Boot] [PATCH v4 05/13] i2c: IHS I2C master driver

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc IHS I2C master support was merely a hack in the osd driver. Now it is a proper u-boot I2C framework driver, supporting the v2.00 master features. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: - describe ihs_i2c

[U-Boot] [PATCH v4 03/13] board: controlcenterd: Use new API for setting i2c bus

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: - use defines for I2C bus numbers board/gdsys/p1022/controlcenterd-id.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff

[U-Boot] [PATCH v4 07/13] board: gdsys: Increase iocon and dlv10g version string

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None include/configs/dlvision-10g.h | 2 +- include/configs/iocon.h| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v4 01/13] board: controlcenterd: Fix pci access

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc readl was called with values instead of pointers to these values. Why this ever did work is a mystery... Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/p1022/controlcenterd.c

[U-Boot] [PATCH v4 13/13] fit: make sha256 support optional

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc sha256 has some beefy memory footprint. Make it optional for constrained systems. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: - describe CONFIG_FIT_DISABLE_SHA256 in README Changes in v3: None Changes in v2: - make sha256 support

[U-Boot] [PATCH v4 08/13] board: gdsys: Configure bridge on DP501 to support DDC only

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The I2C bridge on DP501 supports EDID, MCCS and HDCP by default. Allow EDID only to avoid I2C address conflicts. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/common/dp501.c

[U-Boot] [PATCH v4 06/13] board: gdsys: Fix dlvision-10g I2C configuration

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc PPC4xx config options were not complete. ICS8N3QV01 and SIL1178 needed some more configuration. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None include/configs/dlvision-10g.h | 10

[U-Boot] [PATCH v4 04/13] board: iocon: Support DisplayPort hardware

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc There is a new iocon hardware flavor, supporting DisplayPort finally. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 12 + board/gdsys/common/Makefile

[U-Boot] [PATCH v4 09/13] board: gdsys: Make gdsys osd hardware detection more robust

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 17 ++- board/gdsys/common/osd.c | 113 +++-- drivers/i2c

[U-Boot] [PATCH v4 10/13] board: gdsys: Enable scrambling on DP501

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc For proper displayport performance, scrambling has to be enabled, but is turned off on DP501 by default. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/common/dp501.c | 1 + 1

[U-Boot] [PATCH v4 11/13] board: iocon: Modify iocon hardware startup

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc To avoid peer ChReceivePathStatus-messages on iocon startup, initialize PHYs as soon as possible. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/405ep/iocon.c | 9 - 1

[U-Boot] [PATCH v4 0/13] Fixes on gdsys boards and some new functionality

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v4: - describe CONFIG_FIT_DISABLE_SHA256 in README Changes in v3: - describe ihs_i2c in README Changes in v2: - make sha256 support optional - move ihs_i2c to drivers/i2c - split unrelated changes - use defines for I2C bus numbers Dirk Eibach

[U-Boot] [PATCH v4 12/13] board: gdsys: Remove commands to reduce footprint

2014-07-03 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Commit 2842c1c fit: add sha256 support badly increased memory footprint, so some of our boards did not build anymore. Since monitor base must not be changed I removed some commands to save memory. Maybe making sha256 optional for fit would be an option

Re: [U-Boot] [PATCH v4 0/13] Fixes on gdsys boards and some new functionality

2014-07-03 Thread Dirk Eibach
patman has decided to send some patches of the v4 series with a v3 label. I am not sure what to do about this. Ideas anybody? Cheers Dirk ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 0/13] Fixes on gdsys boards and some new functionality

2014-07-03 Thread Dirk Eibach
patman has decided to send some patches of the v4 series with a v3 label. I am not sure what to do about this. Ideas anybody? Ooops, sorry for the noise. patman did it right and sent v4 labels. It was just Gmail being extrasmart and grouping them in a thread. So only the first subject is shown.

Re: [U-Boot] [PATCH v3 13/13] fit: make sha256 support optional

2014-07-03 Thread Dirk Eibach
Whatever we do: we have some broken boards, so please let us fix it before next release. I am off on vacation now. If necessary simply drop this patch from the series. Cheers Dirk ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH v2 02/13] board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API change

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/p1022/sdhc_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/gdsys/p1022/sdhc_boot.c b/board/gdsys/p1022/sdhc_boot.c index e432318..fd0e910

[U-Boot] [PATCH v2 03/13] board: controlcenterd: Use new API for setting i2c bus

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - use defines for I2C bus numbers board/gdsys/p1022/controlcenterd-id.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/board/gdsys/p1022/controlcenterd

[U-Boot] [PATCH v2 13/13] fit: make sha256 support optional

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc sha256 has some beefy memory footprint. Make it optional for constrained systems. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - make sha256 support optional include/configs/dlvision-10g.h | 1 + include/configs/io.h | 1

[U-Boot] [PATCH v2 06/13] board: gdsys: Fix dlvision-10g I2C configuration

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc PPC4xx config options were not complete. ICS8N3QV01 and SIL1178 needed some more configuration. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None include/configs/dlvision-10g.h | 10 -- 1 file changed, 8 insertions(+), 2

[U-Boot] [PATCH v2 09/13] board: gdsys: Make gdsys osd hardware detection more robust

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/405ep/iocon.c | 17 ++- board/gdsys/common/osd.c | 113 +++-- drivers/i2c/ihs_i2c.c | 1 - include/configs

[U-Boot] [PATCH v2 10/13] board: gdsys: Enable scrambling on DP501

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc For proper displayport performance, scrambling has to be enabled, but is turned off on DP501 by default. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/common/dp501.c | 1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] [PATCH v2 04/13] board: iocon: Support DisplayPort hardware

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc There is a new iocon hardware flavor, supporting DisplayPort finally. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/405ep/iocon.c | 12 + board/gdsys/common/Makefile | 2 +- board/gdsys/common/dp501.c | 33

[U-Boot] [PATCH v2 11/13] board: iocon: Modify iocon hardware startup

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc To avoid peer ChReceivePathStatus-messages on iocon startup, initialize PHYs as soon as possible. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/405ep/iocon.c | 9 - 1 file changed, 4 insertions(+), 5

[U-Boot] [PATCH v2 05/13] i2c: IHS I2C master driver

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc IHS I2C master support was merely a hack in the osd driver. Now it is a proper u-boot I2C framework driver, supporting the v2.00 master features. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - move ihs_i2c to drivers/i2c - split

[U-Boot] [PATCH v2 12/13] board: gdsys: Remove commands to reduce footprint

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Commit 2842c1c fit: add sha256 support badly increased memory footprint, so some of our boards did not build anymore. Since monitor base must not be changed I removed some commands to save memory. Maybe making sha256 optional for fit would be an option

[U-Boot] [PATCH v2 07/13] board: gdsys: Increase iocon and dlv10g version string

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None include/configs/dlvision-10g.h | 2 +- include/configs/iocon.h| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/dlvision-10g.h b/include

[U-Boot] [PATCH v2 08/13] board: gdsys: Configure bridge on DP501 to support DDC only

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The I2C bridge on DP501 supports EDID, MCCS and HDCP by default. Allow EDID only to avoid I2C address conflicts. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/common/dp501.c | 1 + include/configs

[U-Boot] [PATCH v2 01/13] board: controlcenterd: Fix pci access

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc readl was called with values instead of pointers to these values. Why this ever did work is a mystery... Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/p1022/controlcenterd.c | 6 +++--- 1 file changed, 3 insertions

[U-Boot] [PATCH v2 0/13] Fixes on gdsys boards and some new functionality

2014-07-02 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v2: - make sha256 support optional - move ihs_i2c to drivers/i2c - split unrelated changes - use defines for I2C bus numbers Dirk Eibach (13): board: controlcenterd: Fix pci access board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API

[U-Boot] [PATCH v1 0/2] Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-06-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Dirk Eibach (2): ppc: Make ppc4xx ready for CONFIG_SYS_GENERIC_BOARD board: Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards arch/powerpc/cpu/ppc4xx/cpu_init.c | 2 ++ include/configs/controlcenterd.h | 2 ++ include/configs/dlvision-10g.h | 1

[U-Boot] [PATCH v1 1/2] ppc: Make ppc4xx ready for CONFIG_SYS_GENERIC_BOARD

2014-06-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The generic board infrastructure assumes that gd is set by arch code. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- arch/powerpc/cpu/ppc4xx/cpu_init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/powerpc/cpu/ppc4xx/cpu_init.c b/arch

[U-Boot] [PATCH v1 2/2] board: Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-06-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Add the generic board infrastructure to all gdsys boards. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- include/configs/controlcenterd.h | 2 ++ include/configs/dlvision-10g.h | 1 + include/configs/dlvision.h | 1 + include/configs

Re: [U-Boot] Use UART1 port on p1022 through U-Boot

2014-06-18 Thread Dirk Eibach
Just use #define CONFIG_CONS_INDEX 2 to select UART1 as u-boot console. Remember to set consoledev=ttyS1 in the kernel parameters. Cheers Dirk ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] Fix bug in io64 target (introduced by commit aba27ac)

2014-06-17 Thread Dirk Eibach
Heh. Good catch. thanks! But now I'm curious: how did you find this? Acked-by: dirk.eib...@gdsys.cc Cheers Dirk ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/6] configs: iocom: Fix typo on CMD_FPGA command

2014-06-16 Thread Dirk Eibach
Argh. Just noticed this. Fix typo in CMD_FPGA command enabling. Signed-off-by: Michal Simek michal.si...@xilinx.com CONFIG_CMD_FPGAD is *NOT* a typo, it is about enbaling our own FPGA command common/cmd_fpgad.c So NAK for this one. As it already got pulled to rc we have to find a solution.

[U-Boot] [PATCH v1 07/11] board: gdsys: Configure bridge on DP501 to support DDC only

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The I2C bridge on DP501 supports EDID, MCCS and HDCP by default. Allow EDID only to avoid I2C address conflicts. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/common/dp501.c | 1 + include/configs/controlcenterd.h | 7 --- 2

[U-Boot] [PATCH v1 02/11] board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API change

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/p1022/sdhc_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/gdsys/p1022/sdhc_boot.c b/board/gdsys/p1022/sdhc_boot.c index e432318..fd0e910 100644 --- a/board

[U-Boot] [PATCH v1 10/11] board: iocon: Modify iocon hardware startup

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc To avoid peer ChReceivePathStatus-messages on iocon startup, initialize PHYs as soon as possible. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/405ep/iocon.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git

[U-Boot] [PATCH v1 06/11] board: gdsys: Increase iocon and dlv10g version string

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- include/configs/dlvision-10g.h | 2 +- include/configs/iocon.h| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/dlvision-10g.h b/include/configs/dlvision-10g.h

[U-Boot] [PATCH v1 09/11] board: gdsys: Enable scrambling on DP501

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc For proper displayport performance, scrambling has to be enabled, but is turned off on DP501 by default. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/common/dp501.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/gdsys/common

[U-Boot] [PATCH v1 04/11] board: iocon: Support DisplayPort hardware

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc There is a new iocon hardware flavor, supporting DisplayPort finally. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/405ep/iocon.c | 12 + board/gdsys/common/Makefile | 2 +- board/gdsys/common/dp501.c | 33 + board

[U-Boot] [PATCH v1 05/11] board: gdsys: IHS I2C master driver

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc IHS I2C master support was merely a hack in the osd driver. Now it is a proper u-boot I2C framework driver, supporting the v2.00 master features. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/common/Makefile| 4 +- board/gdsys

[U-Boot] [PATCH v1 08/11] board: gdsys: Make gdsys osd hardware detection more robust

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/405ep/iocon.c | 17 ++- board/gdsys/common/ihs_i2c.c | 1 - board/gdsys/common/osd.c | 113 +++-- include/configs/dlvision-10g.h | 2

[U-Boot] [PATCH v1 01/11] board: controlcenterd: Fix pci access

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc readl was called with values instead of pointers to these values. Why this ever did work is a mystery... Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/p1022/controlcenterd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[U-Boot] [PATCH v1 03/11] board: controlcenterd: Use new API for setting i2c bus

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/p1022/controlcenterd-id.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board/gdsys/p1022/controlcenterd-id.c b/board/gdsys/p1022/controlcenterd-id.c index 3fca3c5

[U-Boot] [PATCH v1 0/11] Fixes on gdsys boards and some new functionality

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Dirk Eibach (11): board: controlcenterd: Fix pci access board: gdsys: Adapt sdhc_boot.c to mmc_get_env_addr API change board: controlcenterd: Use new API for setting i2c bus board: iocon: Support DisplayPort hardware board: gdsys: IHS I2C master

[U-Boot] [PATCH v1 11/11] board: gdsys: Remove commands to reduce footprint

2014-04-30 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Commit 2842c1c fit: add sha256 support badly increased memory footprint, so some of our boards did not build anymore. Since monitor base must not be changed I removed some commands to save memory. Maybe making sha256 optional for fit would be an option

Re: [U-Boot] [PATCH] powerpc: Increase u-boot size for selected boards

2014-04-24 Thread Dirk Eibach
in u-boot. The image grows and exceeds the preconfigured size. This patch only address the compiling error. It is not verified on the boards. The affected boards are MPC8572DS, dlvision, io, iocon, neo Signed-off-by: York Sun york...@freescale.com CC: Dirk Eibach eib...@gdsys.de CC: Kumar

[U-Boot] legacy I2C_GET_BUS()/I2C_SET_BUS() not working anymore

2013-08-19 Thread Dirk Eibach
Hello Heiko, your commit 385c9ef5 introduced in include/i2c.h #if defined(CONFIG_SYS_I2C) || defined(CONFIG_I2C_MULTI_BUS) # if !defined(CONFIG_SYS_MAX_I2C_BUS) # define CONFIG_SYS_MAX_I2C_BUS 2 # endif # define I2C_MULTI_BUS 0 #else # define CONFIG_SYS_MAX_I2C_BUS 1 # define I2C_MULTI_BUS 0

[U-Boot] [PATCH v1 4/4] powerpc/ppc4xx: Fix dlvision-10g reset gpio

2013-08-09 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- include/configs/dlvision-10g.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/dlvision-10g.h b/include/configs/dlvision-10g.h index a03c462..68e5246 100644

[U-Boot] [PATCH v1 3/4] powerpc/ppc4xx: Do full iocon PHY initialization in software

2013-08-09 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Up to this point some PHY initialization was done from the FPGA and some from u-boot. From now all initialization is done from u-boot. To keep this maintainable a PHY setup machine was implemented that can execute commands from initialization arrays. Signed

[U-Boot] [PATCH v1 2/4] powerpc/ppc4xx: Add support for iocon-2

2013-08-09 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Add a new iocon flavor with a second communiction port per channel. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/405ep/iocon.c | 36 +--- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git

[U-Boot] [PATCH v1 0/4] Fixes on gdsys boards and some new functionality

2013-08-09 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Since I will be on parental leave soon, Reinhard will probably take over maintaining this series at some point. Dirk Eibach (4): powerpc/ppc4xx: Add support for iocon fiber powerpc/ppc4xx: Add support for iocon-2 powerpc/ppc4xx: Do full iocon PHY

[U-Boot] [PATCH v1 1/4] powerpc/ppc4xx: Add support for iocon fiber

2013-08-09 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Add a new iocon flavor with fiber instead of copper connectivity. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- board/gdsys/405ep/iocon.c | 44 1 file changed, 36 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] [ANN] v2013.07-rc2

2013-07-16 Thread Dirk Eibach
:43PM +0200, Dirk Eibach wrote: Hi Andy, If you've got changes outstanding still, please start gently poking custodians with patchwork links. I've got a good bit of stuff I need to deal with myself still, but please prod me all the same. my series [PATCH v7 0/5] Add gdsys ControlCenter

Re: [U-Boot] [ANN] v2013.07-rc2

2013-07-02 Thread Dirk Eibach
Hi Andy, If you've got changes outstanding still, please start gently poking custodians with patchwork links. I've got a good bit of stuff I need to deal with myself still, but please prod me all the same. my series [PATCH v7 0/5] Add gdsys ControlCenter Digital board is still missing. You

[U-Boot] [PATCH v7 3/5] Add Atmel I2C tpm

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de Add support for Atmel TPM devices with two wire interface. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Reinhard Pfau reinhard.p...@gdsys.cc --- Changes in v7: None Changes in v6: - rename CONFIG_ATMEL_TWI_TPM to CONFIG_TPM_ATMEL_TWI - rename

[U-Boot] [PATCH v7 4/5] Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de MAKEALL is fine for ppc4xx and mpc85xx. Run checks were done on our controlcenterd hardware. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v7: None Changes in v6: None Changes in v5: None Changes in v4: - consider CONFIG_CMD_BOOTM for all

[U-Boot] [PATCH v7 2/5] i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0

2013-06-26 Thread dirk . eibach
From: Reinhard Pfau p...@gdsys.de if alen is 0: no longer start a write cycle before reading data. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Reinhard Pfau reinhard.p...@gdsys.cc Acked-by: Heiko Schocher h...@denx.de --- Changes in v7: None Changes in v6: None Changes in v5

[U-Boot] [PATCH v7 1/5] tpm: add AUTH1 cmds for LoadKey2 and GetPubKey

2013-06-26 Thread dirk . eibach
are enabled with CONFIG_TPM_AUTH_SESSIONS. (Note that this also requires CONFIG_SHA1 to be enabled.) Signed-off-by: Reinhard Pfau reinhard.p...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Acked-by: Che-Liang Chiou clch...@chromium.org --- Changes in v7: None Changes in v6: None Changes in v5

[U-Boot] [PATCH v7 0/5] Add gdsys ControlCenter Digital board

2013-06-26 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v7: - access FPGA by C struct instead of base+offset - braces for multiline statement - clarify that boot commands are already NUL-terminated - insert some blank lines to serparate declarations and code - remove CONFIG_HDBOOT which was not used

[U-Boot] [PATCH v5 2/6] powerpc/ppc4xx: Add gdsys mclink interface

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de mclink is a serial interface for communication between gdsys FPGA. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v5: None Changes in v4: None Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA - squashed

[U-Boot] [PATCH v5 0/6] Update gdsys ppc4xx-based boards

2013-06-26 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc This series depends on i2c multibus support. It was rebased on the latest multibus branch at http://git.denx.de/?p=u-boot/u-boot-i2c.git;a=shortlog;h=refs/heads/20130620_multibus_v2 Patch powerpc/ppc4xx: Add bitbang i2c interface for gdsys boards

[U-Boot] [PATCH v5 6/6] powerpc/ppc4xx: Remove CONFIG_SYS_FLASH_PROTECTION from gdsys boards

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de CONFIG_SYS_FLASH_PROTECTION was active on most gdsys boards by default, while hardware flash protection was not implemented. Hardware support was added recently and we get into trouble because backward compatibility is broken (u-boot can't unprotect the protected

[U-Boot] [PATCH v5 1/6] powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de A set of accessor functions was added to be able to access not only memory mapped FPGA in a generic way. Thanks to Wolfgang Denk for getting this sorted properly. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v5: - add board/gdsys/common/fpga.c

[U-Boot] [PATCH v5 3/6] powerpc/ppc4xx: Add fpgad command for dumping gdsys fpga registers

2013-06-26 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v5: None Changes in v4: None Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA Changes in v2: - move cmd_fpgad to common and fix whitespace issues - update

[U-Boot] [PATCH v5 4/6] powerpc/ppc4xx: Support gdsys multichannel iocon hardware

2013-06-26 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v5: None Changes in v4: - Move changes ins osd.c to proper commit - do not use common FPGA register accessors here Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions

[U-Boot] [PATCH v5 5/6] powerpc/ppc4xx: Consider gdsys FPGA OSD size

2013-06-26 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de OSD size was constant 32x16 characters. Now the size is set as announced by the FPGA. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/common/osd.c | 34

Re: [U-Boot] [PATCH v3 0/9] Bring in new I2C framework

2013-06-20 Thread Dirk Eibach
Hello Heiko, What is the status of this series now please? I heared nothing negatives for the new i2c multibus framework, so I plan to merge it into mainline, if the next merge widow is open. actually I thought it would go into the current release :( What's the reason for the delay? I

Re: [U-Boot] [PATCH v6 4/5] Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM

2013-06-20 Thread Dirk Eibach
Hi Andy, From: Dirk Eibach eib...@gdsys.de MAKEALL is fine for ppc4xx and mpc85xx. Run checks were done on our controlcenterd hardware. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc You don't need two sign-offs. patman puts

Re: [U-Boot] [PATCH v3 0/9] Bring in new I2C framework

2013-06-20 Thread Dirk Eibach
Hello Heiko, 2013/6/20 Heiko Schocher h...@denx.de: Hello Dirk, Am 20.06.2013 08:52, schrieb Dirk Eibach: Hello Heiko, What is the status of this series now please? I heared nothing negatives for the new i2c multibus framework, so I plan to merge it into mainline, if the next merge widow

Re: [U-Boot] [PATCH v6 4/5] Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM

2013-06-20 Thread Dirk Eibach
2013/6/20 Dirk Eibach dirk.eib...@gdsys.cc: Hi Andy, From: Dirk Eibach eib...@gdsys.de MAKEALL is fine for ppc4xx and mpc85xx. Run checks were done on our controlcenterd hardware. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc You

[U-Boot] [PATCH v4 0/6] Update gdsys ppc4xx-based boards

2013-06-20 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc This series depends on the Bring in new I2C framework series by Heiko Schocher. Patch powerpc/ppc4xx: Add bitbang i2c interface for gdsys boards was dropped in favor of using the new framework. Changes in v4: - Move changes ins osd.c to proper commit

[U-Boot] [PATCH v4 2/6] powerpc/ppc4xx: Add gdsys mclink interface

2013-06-20 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de mclink is a serial interface for communication between gdsys FPGA. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA - squashed with powerpc/ppc4xx

[U-Boot] [PATCH v4 6/6] powerpc/ppc4xx: Remove CONFIG_SYS_FLASH_PROTECTION from gdsys boards

2013-06-20 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de CONFIG_SYS_FLASH_PROTECTION was active on most gdsys boards by default, while hardware flash protection was not implemented. Hardware support was added recently and we get into trouble because backward compatibility is broken (u-boot can't unprotect the protected

[U-Boot] [PATCH v4 4/6] powerpc/ppc4xx: Support gdsys multichannel iocon hardware

2013-06-20 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: - Move changes ins osd.c to proper commit - do not use common FPGA register accessors here Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA - squashed

[U-Boot] [PATCH v4 3/6] powerpc/ppc4xx: Add fpgad command for dumping gdsys fpga registers

2013-06-20 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: - adapt to powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA Changes in v2: - move cmd_fpgad to common and fix whitespace issues - update email account

[U-Boot] [PATCH v4 1/6] powerpc/ppc4xx: Use generic accessor functions for gdsys FPGA

2013-06-20 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de A set of accessor functions was added to be able to access not only memory mapped FPGA in a generic way. Thanks to Wolfgang Denk for getting this sorted properly. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: - Move unrelated changes ins

[U-Boot] [PATCH v4 5/6] powerpc/ppc4xx: Consider gdsys FPGA OSD size

2013-06-20 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de OSD size was constant 32x16 characters. Now the size is set as announced by the FPGA. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v4: None Changes in v3: None Changes in v2: None board/gdsys/common/osd.c | 34

[U-Boot] [PATCH v6 0/5] Add gdsys ControlCenter Digital board

2013-06-12 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v6: - Add CONFIG_PCI_INDIRECT_BRIDGE to controlcenterd.h - Add MAINTAINERS entry - drop mpc85xx: Add CONFIG_RELEASE_CORE0_ONLY and use mp_holdoff instead - rename CONFIG_ATMEL_TWI_TPM to CONFIG_TPM_ATMEL_TWI - rename drivers/tpm/atmel_twi_tpm.c

[U-Boot] [PATCH v6 3/5] Add Atmel I2C tpm

2013-06-12 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de Add support for Atmel TPM devices with two wire interface. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Reinhard Pfau reinhard.p...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v6: - rename CONFIG_ATMEL_TWI_TPM

[U-Boot] [PATCH v6 1/5] tpm: add AUTH1 cmds for LoadKey2 and GetPubKey

2013-06-12 Thread dirk . eibach
are enabled with CONFIG_TPM_AUTH_SESSIONS. (Note that this also requires CONFIG_SHA1 to be enabled.) Signed-off-by: Reinhard Pfau reinhard.p...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v6: None Changes in v5: None Changes in v4: None Changes in v3: - fix email addresses

[U-Boot] [PATCH v6 4/5] Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM

2013-06-12 Thread dirk . eibach
From: Dirk Eibach eib...@gdsys.de MAKEALL is fine for ppc4xx and mpc85xx. Run checks were done on our controlcenterd hardware. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v6: None Changes in v5: None Changes in v4: - consider

<    1   2   3   4   >