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

2016-12-08 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Manfred Rudigier Cc: Christoph Rüdisser --- board/omicron/calimain/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/omicron/calimain/MAINTAINERS b/board/omicron/calimain/MAINTAINERS index f6e37a2..ad788a6 100644

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

2016-06-21 Thread Christian Riesch
verts the logic as follow: > CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n > --> CONFIG_BOOTDELAY=-2 > > Signed-off-by: Masahiro Yamada For the calimain board Acked-by: Christian Riesch Christian ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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 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 announced in [1]? Regar

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

2014-08-20 Thread Christian Riesch
Benoît, On Wed, Aug 20, 2014 at 12:47 PM, Benoît Thébaudeau wrote: > On Wed, Aug 20, 2014 at 9:21 AM, Christian Riesch > wrote: >> On Tue, Aug 19, 2014 at 8:35 PM, Benoît Thébaudeau >> wrote: >>> Commit 41623c9 'arm: move exception handling out of start.S fi

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 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 behavior by adding the .vect

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

2014-08-19 Thread Christian Riesch
Hi Albert, On Tue, Aug 5, 2014 at 10:30 AM, Chris Packham 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 code. >> >> Signe

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, 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 smdkv310 as an example: >

[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 Reported-by: Masahiro Yamada Cc: Albert Aribaud Cc: Masahiro Yamada Cc: Heiko Schocher Cc: Sudhakar Rajashekhara --- arch/arm/lib/vectors.S |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm

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 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 based on __imag

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 wrote: > Hi Christian, > > On Wed, 2 Jul 2014 15:45:17 +0200, Christian Riesch > wrote: > >> Hello Albert, >> >> On Wed, Jun 18, 2014 at 2:55 PM, Christian Riesch >> wrote: >> > Am I mis

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 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, Chr

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 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 or at > 0

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 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 > wrote: > >> Hi A

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 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 ar

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

2014-06-11 Thread Christian Riesch
Signed-off-by: Christian Riesch --- 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/configs/calimain.h @@ -1,5

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 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 >> wr

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

2014-05-07 Thread Christian Riesch
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 Reported-by: Tom Taylor Cc: Sudhakar Rajashekhara Cc: Heiko Schocher Cc: Albert ARIBAUD --- Sent again since date was wrong

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 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 wrote: I'm a U-Boot newbie so please feel free to correc

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

2014-05-06 Thread Christian Riesch
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 Reported-by: Tom Taylor Cc: Sudhakar Rajashekhara Cc: Heiko Schocher Cc: Albert ARIBAUD --- Makefile |2

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 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 DA850-based board. The only ch

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 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 DA850-based board. The only ch

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

2013-06-14 Thread Christian Riesch
. Signed-off-by: Christian Riesch Cc: Nagabhushana Netagunte Cc: Rajashekhara, Sudhakar --- Hi, due to lack of hardware I only compile tested this code. I am looking forward to your comments. Regards, Christian board/davinci/da8xxevm/da850evm.c | 14 +++--- 1 file changed, 3 insertions

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

2013-06-05 Thread Christian Riesch
-by: Christian Riesch 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 --- board/omicron/calimain/calimain.c

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.at> > you wrote: > > Currently eth_random_enetaddr() seeds the r

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

2013-01-08 Thread Christian Riesch
uninitialized SRAM of the AM1808 SoC. Regards, Christian Cc: Tom Rini Cc: Joe Hershberger Cc: Michael Walle Christian Riesch (2): net: Remove call of srand from eth_random_enetaddr() calimain: Generate random MAC address for factory tests board/buffalo/lsxl/lsxl.c |1 + board

[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 Cc: Michael Walle Cc: Joe Hershberger --- board/buffalo

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

2013-01-08 Thread Christian Riesch
Signed-off-by: Christian Riesch --- 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/calimain/calimain.c index

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 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 locally buil

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 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 fw_env_main.c:42: >

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

2012-09-17 Thread Christian Riesch
On Mon, Sep 17, 2012 at 10:30 AM, José Miguel Gonçalves wrote: > On 09/17/2012 07:47 AM, Christian Riesch wrote: >> >> Hi, >> >> On Sun, Sep 16, 2012 at 11:27 AM, José Miguel Gonçalves >> wrote: >>> >>> On 09/14/2012 08:08 PM, Tom Rini wrote:

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 wrote: > On 09/17/2012 07:28 AM, Christian Riesch wrote: >> >> Hi, >> >> On Sun, Sep 16, 2012 at 5:36 PM, Marek Vasut wrote: >>> >>> Dear José Miguel Gonçalves, >>> >>>>

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

2012-09-16 Thread Christian Riesch
Hi, On Sun, Sep 16, 2012 at 11:27 AM, José Miguel Gonçalves 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 U-Boot conca

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

2012-09-16 Thread Christian Riesch
Hi, On Sun, Sep 16, 2012 at 5:36 PM, Marek Vasut 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

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

2012-08-28 Thread Christian Riesch
s as well as how to write > a recovery image. > > Signed-off-by: Tom Rini > --- > 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 m

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

2012-08-27 Thread Christian Riesch
covery image. > > Signed-off-by: Tom Rini Acked-by: Christian Riesch 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 m

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 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. > > Signed-off-by

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

2012-08-23 Thread Christian Riesch
covery image. > > Signed-off-by: Tom Rini > --- > 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) >

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

2012-08-23 Thread Christian Riesch
1808 experimenter's kit, works fine now :-) Thanks! Christian > - Fix checkpatch.pl warning > - Fix thinko, Nand -> SPI (spotted by Prabhakar Lad) > - Make u-boot.ais use u-boot.img not u-boot.bin, now that it uses > - Make use of board_init_f being a weak function now so that we c

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 > > > > wrote: > >> Hi

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 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 tested the pat

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 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 wrote: >>> Ad

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 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 > --- > > board/davinci/da8xxevm/README.da850_am18xxe

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 wrote: > - Convert the non-relocatio

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

2012-08-20 Thread Christian Riesch
fan Roese > Cc: Heiko Schocher > Cc: Valentin Longchamp > Cc: Christian Riesch > Cc: Manfred Rudigier > Cc: Mike Frysinger > Cc: Rob Herring > Cc: Reinhard Meyer > Tested-by: Valentin Longchamp > Tested-by: Christian Riesch I tested it again on the calimain bo

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

2012-08-13 Thread Christian Riesch
e > > Cc: Heiko Schocher > > Cc: Valentin Longchamp > > Cc: Christian Riesch > > Cc: Manfred Rudigier > > Cc: Mike Frysinger > > Cc: Rob Herring > > Cc: Reinhard Meyer > > Tested-by: Valentin Longchamp > > > Tested-by: Christian Riesch >

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 >> wrote: >> >>> >>> [cc'd Prabhakar Lad

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 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 U-Boot shell command t

Re: [U-Boot] Issue with running commands

2012-07-02 Thread Christian Riesch
Hi Sughosh, On Mon, Jul 2, 2012 at 9:24 PM, Sughosh Ganu 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 this is caused

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

2012-06-28 Thread Christian Riesch
t;> Ganu(urwithsugh...@gmail.com) and V3 version of the patch 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

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

2012-06-21 Thread Christian Riesch
are sent in a series as these > patches need to be applied in the order they are sent. > I tested the entire patchset on the AM1808 experimenter's kit (da850evm configuration booting from SPI flash with SPL) and on the calimain board, there is no regression due to your patchset. Tes

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

2012-06-21 Thread Christian Riesch
a, Sudhakar > Signed-off-by: Hadli, Manjunath Acked-by: Christian Riesch Regards, Christian > --- >  Chnages for v3: >  1: Creted new patch by splitting patch 6 of v2, to make >    it more readable. > >  arch/arm/cpu/arm926ejs/davinci/spl.c |   15 +-- >  

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 wrote: > From: Rajashekhara, Sudhakar > > 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 work, but NOR > flash will. When GP

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

2012-06-21 Thread Christian Riesch
ONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) Please fix the checkpatch warning here (no spaces at start of line). Otherwise: Acked-by: Christian Riesch Tested-by: Christian Riesch Regards, Christian > >  #if defined(CONFIG_APTIX) >        /* /13 mode so Aptix 6MHz can hit 115200

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 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 Your patch causes a few checkpatch warnings, s

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

2012-06-21 Thread Christian Riesch
s(+), 7 deletions(-) Acked-by: Christian Riesch For the calimain board Tested-by: Christian Riesch Regards, Christian ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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 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 La

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 > > > > --- > arch/arm/cpu/arm926ejs/davinci/Makefile |5 ++ > arch/arm/cpu/arm926ejs/davinci/spl.c | 91 > +++--- > arch/arm/cpu/arm926ejs/davinci/spl_mmc.

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 > > > 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 will > do the low level initial

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 wrote: > From: Rajashekhara, Sudhakar > > 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 > initialization takes more time an

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 wrote: > From: Lad, Prabhakar > > This patch adds support for NAND SPL on DA850/OMAP-L138. > > Signed-off-by: Lad, Prabhakar > Signed-off-by: Rajashekhara, Sudhakar > Signed-off-by: Hadli, Manjunath > --- >  arch/arm/cpu/arm926ejs/davinci/spl.

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 wrote: > From: Rajashekhara, Sudhakar > > 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 was found out that, driving GP2[6] lo

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 wrote: > From: Lad, Prabhakar > > This patch adds support for MMC/SD on DA850/OMAP-L138. > > Signed-off-by: Lad, Prabhakar > Signed-off-by: Rajashekhara, Sudhakar > Signed-off-by: Hadli, Manjunath > --- >  arch/arm/cpu/arm926ejs/davinci/da850_

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

2012-06-04 Thread Christian Riesch
Tested-by: Christian Riesch Thanks, Christian > > Signed-off-by: Stefan Roese > Cc: Heiko Schocher > Cc: Valentin Longchamp > Cc: Christian Riesch > Cc: Manfred Rudigier > Cc: Mike Frysinger > Cc: Rob Herring > Cc: Reinhard Meyer > --- > v2: > - Added C

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

2012-06-04 Thread Christian Riesch
ic bootcount driver >> > is now usable not only by powerpc platforms, but others as well. >> > >> > Signed-off-by: Stefan Roese >> > Cc: Heiko Schocher >> > Cc: Valentin Longchamp >> > Cc: Christian Riesch >> > Cc: Manfred Rudigier

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 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 already moved

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

2012-03-26 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Heiko Schocher Cc: Tom Rini --- 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/enbw_cmc.c b/board/enbw/enbw_cmc/enbw_cmc.c index

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 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 > arch/arm/cpu/arm926ejs/davinci/libdavinci

[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 wrote: > >> On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: >> > We have an omap l138 based board without jtag and empty spi fla

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 wrote: > Hi, > > On Thu, Mar 1, 2012 at 9:48 PM, Albert ARIBAUD > wrote: >> Le 01/03/2012 14:23, Fabio Estevam a écrit : >> >>> Hi, >>> >>> Currently CONFIG_ARCH_CPU_INIT is used to sel

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 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 CONFIG_ARCH_CPU_I

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 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 >> wrote: > > > >> &g

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 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 >> wrote: >> > hi Simon, >> > >> > On Mon Feb 20, 2012 at 05:32:49PM -0800, Simon Glass wrote:

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 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, with caches enab

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 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 spi flash manufactured

[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 Cc: Tom Rini Cc: Sergey Kubushyn Acked-by

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

2012-02-02 Thread Christian Riesch
README.hawkboard to reflect the same. Signed-off-by: Sughosh Ganu Signed-off-by: Heiko Schocher Cc: Heiko Schocher Cc: Christian Riesch Cc: Sudhakar Rajashekhara Cc: Tom Rini Acked-by: Christian Riesch --- arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c| 24 ++- arch/arm/cpu/arm926ejs

[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 Reported-by

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

2012-02-02 Thread Christian Riesch
the board configurations that need low level initialization. Signed-off-by: Christian Riesch Cc: Albert Aribaud Cc: Tom Rini Cc: Heiko Schocher Acked-by: Heiko Schocher Tested-by: Heiko Schocher --- arch/arm/cpu/arm926ejs/start.S |6 -- include/configs/cam_enc_4xx.h |6 -- inclu

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

2012-02-02 Thread Christian Riesch
flushed instead. Also fix the comments to match code. Signed-off-by: Sughosh Ganu Rebased and corrected commit message. Signed-off-by: Christian Riesch Cc: Albert Aribaud Cc: Tom Rini Acked-by: Heiko Schocher Tested-by: Heiko Schocher --- arch/arm/cpu/arm926ejs/start.S | 12

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

2012-02-02 Thread Christian Riesch
duced 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 o

[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 Cc: Albert Aribaud Cc: Tom Rini Acked-by: Heiko Schocher Tested-by: Heiko Schocher --- 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/arm926ejs/start.S

[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 --- MAINTAINERS |5 + board/omicron

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 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 cl

[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 wrote: > From: Matt Porter > > 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 a > YMODEM transfer v

[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 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 other hand, is

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 wrote: > On Sun, Jan 29, 2012 at 6:36 AM, Christian Riesch > wrote: > >> 3) As Sughosh pointed out, the current code changes the V bit >> (location of exceptions). Sughosh's patch removes this code that does >> th

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

2012-01-31 Thread Christian Riesch
README.hawkboard to reflect the same. Signed-off-by: Sughosh Ganu Signed-off-by: Heiko Schocher Cc: Heiko Schocher Cc: Christian Riesch Cc: Sudhakar Rajashekhara Cc: Tom Rini Acked-by: Christian Riesch --- arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c| 24 ++- arch/arm/cpu/arm926ejs

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

2012-01-31 Thread Christian Riesch
the board configurations that need low level initialization. Signed-off-by: Christian Riesch Cc: Albert Aribaud Cc: Tom Rini Cc: Heiko Schocher --- arch/arm/cpu/arm926ejs/start.S |6 -- include/configs/cam_enc_4xx.h |6 -- include/configs/da850evm.h |1 - include/configs/

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

2012-01-31 Thread Christian Riesch
flushed instead. Also fix the comments to match code. Signed-off-by: Sughosh Ganu Rebased and corrected commit message. Signed-off-by: Christian Riesch Cc: Albert Aribaud Cc: Tom Rini --- arch/arm/cpu/arm926ejs/start.S | 12 1 files changed, 8 insertions(+), 4 deletions

[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 --- MAINTAINERS |5 + board/omicron

[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 Cc: Tom Rini Cc: Sergey Kubushyn --- arch

[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 Reported-by: Sughosh Ganu Cc: Albert Aribaud Cc: Tom Rini --- arch/arm/cpu/arm926ejs/start.S |5 - 1 files changed, 4 insertions(+), 1 deletions

[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 Cc: Albert Aribaud Cc: Tom Rini --- 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/arm926ejs/start.S index b350480..829065f 100644 --- a/arch/arm/cpu

[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 Ries

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 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 o

[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 wrote: > Hello Christian, > > Christian Riesch wrote: >> Hi all, >> >> On Fri, Jan 27, 2012 at 7:33 PM, Tom Rini wrote: >>> So, what do we want to do here? We really want to get this fix in so >>> we

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 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 code we have in

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 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 September, right? S

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 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 architecture? This i

  1   2   3   4   >