[U-Boot] [PATCH] calimain: Update maintainers and their email addresses

2016-12-08 Thread Christian Riesch
Signed-off-by: Christian Riesch <christ...@riesch.at> Cc: Manfred Rudigier <manfred.rudig...@omicronenergy.com> Cc: Christoph Rüdisser <christoph.ruedis...@omicronenergy.com> --- board/omicron/calimain/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

Re: [U-Boot] [PATCH 3/6] autoboot: remove CONFIG_ZERO_BOOTDELAY_CHECK

2016-06-22 Thread Christian Riesch
for abort > > This commit converts the logic as follow: > CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n > --> CONFIG_BOOTDELAY=-2 > > Signed-off-by: Masahiro Yamada <yamada.masah...@socionext.com> For the calimain board Acked-by: Christian R

Re: [U-Boot] [PATCH v2 1/3] arm: Enable CONFIG_SYS_GENERIC_BOARD for all boards

2015-08-25 Thread Christian Riesch
Hi Simon, On Wed, Aug 19, 2015 at 6:35 AM, Simon Glass s...@chromium.org wrote: All boards should be converted to generic board by now. Change the rest over. If this causes run-time breakages then we can remove those boards. Why not just remove these apparently unmaintained boards, as

Re: [U-Boot] [PATCH] arm: fix missing exception handling

2014-08-21 Thread Christian Riesch
Benoît, On Wed, Aug 20, 2014 at 12:47 PM, Benoît Thébaudeau benoit.thebaudeau@gmail.com wrote: On Wed, Aug 20, 2014 at 9:21 AM, Christian Riesch christian.rie...@omicron.at wrote: On Tue, Aug 19, 2014 at 8:35 PM, Benoît Thébaudeau benoit.thebaudeau@gmail.com wrote: Commit 41623c9

Re: [U-Boot] [PATCH v1] arm: include config.h in vectors.S

2014-08-20 Thread Christian Riesch
Hi Albert, On Tue, Aug 5, 2014 at 10:30 AM, Chris Packham judge.pack...@gmail.com wrote: On 14/07/14 17:01, Chris Packham wrote: In order to use configuration flags it is necessary to include config.h. Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD won't get the correct

Re: [U-Boot] [PATCH] arm: fix missing exception handling

2014-08-20 Thread Christian Riesch
Benoît, On Tue, Aug 19, 2014 at 8:35 PM, Benoît Thébaudeau benoit.thebaudeau@gmail.com wrote: Commit 41623c9 'arm: move exception handling out of start.S files' missed some linker scripts. Hence, some boards no longer had exception handling linked since this commit. Restore the original

Re: [U-Boot] [U-boot] the first 0x20 bytes in u-boot.bin

2014-07-31 Thread Christian Riesch
Hi, On Thu, Jul 31, 2014 at 12:24 PM, tiger...@via-alliance.com wrote: Hi, Albert: I am studying 2014.07 release u-boot package. I found u-boot.bin's first bytes were not code in start.S . For ARM processors, it's in arch/arm/lib/vectors.S. Regards, Christian Taken for compling

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned (was: [PATCH] arm: fix a build error with CONFIG_USE_IRQ)

2014-07-07 Thread Christian Riesch
Hi Albert, On Fri, Jul 4, 2014 at 10:35 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Christian, On Wed, 2 Jul 2014 15:45:17 +0200, Christian Riesch christian.rie...@omicron.at wrote: Hello Albert, On Wed, Jun 18, 2014 at 2:55 PM, Christian Riesch christian.rie...@omicron.at

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned (was: [PATCH] arm: fix a build error with CONFIG_USE_IRQ)

2014-07-07 Thread Christian Riesch
Hi again, On Mon, Jul 7, 2014 at 9:15 AM, Christian Riesch christian.rie...@omicron.at wrote: [...] As a result, __image_copy_start points to 0x6000 (CONFIG_SYS_TEXT_BASE) and _start points is 0x6004. The relocation code in arch/arm/lib/relocate.S calculates its relocation offset

[U-Boot] [PATCH] arm: include config.h in arch/arm/lib/vectors.S

2014-07-07 Thread Christian Riesch
config.h is required for CONFIG_SYS_DV_NOR_BOOT_CFG. Signed-off-by: Christian Riesch christian.rie...@omicron.at Reported-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Masahiro Yamada yamad...@jp.panasonic.com Cc: Heiko Schocher h...@denx.de Cc

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned (was: [PATCH] arm: fix a build error with CONFIG_USE_IRQ)

2014-07-02 Thread Christian Riesch
Hello Albert, On Wed, Jun 18, 2014 at 2:55 PM, Christian Riesch christian.rie...@omicron.at wrote: Am I missing something here? What would be the preferred solution to make the board working again? Any comments on this? What shall we do to get the boards working again? Thanks, Christian

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned (was: [PATCH] arm: fix a build error with CONFIG_USE_IRQ)

2014-06-18 Thread Christian Riesch
Hi Albert, I had one more look at this, please see my comments below. On Wed, Jun 11, 2014 at 9:14 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Masahiro, (to: the board maintainers for enbw_cmc, da850evm_direct_nor, and calimain) On Mon, 09 Jun 2014 18:29:26 +0900, Masahiro Yamada

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned (was: [PATCH] arm: fix a build error with CONFIG_USE_IRQ)

2014-06-18 Thread Christian Riesch
On Wed, Jun 18, 2014 at 2:55 PM, Christian Riesch christian.rie...@omicron.at wrote: [...] And that is /wrong/: the vectors table is misaligned by 4 bytes. Let's have a look at the calimain board. The vector exception table of this CPU (ARM926EJS) can be located either at 0x

[U-Boot] [PATCH] arm, calimain: Add CONFIG_SYS_GENERIC_BOARD

2014-06-12 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at --- include/configs/calimain.h |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/configs/calimain.h b/include/configs/calimain.h index febee45..b27f973 100644 --- a/include/configs/calimain.h +++ b/include

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned

2014-06-12 Thread Christian Riesch
On Wed, Jun 11, 2014 at 3:15 PM, Christian Riesch christian.rie...@omicron.at wrote: - test the same build with the 4-byte signature manually prepended (this may possibly require padding the image); No, this didn't work, I guess because the relocation offsets are wrong now. I tried to set

Re: [U-Boot] enbw_cmc, da850evm_direct_nor, and calimain vectors table misaligned

2014-06-11 Thread Christian Riesch
Hi all, On Wed, Jun 11, 2014 at 9:47 AM, Heiko Schocher h...@denx.de wrote: Hello Albert, Am 11.06.2014 09:14, schrieb Albert ARIBAUD: Hi Masahiro, (to: the board maintainers for enbw_cmc, da850evm_direct_nor, and calimain) On Mon, 09 Jun 2014 18:29:26 +0900, Masahiro Yamada

[U-Boot] [PATCH] arm, davinci: Use CONFIG_SPL_PAD_TO for padding the SPL in an ais image

2014-05-07 Thread Christian Riesch
configurations. This patch converts the u-boot.ais target to use CONFIG_SPL_PAD_TO instead of CONFIG_SPL_MAX_SIZE for padding the SPL and adds a #define CONFIG_SPL_PAD_TO where it is required. Signed-off-by: Christian Riesch christian.rie...@omicron.at Reported-by: Tom Taylor ttaylor.ta...@gmail.com Cc

Re: [U-Boot] DA850EVM with USE_NAND config does not pad the AIS file

2014-05-06 Thread Christian Riesch
Tom, Thank you very much for your investigations :-) --On April 26, 2014 13:34 -0400 Tom Taylor ttaylor.ta...@gmail.com wrote: I'm a U-Boot newbie so please feel free to correct how I'm reporting this issue.. I recently downloaded the 2014.04-rc3 snapshot to build U-Boot for my custom

Re: [U-Boot] DA850EVM with USE_NAND config does not pad the AIS file

2014-05-06 Thread Christian Riesch
Tom, Thank you very much for your investigations :-) --On April 26, 2014 13:34 -0400 Tom Taylor ttaylor.ta...@gmail.com wrote: I'm a U-Boot newbie so please feel free to correct how I'm reporting this issue.. I recently downloaded the 2014.04-rc3 snapshot to build U-Boot for my custom

[U-Boot] [PATCH] arm, davinci: Use CONFIG_SPL_PAD_TO for padding the SPL in an ais image

2014-05-06 Thread Christian Riesch
configurations. This patch converts the u-boot.ais target to use CONFIG_SPL_PAD_TO instead of CONFIG_SPL_MAX_SIZE for padding the SPL and adds a #define CONFIG_SPL_PAD_TO where it is required. Signed-off-by: Christian Riesch christian.rie...@omicron.at Reported-by: Tom Taylor ttaylor.ta...@gmail.com Cc

Re: [U-Boot] DA850EVM with USE_NAND config does not pad the AIS file

2014-05-06 Thread Christian Riesch
Hello Heiko, --On May 06, 2014 16:46 +0200 Heiko Schocher h...@denx.de wrote: Hello Christian, Am 06.05.2014 13:30, schrieb Christian Riesch: Tom, Thank you very much for your investigations :-) --On April 26, 2014 13:34 -0400 Tom Taylor ttaylor.ta...@gmail.com wrote: I'm a U-Boot newbie

[U-Boot] [PATCH] da850evm: Use clrbits function with correct endianess

2013-06-14 Thread Christian Riesch
. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Nagabhushana Netagunte nagabhushana.netagu...@ti.com Cc: Rajashekhara, Sudhakar sudhakar@ti.com --- Hi, due to lack of hardware I only compile tested this code. I am looking forward to your comments. Regards, Christian board

Re: [U-Boot] [U-BOOT] [PATCH] arm: da830: moved pinmux configurations to the arch tree

2013-06-05 Thread Christian Riesch
...@ti.com Acked-by: Christian Riesch christian.rie...@omicron.at Regards, Christian ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/2] calimain: Generate random MAC address for factory tests

2013-01-09 Thread Christian Riesch
Hello Wolfgang, Thank you again for your comments. On 2013-01-08 18:39, Wolfgang Denk wrote: Dear Christian Riesch, In message 6cc4810c-1e2e-4ebf-912a-96936f035...@mary.at.omicron.at you wrote: Signed-off-by: Christian Riesch christian.rie...@omicron.at --- board/omicron/calimain/calimain.c

[U-Boot] [PATCH 2/2] calimain: Generate random MAC address for factory tests

2013-01-08 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at --- board/omicron/calimain/calimain.c | 31 ++- include/configs/calimain.h|2 ++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/board/omicron/calimain/calimain.c b/board/omicron

[U-Boot] [PATCH 1/2] net: Remove call of srand from eth_random_enetaddr()

2013-01-08 Thread Christian Riesch
Currently eth_random_enetaddr() seeds the random number generator with get_timer(0). Some boards might want to use other sources for the seed, therefore move the call of srand() to the board specific code. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Michael Walle mich

[U-Boot] [PATCH 0/2] calimain: Generate random MAC address for factory testing

2013-01-08 Thread Christian Riesch
of the uninitialized SRAM of the AM1808 SoC. Regards, Christian Cc: Tom Rini tr...@ti.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Michael Walle mich...@walle.cc Christian Riesch (2): net: Remove call of srand from eth_random_enetaddr() calimain: Generate random MAC address for factory tests

Re: [U-Boot] [PATCH 1/2] net: Remove call of srand from eth_random_enetaddr()

2013-01-08 Thread Christian Riesch
Hello Wolfgang, Thank you for your comments. On Tuesday, January 8, 2013, Wolfgang Denk wrote: Dear Christian Riesch, In message 419e5c6e-b2ef-44c2-a4c1-bb25c50fc...@mary.at.omicron.atjavascript:; you wrote: Currently eth_random_enetaddr() seeds the random number generator

Re: [U-Boot] [STATUS] v2013.01-rc2 released

2012-12-17 Thread Christian Riesch
Hi Tom, On Fri, Dec 14, 2012 at 10:52 PM, Tom Rini tr...@ti.com wrote: Hey all, I've tagged and pushed v2013.01-rc2 now. The next branch has been open for a little bit, and is still open now, and in sync. Here's where we're at: - I expect a USB pull request from Marek soon. - I've

Re: [U-Boot] [PATCH 2/3] fw_env: fix incorrect usage of open(O_CREAT)

2012-12-14 Thread Christian Riesch
Hi, On Sun, Nov 11, 2012 at 6:47 AM, Mike Frysinger vap...@gentoo.org wrote: When using open(), the O_CREAT flag must be given a mode, otherwise it uses random garbage from the stack. Also, it can fail to build: In file included from /usr/include/fcntl.h:290:0, from

Re: [U-Boot] [PATCH v2 01/11] ARM: fix relocation on ARM926EJS

2012-09-17 Thread Christian Riesch
Hi, On Sun, Sep 16, 2012 at 5:36 PM, Marek Vasut ma...@denx.de wrote: Dear José Miguel Gonçalves, On 09/16/2012 11:06 AM, Marek Vasut wrote: Dear José Miguel Gonçalves, On 09/15/2012 07:03 PM, Marek Vasut wrote: Dear José Miguel Gonçalves, Jumping to board_init_r is not performed

Re: [U-Boot] [PATCH v2 10/11] Add u-boot-ubl.bin target to the Makefile

2012-09-17 Thread Christian Riesch
Hi, On Sun, Sep 16, 2012 at 11:27 AM, José Miguel Gonçalves jose.goncal...@inov.pt wrote: On 09/14/2012 08:08 PM, Tom Rini wrote: On Fri, Sep 14, 2012 at 06:29:01PM +0100, Jos?? Miguel Gon??alves wrote: Samsung's S3C24XX SoCs need this in order to generate a binary image with the SPL and

Re: [U-Boot] [PATCH v2 01/11] ARM: fix relocation on ARM926EJS

2012-09-17 Thread Christian Riesch
Hi, On Mon, Sep 17, 2012 at 10:34 AM, José Miguel Gonçalves jose.goncal...@inov.pt wrote: On 09/17/2012 07:28 AM, Christian Riesch wrote: Hi, On Sun, Sep 16, 2012 at 5:36 PM, Marek Vasut ma...@denx.de wrote: Dear José Miguel Gonçalves, On 09/16/2012 11:06 AM, Marek Vasut wrote: Dear

Re: [U-Boot] [PATCH v5 20/25] da850: Add README.da850

2012-08-28 Thread Christian Riesch
. Signed-off-by: Tom Rini tr...@ti.com Acked-by: Christian Riesch christian.rie...@omicron.at Regards, Christian --- Changes in v2: - Add README.da850_am18xxevm Changes in v3: - Fix thinko, Nand - SPI (spotted by Prabhakar Lad) - Rename to README.da850, add more direct recovery method

Re: [U-Boot] [PATCH v5 20/25] da850: Add README.da850

2012-08-28 Thread Christian Riesch
as well as how to write a recovery image. Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Add README.da850_am18xxevm Changes in v3: - Fix thinko, Nand - SPI (spotted by Prabhakar Lad) - Rename to README.da850, add more direct recovery method (Christian Riesch) Changes in v4

Re: [U-Boot] [PATCH v3 0/19] ARM: SPL: Make more generic, merge DaVinci and OMAP

2012-08-23 Thread Christian Riesch
. I'm unsure of the best way to quiet these as I don't like the idea of sprinkling http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54303 and I'm sending another email to discuss that. -- Tom Changes in v2: - Add - Add CONFIG_SYS_SPL_MALLOC_START / SIZE defines from Christian Riesch - Add arch

Re: [U-Boot] [PATCH v3 17/19] da850: Add README.da850

2012-08-23 Thread Christian Riesch
image. Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Add Changes in v3: - Fix thinko, Nand - SPI (spotted by Prabhakar Lad) - Rename to README.da850, add more direct recovery method (Christian Riesch) board/davinci/da8xxevm/README.da850 | 62

Re: [U-Boot] [PATCH v3 16/19] ARM: SPL: Convert davinci to CONFIG_SPL_FRAMEWORK

2012-08-23 Thread Christian Riesch
Hi Tom, On Thu, Aug 23, 2012 at 1:19 AM, Tom Rini tr...@ti.com wrote: - Convert the non-relocation part of board_init_f to spl_board_init, turn on CONFIG_SPL_BOARD_INIT in the configs. - Remove duplicated code. - Add spl_boot_device() that returns the statically chosen boot device.

Re: [U-Boot] [PATCH v2 16/18] da850_am18xxevm: Add README.da850_am18xxevm

2012-08-22 Thread Christian Riesch
[cc'd Manjunath Hadli] Hi Tom, On Mon, Aug 20, 2012 at 6:45 PM, Tom Rini tr...@ti.com wrote: Add a board-specific README that documents how to write u-boot.ais to the SPI found on this board. Changes-series: 2 - Add Signed-off-by: Tom Rini tr...@ti.com ---

Re: [U-Boot] [PATCH v2 16/18] da850_am18xxevm: Add README.da850_am18xxevm

2012-08-22 Thread Christian Riesch
Hi Prabhakar, On Wed, Aug 22, 2012 at 11:07 AM, Prabhakar Lad prabhakar@ti.com wrote: Hi, On Wednesday 22 August 2012 01:43 PM, Christian Riesch wrote: [cc'd Manjunath Hadli] Hi Tom, On Mon, Aug 20, 2012 at 6:45 PM, Tom Rini tr...@ti.com wrote: Add a board-specific README

Re: [U-Boot] [PATCH v2 15/18] ARM: SPL: Convert davinci to CONFIG_SPL_FRAMEWORK

2012-08-22 Thread Christian Riesch
Hi Tom, On Mon, Aug 20, 2012 at 6:45 PM, Tom Rini tr...@ti.com wrote: - Convert the non-relocation part of board_init_f to spl_board_init, turn on CONFIG_SPL_BOARD_INIT in the configs. - Remove duplicated code. - Add spl_boot_device() that returns the statically chosen boot device. I

Re: [U-Boot] [PATCH v2 16/18] da850_am18xxevm: Add README.da850_am18xxevm

2012-08-22 Thread Christian Riesch
Hi Prabhakar, On Wednesday, August 22, 2012, Prabhakar Lad wrote: Hi Christian, On Wednesday 22 August 2012 02:47 PM, Christian Riesch wrote: Hi Prabhakar, On Wed, Aug 22, 2012 at 11:07 AM, Prabhakar Lad prabhakar@ti.comjavascript:; wrote: Hi, On Wednesday 22 August 2012

Re: [U-Boot] [PATCH v5] Consolidate bootcount code into drivers/bootcount

2012-08-20 Thread Christian Riesch
...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Valentin Longchamp valentin.longch...@keymile.com Cc: Christian Riesch christian.rie...@omicron.at Cc: Manfred Rudigier manfred.rudig...@omicron.at Cc: Mike Frysinger vap...@gentoo.org Cc: Rob Herring rob.herr...@calxeda.com Cc: Reinhard Meyer

Re: [U-Boot] [PATCH 15/17] ARM: SPL: Convert davinci to CONFIG_SPL_FRAMEWORK

2012-08-20 Thread Christian Riesch
Hi Tom, I tested the entire patchset with the da850evm booting from SPI flash with SPL (make da850evm_config make u-boot.ais). I had to add defines for mem_malloc_init to make it work, please see my comment below. On Wed, Aug 15, 2012 at 11:30 PM, Tom Rini tr...@ti.com wrote: - Convert the

Re: [U-Boot] [PATCH v3] Consolidate bootcount code into drivers/bootcount

2012-08-13 Thread Christian Riesch
javascript:; Cc: Heiko Schocher h...@denx.de javascript:; Cc: Valentin Longchamp valentin.longch...@keymile.com javascript:; Cc: Christian Riesch christian.rie...@omicron.at javascript:; Cc: Manfred Rudigier manfred.rudig...@omicron.at javascript:; Cc: Mike Frysinger vap...@gentoo.org javascript

Re: [U-Boot] Board-specific commands unintentionally linked into SPL?

2012-07-26 Thread Christian Riesch
[cc'd Prabhakar Lad, Tom Rini, and Scott Wood] Tyler, On Thu, Jul 26, 2012 at 5:37 PM, Tyler Olmstead tyler.j.olmst...@gmail.com wrote: Hi all, I have encountered some issues adding a board-specific command to the board file of a project I have been working on. Specifically, after adding a

Re: [U-Boot] Board-specific commands unintentionally linked into SPL?

2012-07-26 Thread Christian Riesch
Hi, On Thursday, July 26, 2012, Aneesh V wrote: Hi Tyler, On 07/26/2012 11:54 AM, Tyler Olmstead wrote: Hi Christian, On Thu, Jul 26, 2012 at 10:03 AM, Christian Riesch christian.rie...@omicron.at wrote: [cc'd Prabhakar Lad, Tom Rini, and Scott Wood] Tyler, On Thu, Jul 26, 2012

Re: [U-Boot] Issue with running commands

2012-07-03 Thread Christian Riesch
Hi Sughosh, On Mon, Jul 2, 2012 at 9:24 PM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi, While testing on hawkboard with the latest commit, i hit an issue of commands not being accepted. hawkboard reset Unknown command '�' - try 'help' hawkboard Running git bisect showed that

Re: [U-Boot] [PATCH v4 0/9] feature additions and fixes for da850/omap-l138

2012-06-28 Thread Christian Riesch
series has been tested by Christian Riesch (christian.rie...@omicron.at) for regression. Changes for v2: 1: Fixed comments from Tom to remove unused macro and add comment. 2: Fixed comments from Christian to move GPIO pins to board file and add a check to perform initializations only when

Re: [U-Boot] [PATCH 1/8] arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138

2012-06-21 Thread Christian Riesch
changed, 19 insertions(+), 7 deletions(-) Acked-by: Christian Riesch christian.rie...@omicron.at For the calimain board Tested-by: Christian Riesch christian.rie...@omicron.at Regards, Christian ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH 1/8] arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138

2012-06-21 Thread Christian Riesch
Hi Mikhail, On Tue, Jun 12, 2012 at 11:15 PM, Mikhail Kshevetskiy mikhail.kshevets...@gmail.com wrote: follow section 15.2.13.1 (Initializing Following Device Power Up or Reset) of OMAP-L138 DSP+ARM Processor Technical Reference Manual Signed-off-by: Mikhail Kshevetskiy

Re: [U-Boot] [PATCH 3/8] serial/ns16550: ns16550 has a different register layout on SOC_DA8XX

2012-06-21 Thread Christian Riesch
the checkpatch warning here (no spaces at start of line). Otherwise: Acked-by: Christian Riesch christian.rie...@omicron.at Tested-by: Christian Riesch christian.rie...@omicron.at Regards, Christian  #if defined(CONFIG_APTIX)        /* /13 mode so Aptix 6MHz can hit 115200 */ diff --git

Re: [U-Boot] [PATCH v3 2/9] da850/omap-l138: modifications for Logic PD Rev.3 AM18xx EVM

2012-06-21 Thread Christian Riesch
Hi Prabhakar, On Thu, Jun 21, 2012 at 9:51 AM, Prabhakar Lad prabhakar@ti.com wrote: From: Rajashekhara, Sudhakar sudhakar@ti.com AHCLKR/UART1_RTS/GP0[11] pin needs to be configured for MMC and NOR to work on DA850/OMAP-L138 Rev.3 EVM. When GP0[11] is low, the SD0 interface will not

Re: [U-Boot] [PATCH v3 4/9] arm, davinci: perform check for initalizing global data and serial init

2012-06-21 Thread Christian Riesch
@ti.com Signed-off-by: Rajashekhara, Sudhakar sudhakar@ti.com Signed-off-by: Hadli, Manjunath manjunath.ha...@ti.com Acked-by: Christian Riesch christian.rie...@omicron.at Regards, Christian ---  Chnages for v3:  1: Creted new patch by splitting patch 6 of v2, to make    it more readable

Re: [U-Boot] [PATCH v3 0/9] feature additions and fixes for da850/omap-l138

2012-06-21 Thread Christian Riesch
-by: Christian Riesch christian.rie...@omicron.at Regards, Christian Changes for v2: 1: Fixed comments from Tom to remove unused macro   and add comment. 2: Fixed comments from Christian to move GPIO pins   to board file and add a check to perform initializations   only when

Re: [U-Boot] [PATCH v2 3/7] da850/omap-l138: Add support to read u-boot image from MMC/SD

2012-06-20 Thread Christian Riesch
Hi Prabhakar, On Tue, Jun 19, 2012 at 7:06 AM, Lad, Prabhakar prabhakar@ti.com wrote: Hi Christian, On Tue, Jun 19, 2012 at 01:09:08, Christian Riesch wrote: Hi, Sorry for the delay, had a lot of other work to do :-/ On Thursday, June 7, 2012, Prabhakar Lad wrote:       From: Lad

Re: [U-Boot] [PATCH v2 3/7] da850/omap-l138: Add support to read u-boot image from MMC/SD

2012-06-18 Thread Christian Riesch
Hi, Sorry for the delay, had a lot of other work to do :-/ On Thursday, June 7, 2012, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar@ti.com javascript:; DA850/OMAP-L138 does not support strict MMC/SD boot mode. SPL will be in SPI flash and U-Boot image will be in MMC/SD card. SPL

Re: [U-Boot] [PATCH 7/8] arm/davinci: spl - boot device selection

2012-06-18 Thread Christian Riesch
Hi, On Tuesday, June 12, 2012, Mikhail Kshevetskiy wrote: Signed-off-by: Mikhail Kshevetskiy mikhail.kshevets...@gmail.comjavascript:; --- arch/arm/cpu/arm926ejs/davinci/Makefile |5 ++ arch/arm/cpu/arm926ejs/davinci/spl.c | 91 +++---

Re: [U-Boot] [PATCH 1/7] da850/omap-l138: Add MMC support for DA850/OMAP-L138

2012-06-05 Thread Christian Riesch
Hi, On Fri, Jun 1, 2012 at 4:30 PM, Prabhakar Lad prabhakar@ti.com wrote: From: Lad, Prabhakar prabhakar@ti.com This patch adds support for MMC/SD on DA850/OMAP-L138. Signed-off-by: Lad, Prabhakar prabhakar@ti.com Signed-off-by: Rajashekhara, Sudhakar sudhakar@ti.com

Re: [U-Boot] [PATCH] da850/omap-l138: enable SPI flash in RMII mode

2012-06-05 Thread Christian Riesch
Hi, On Fri, Jun 1, 2012 at 3:48 PM, Prabhakar Lad prabhakar@ti.com wrote: From: Rajashekhara, Sudhakar sudhakar@ti.com According to DA850/OMAP-L138 schematics, GP2[6] line has to be driven high for RMII mode to work. In RMII mode, SPI flash becomes un-usable. But during testing it

Re: [U-Boot] [PATCH 6/7] da850/omap-l138: Add support for NAND SPL

2012-06-05 Thread Christian Riesch
Hi, On Fri, Jun 1, 2012 at 4:30 PM, Prabhakar Lad prabhakar@ti.com wrote: From: Lad, Prabhakar prabhakar@ti.com This patch adds support for NAND SPL on DA850/OMAP-L138. Signed-off-by: Lad, Prabhakar prabhakar@ti.com Signed-off-by: Rajashekhara, Sudhakar sudhakar@ti.com

Re: [U-Boot] [PATCH] da850/omap-l138: Enable auto negotiation in RMII mode

2012-06-05 Thread Christian Riesch
Hi, On Fri, Jun 1, 2012 at 3:34 PM, Prabhakar Lad prabhakar@ti.com wrote: From: Rajashekhara, Sudhakar sudhakar@ti.com On DA850/OMAP-L138 it was observed that in RMII mode, auto negotiation was not performed. This patch enables auto negotiation in RMII mode. Without this patch, EMAC

Re: [U-Boot] [PATCH v2] Consolidate bootcount code into drivers/bootcount

2012-06-04 Thread Christian Riesch
is now usable not only by powerpc platforms, but others as well. Signed-off-by: Stefan Roese s...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Valentin Longchamp valentin.longch...@keymile.com Cc: Christian Riesch christian.rie...@omicron.at Cc: Manfred Rudigier manfred.rudig...@omicron.at

Re: [U-Boot] [PATCH v2] Consolidate bootcount code into drivers/bootcount

2012-06-04 Thread Christian Riesch
-by: Christian Riesch christian.rie...@omicron.at Thanks, Christian Signed-off-by: Stefan Roese s...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Valentin Longchamp valentin.longch...@keymile.com Cc: Christian Riesch christian.rie...@omicron.at Cc: Manfred Rudigier manfred.rudig...@omicron.at

Re: [U-Boot] [PATCH] Consolidate bootcount code into drivers/bootcount

2012-06-01 Thread Christian Riesch
Hi Stefan, On Fri, Jun 1, 2012 at 11:52 AM, Stefan Roese s...@denx.de wrote: This patch moves all bootcount implementations into a common directory: drivers/bootcount. The generic bootcount driver (bootcount.c) is now usable not only by powerpc platforms, but others as well. Highbank is

[U-Boot] [PATCH] calimain, enbw_cmc: Fix typo in comments

2012-03-26 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Heiko Schocher h...@denx.de Cc: Tom Rini tr...@ti.com --- board/enbw/enbw_cmc/enbw_cmc.c|2 +- board/omicron/calimain/calimain.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/enbw/enbw_cmc

Re: [U-Boot] [PATCH] arm: Don't use printf() in SPL builds

2012-03-15 Thread Christian Riesch
Hi Simon, On Thu, Mar 15, 2012 at 6:23 AM, Simon Glass s...@chromium.org wrote: Yes I am talking about building with the generic relocation series included, so a slightly different point. With that I get: $ make -j8 -s Generating include/generated/asm-offsets.h

[U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Christian Riesch
Hi, On Wednesday, March 7, 2012, Mikhail Kshevetskiy mikhail.kshevets...@gmail.com wrote: On Tue, 6 Mar 2012 22:28:46 + Laurence Withers lwith...@guralp.com wrote: On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: We have an omap l138 based board without jtag and

Re: [U-Boot] Do we really need CONFIG_ARCH_CPU_INIT ?

2012-03-02 Thread Christian Riesch
Hi, On Thu, Mar 1, 2012 at 9:48 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 01/03/2012 14:23, Fabio Estevam a écrit : Hi, Currently CONFIG_ARCH_CPU_INIT is used to select arch_cpu_init() function. arch_cpu_init() does CPU level initialization, so why do we need to include

Re: [U-Boot] Do we really need CONFIG_ARCH_CPU_INIT ?

2012-03-02 Thread Christian Riesch
Hi again, On Fri, Mar 2, 2012 at 9:46 AM, Christian Riesch christian.rie...@omicron.at wrote: Hi, On Thu, Mar 1, 2012 at 9:48 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 01/03/2012 14:23, Fabio Estevam a écrit : Hi, Currently CONFIG_ARCH_CPU_INIT is used to select

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Christian Riesch
Hi, On Mon, Feb 27, 2012 at 11:16 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Sun Feb 26, 2012 at 09:56:37AM -0800, Simon Glass wrote: Hi Sughosh, On Thu, Feb 23, 2012 at 9:25 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Mon Feb 20, 2012 at

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Christian Riesch
Hi Sughosh, On Mon, Feb 27, 2012 at 11:56 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Mon Feb 27, 2012 at 11:39:42AM +0100, Christian Riesch wrote: Hi, On Mon, Feb 27, 2012 at 11:16 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: snip  arch/arm/cpu/arm926ejs

Re: [U-Boot] [PATCH 1/2 V3] arm926: Flush the data cache before disabling it

2012-02-18 Thread Christian Riesch
Hi Albert, On Saturday, February 18, 2012, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 14/01/2012 15:02, Sughosh Ganu a écrit : The current implementation invalidates the cache instead of flushing it. This causes problems on platforms where the spl/u-boot is already loaded to the RAM,

Re: [U-Boot] [PATCH v5 4/7] arm, arm926ejs: Do not clear the V bit on DA850 SoCs

2012-02-02 Thread Christian Riesch
Hello Heiko and Sughosh, On Wed, Feb 1, 2012 at 8:33 AM, Heiko Schocher h...@denx.de wrote: Sughosh Ganu wrote: On Tue, Jan 31, 2012 at 7:26 PM, Christian Riesch christian.rie...@omicron.at wrote: The V bit of the c1 register of CP15 should not be cleared since the SoC has no valid memory

[U-Boot] [PATCH v6 7/7] arm, davinci: Add support for the Calimain board from OMICRON electronics

2012-02-02 Thread Christian Riesch
This patch adds support for the Calimain board from OMICRON electronics GmbH. The board features a Texas Instruments AM1808 SoC, 128 MB DDR2 memory, and 64 MB NOR flash memory connected to CS2 and CS3. Signed-off-by: Christian Riesch christian.rie...@omicron.at --- MAINTAINERS

[U-Boot] [PATCH v6 5/7] arm, arm926ejs: Enable icache only if CONFIG_SYS_ICACHE_OFF is not defined

2012-02-02 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com Acked-by: Heiko Schocher h...@denx.de Tested-by: Heiko Schocher h...@denx.de --- arch/arm/cpu/arm926ejs/start.S |5 - 1 files changed, 4 insertions(+), 1

[U-Boot] [PATCH v6 0/7] Change ARM926EJ-S startup code, hawkboard and calimain

2012-02-02 Thread Christian Riesch
CONFIG_SYS_EXCEPTION_VECTORS_HIGH as requested by Sughosh and Heiko - added Acked-bys and Tested-bys Regards, Christian Christian Riesch (5): arm, davinci: Add lowlevel_init for SoCs other than DM644X arm, arm926ejs: Do cpu critical inits only for boards that require it arm, arm926ejs: Add option

[U-Boot] [PATCH v6 3/7] arm, arm926ejs: Flush the data cache before disabling it

2012-02-02 Thread Christian Riesch
, the cache should be flushed instead. Also fix the comments to match code. Signed-off-by: Sughosh Ganu urwithsugh...@gmail.com Rebased and corrected commit message. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com

[U-Boot] [PATCH v6 2/7] arm, arm926ejs: Do cpu critical inits only for boards that require it

2012-02-02 Thread Christian Riesch
configurations that need low level initialization. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com Cc: Heiko Schocher h...@denx.de Acked-by: Heiko Schocher h...@denx.de Tested-by: Heiko Schocher h...@denx.de --- arch/arm

[U-Boot] [PATCH v6 4/7] arm, arm926ejs: Add option CONFIG_SYS_EXCEPTION_VECTORS_HIGH

2012-02-02 Thread Christian Riesch
The V bit of the c1 register of CP15 should not be cleared on DA850 SoCs since they have no valid memory at 0x. This patch introduces a configuration option CONFIG_SYS_EXCEPTION_VECTORS_HIGH that allows setting the correct value for the V bit. Signed-off-by: Christian Riesch christian.rie

[U-Boot] [PATCH v6 6/7] Changes to move hawkboard to the new spl infrastructure

2012-02-02 Thread Christian Riesch
the CONFIG_SPL_TEXT_BASE. Modified the README.hawkboard to reflect the same. Signed-off-by: Sughosh Ganu urwithsugh...@gmail.com Signed-off-by: Heiko Schocher h...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Christian Riesch christian.rie...@omicron.at Cc: Sudhakar Rajashekhara sudhakar@ti.com Cc: Tom Rini tr

[U-Boot] [PATCH v6 1/7] arm, davinci: Add lowlevel_init for SoCs other than DM644X

2012-02-02 Thread Christian Riesch
The low level initialization code in arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S was written for DM644X SoCs only. This patch makes the lowlevel_init function in this file a dummy function for SoCs other than DM644X. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Tom Rini tr

Re: [U-Boot] [PATCH 0/2] da850evm: add board specific functions

2012-02-02 Thread Christian Riesch
Hi, Thank you for re-submitting the patchset! On Thu, Feb 2, 2012 at 2:42 PM, Manjunath Hadli manjunath.ha...@ti.com wrote: There are two da850 SOC based EVMs, one from Spectrum digital and other from Logic PD. Boards from Spectrum digital have mac address stored in I2C EEPROM and they have

[U-Boot] [PATCH v5 0/7] Change ARM926EJ-S startup code, hawkboard and calimain

2012-01-31 Thread Christian Riesch
Hi, In this patchset I tried to put everything from the discussion in http://lists.denx.de/pipermail/u-boot/2012-January/115212.html Although this is the first version of this patchset, the version number is v5 since Sughosh's patches were already v4. Regards, Christian Christian Riesch (5

[U-Boot] [PATCH v5 5/7] arm, arm926ejs: Enable icache only if CONFIG_SYS_ICACHE_OFF is not defined

2012-01-31 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com --- arch/arm/cpu/arm926ejs/start.S |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/start.S b/arch/arm/cpu

[U-Boot] [PATCH v5 4/7] arm, arm926ejs: Do not clear the V bit on DA850 SoCs

2012-01-31 Thread Christian Riesch
The V bit of the c1 register of CP15 should not be cleared since the SoC has no valid memory at 0x. Signed-off-by: Christian Riesch christian.rie...@omicron.at Reported-by: Sughosh Ganu urwithsugh...@gmail.com Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com

[U-Boot] [PATCH v5 1/7] arm, davinci: Add lowlevel_init for SoCs other than DM644X

2012-01-31 Thread Christian Riesch
The low level initialization code in arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S was written for DM644X SoCs only. This patch makes the lowlevel_init function in this file a dummy function for SoCs other than DM644X. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Tom Rini tr

[U-Boot] [PATCH v5 7/7] arm, davinci: Add support for the Calimain board from OMICRON electronics

2012-01-31 Thread Christian Riesch
This patch adds support for the Calimain board from OMICRON electronics GmbH. The board features a Texas Instruments AM1808 SoC, 128 MB DDR2 memory, and 64 MB NOR flash memory connected to CS2 and CS3. Signed-off-by: Christian Riesch christian.rie...@omicron.at --- MAINTAINERS

[U-Boot] [PATCH v5 3/7] arm, arm926ejs: Flush the data cache before disabling it

2012-01-31 Thread Christian Riesch
, the cache should be flushed instead. Also fix the comments to match code. Signed-off-by: Sughosh Ganu urwithsugh...@gmail.com Rebased and corrected commit message. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com

[U-Boot] [PATCH v5 2/7] arm, arm926ejs: Do cpu critical inits only for boards that require it

2012-01-31 Thread Christian Riesch
configurations that need low level initialization. Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Albert Aribaud albert.u.b...@aribaud.net Cc: Tom Rini tr...@ti.com Cc: Heiko Schocher h...@denx.de --- arch/arm/cpu/arm926ejs/start.S |6 -- include/configs/cam_enc_4xx.h |6

[U-Boot] [PATCH v5 6/7] Changes to move hawkboard to the new spl infrastructure

2012-01-31 Thread Christian Riesch
the CONFIG_SPL_TEXT_BASE. Modified the README.hawkboard to reflect the same. Signed-off-by: Sughosh Ganu urwithsugh...@gmail.com Signed-off-by: Heiko Schocher h...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Christian Riesch christian.rie...@omicron.at Cc: Sudhakar Rajashekhara sudhakar@ti.com Cc: Tom Rini tr

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-31 Thread Christian Riesch
Hi Tom, On Mon, Jan 30, 2012 at 6:03 PM, Tom Rini tom.r...@gmail.com wrote: On Sun, Jan 29, 2012 at 6:36 AM, Christian Riesch christian.rie...@omicron.at wrote: 3) As Sughosh pointed out, the current code changes the V bit (location of exceptions). Sughosh's patch removes this code that does

[U-Boot] slow flash write with Freescale P1020 and PC28F256J3 NOR-flash

2012-01-31 Thread Christian Riesch
Hi Daniel, On Tuesday, January 31, 2012, Daniel Nilsson gnuf...@gmail.com wrote: I am bringing up a board that has a Freescale P1020 (PowerPC e500v2) and a 16-bit PC28F256J3 NOR-flash on it. My problem is that both erases and programming takes very long time. Reading from the flash on the

[U-Boot] [PATCH 1/2] SPL: Add YMODEM over UART load support

2012-01-31 Thread Christian Riesch
Hi Tom, Hi Matt, On Tuesday, January 31, 2012, Tom Rini tr...@ti.com wrote: From: Matt Porter mpor...@ti.com Adds support for loading U-Boot from UART using YMODEM protocol. If YMODEM support is enabled in SPL and the romcode indicates that SPL loaded via UART then SPL will wait for start of

[U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-30 Thread Christian Riesch
Hi, On Monday, January 30, 2012, Heiko Schocher h...@denx.de wrote: Hello Christian, Christian Riesch wrote: Hi all, On Fri, Jan 27, 2012 at 7:33 PM, Tom Rini tom.r...@gmail.com wrote: So, what do we want to do here? We really want to get this fix in so we can get the hawkboard SPL

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-30 Thread Christian Riesch
Hello Heiko, On Mon, Jan 30, 2012 at 7:39 AM, Heiko Schocher h...@denx.de wrote: Christian Riesch wrote: 2) The current version of Sughosh's patch does not change the logic behind the LOWLEVEL_INIT defines but just fixes the code to agree with ARM's manual. Instead of invalidating the cache

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-29 Thread Christian Riesch
Hi all, On Fri, Jan 27, 2012 at 7:33 PM, Tom Rini tom.r...@gmail.com wrote: So, what do we want to do here?  We really want to get this fix in so we can get the hawkboard SPL changes in, and the other platforms / fixups that are gated by that. If I can sum it up, in the relevant section of

Re: [U-Boot] [U-Boot-Users]-compilation error

2012-01-27 Thread Christian Riesch
Hi, On Fri, Jan 27, 2012 at 7:32 AM, periyasamy samy eceperiyas...@gmail.com wrote: hi..  i am new to u-boot and for my practice i compiled  arm720t impa7 source code using abacus-anurag-linux compiler. i am getting the following I'm not familiar with abacus-anurag, but isn't that a different

Re: [U-Boot] Pull request: Davinci uboot

2012-01-27 Thread Christian Riesch
Hi Manju, On Fri, Jan 27, 2012 at 12:34 PM, Hadli, Manjunath manjunath.ha...@ti.com wrote: Hi Tom, These patches have been posted earlier and have gone necessary reviews and I feel they are ready to be pulled. Please pull these pathes. I think the last time you posted these patches was in

Re: [U-Boot] SPL Framework: Add support for U_BOOT_CMD

2012-01-25 Thread Christian Riesch
Hi, On Wed, Jan 25, 2012 at 10:52 AM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: *I want to add a command using U_BOOT_CMD in uboot, where SPL_BUILD is enabled for example for da850evm in spl frame work how can i do that * Why do you want to do that? A command in an SPL? *When I tried

  1   2   3   >