Re: [U-Boot] [PATCH] Custom AFEB9260 board support

2008-10-24 Thread Jean-Christophe PLAGNIOL-VILLARD
On 02:29 Fri 15 Aug , Sergey Lapin wrote: > This patch provides support for AFEB9260 board, a product of > OpenSource hardware and software. Some commertial projects > are made with this design. A board is basically AT91SAM9260-EK > with some modifications and different peripherals and differen

Re: [U-Boot] Splash Screen

2008-10-24 Thread Schmid Alexander
Hello, Dear Alexander, In message <[EMAIL PROTECTED]> you wrote: > > i have U-Boot running on MPC5200B! The U-Boot console output is on display! > Now i activated the splash sreen support, and it works! That's how itiis supposed to be :-) > But now I`m wondering, if I have a problem and have t

Re: [U-Boot] Splash Screen

2008-10-24 Thread Schmid Alexander
-Ursprüngliche Nachricht- Von: Anatolij Gustschin [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 24. Oktober 2008 11:21 An: [EMAIL PROTECTED] Cc: Wolfgang Denk; u-boot@lists.denx.de Betreff: Re: [U-Boot] Splash Screen Hello, Schmid Alexander wrote: Because when i press a key (betwe

Re: [U-Boot] [PATCH 2/3] iMX31: Add support to copy NAND Flash code to RAM

2008-10-24 Thread Alan Carvalho de Assis
Hi Guennadi, On Fri, Oct 24, 2008 at 4:57 AM, Guennadi Liakhovetski <[EMAIL PROTECTED]> wrote: > On Fri, 24 Oct 2008, Magnus Lilja wrote: > >> Where can one find developer documentation for nand_spl? > > doc/README.nand-boot-ppc440 > >> Also, is there any ARM board supporting this already? > > na

Re: [U-Boot] Splash Screen

2008-10-24 Thread Wolfgang Denk
Dear "Schmid Alexander", In message <[EMAIL PROTECTED]> you wrote: > > Schmid Alexander wrote: > > Because when i press a key (between the 3 seconds of autostart) the Umm... could you *please* use a proper quoting style? Please read http://www.netmeister.org/news/learn2quote.html > OK tha

Re: [U-Boot] [PATCH] ppc4xx: New board avnet fx12 minimodule

2008-10-24 Thread Stefan Roese
Georg, On Wednesday 22 October 2008, Georg Schardt wrote: > thx for your comments, i will pay attention on the right patch format > the next time. It is my first project I send patches to and until now, > git is not my best friend. Do you plan to send an updated patch version soon? Best regards,

Re: [U-Boot] Splash Screen

2008-10-24 Thread Anatolij Gustschin
Hello, Schmid Alexander wrote: >>> Because when i press a key (between the 3 seconds of autostart) the > splash >>> screen picture stays there, and I don`t see any console output! > >> Try typing (blind): >> >> >> setenv stdout lcd >> >> (followed by ENTER). What happens? > > When I type b

Re: [U-Boot] [PATCH] ppc4xx: New board avnet fx12 minimodule

2008-10-24 Thread Georg Schardt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry, i was very busy on my dayjob this week. I will send a new patch this evening. Georg Stefan Roese schrieb: > Georg, > > On Wednesday 22 October 2008, Georg Schardt wrote: >> thx for your comments, i will pay attention on the right patch >> fo

Re: [U-Boot] [PATCH 1/2] IOMUX: Add console multiplexing support.

2008-10-24 Thread Wolfgang Denk
Dear Gary, In message <[EMAIL PROTECTED]> you wrote: > On Sun, 14 Sep 2008 23:59:39 +0200 > Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> wrote: > > > > +#if defined(CONFIG_IO_MUX) > > > +/** Console I/O multiplexing ***/ > > > + > > > +static device

Re: [U-Boot] [PATCH] ppc4xx: New board avnet fx12 minimodule

2008-10-24 Thread Stefan Roese
On Friday 24 October 2008, Georg Schardt wrote: > Sorry, i was very busy on my dayjob this week. I will send a new patch > this evening. No need to apologize. I was just checking that I didn't miss anything. Best regards, Stefan ===

Re: [U-Boot] [PATCH] ARM: Use do_div() instead of division for "long long".

2008-10-24 Thread Jean-Christophe PLAGNIOL-VILLARD
> #include > #include > +#include > > static ulong timer_load_val; > > @@ -148,7 +149,9 @@ void reset_timer(void) > > ulong get_timer_masked(void) > { > - return get_ticks() / (timer_load_val / (100 * CFG_HZ)); > + unsigned long long res = get_ticks(); > + do_div (res, (ti

Re: [U-Boot] [PATCH] ppc4xx: Generic architecture for xilinx ppc405(v3)

2008-10-24 Thread Ricardo
Hello Stefan Since Georg patch for fx12mm needs this patch. So I have to make any change to it? Best regards -- Ricardo Ribalda http://www.eps.uam.es/~rribalda/ ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailm

[U-Boot] [PATCH v3a] ppc4xx: New board avnet fx12 minimodul

2008-10-24 Thread schardt
Signed-off-by: schardt <[EMAIL PROTECTED]> Signed-off-by: Ricardo Ribalda Delgado <[EMAIL PROTECTED]> --- This patch adds support for the avnet fx12 minimodul. It needs the "ppc4xx: Generic architecture for xilinx ppc405" patch from Ricardo. rebased to ppc4xx/master files u-boot.lds and

Re: [U-Boot] [PATCH] ARM: Use do_div() instead of division for "long long".

2008-10-24 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <[EMAIL PROTECTED]> you wrote: > ... > CFG_HZ was renamed CONFIG_SYS_HZ ... > I've start to think to re-rename it CFG_HZ as done in Linux, normaly this > value is the same for all arch & board Mind that there is a slight difference in meanin

Re: [U-Boot] xilinx_emaclite buffer overrun

2008-10-24 Thread Clive Stubbings
Michal, I don't agree, It is like that to ensure you can access it as 32bit aligned. Cheers Clive On Thu, 23 Oct 2008, Michal Simek wrote: > Hi Clive, > > yes. but I think that better will be > > static uchar etherrxbuff[PKTSIZE_ALIGN]; /* Receive buffer */ > > Regards, > Michal > > >> Hi >>

Re: [U-Boot] [PATCH 1/2] IOMUX: Add console multiplexing support.

2008-10-24 Thread Gary Jennejohn
On Fri, 24 Oct 2008 13:18:42 +0200 Wolfgang Denk <[EMAIL PROTECTED]> wrote: Dear Wolfgang, > In message <[EMAIL PROTECTED]> you wrote: > > On Sun, 14 Sep 2008 23:59:39 +0200 > > Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> wrote: > > > > > > +#if defined(CONFIG_IO_MUX) > > > > +/** Consol

Re: [U-Boot] [PATCH 01/10] pci: Allow for PCI addresses to be 64-bit

2008-10-24 Thread Wolfgang Denk
Dear Kumar Gala, In message <[EMAIL PROTECTED]> you wrote: > PCI bus is inherently 64-bit. While not all system require access to > the full 64-bit PCI address range some do. This allows those systems > to enable the full PCI address width via CONFIG_SYS_PCI_64BIT. > > Signed-off-by: Kumar Gala

Re: [U-Boot] [PATCH] Flex-OneNAND driver

2008-10-24 Thread Rohit
Hi Scott, Thanks for the comments. Scott Wood wrote: > On Mon, Sep 22, 2008 at 11:58:51AM +0530, apgmoorthy wrote: >> Hi All, >> This patch adds support for Samsung Flex-OneNAND devices. >> >> Flex-OneNAND combines SLC and MLC technologies into a single >> device. SLC area provides increased relia

Re: [U-Boot] [PATCH] ppc4xx: Generic architecture for xilinx ppc405(v3)

2008-10-24 Thread Stefan Roese
Hi Ricardo, On Friday 24 October 2008, Ricardo wrote: > Since Georg patch for fx12mm needs this patch. So I have to make > any change to it? No, I just applied it to 4xx/master. Will ask Wolfgang to pull soon. Best regards, Stefan ==

[U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-10-24 Thread Stefan Roese
The following changes since commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e: Wolfgang Denk (1): Fix strmhz(): avoid printing negative fractions are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Georg Schardt (1): ppc4xx: New board avnet fx12

Re: [U-Boot] [PATCH 1/2] 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number

2008-10-24 Thread Andy Fleming
On Oct 23, 2008, at 01:47, Kumar Gala wrote: > Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle > e500mc's 64-byte cacheline properly when it gets added. > > Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> Grabbed this one and the e500mc one, thanks Andy _

Re: [U-Boot] [U-Boot-Users] [PATCH] ads5121: support for running from memory

2008-10-24 Thread Nikita V. Youshchenko
> Could you rebase it against current HEAD? Sure. Here it is. From ba2fc48842d6f866e30f52f457a4c834431e1167 Mon Sep 17 00:00:00 2001 From: Nikita V. Youshchenko <[EMAIL PROTECTED]> Date: Tue, 2 Sep 2008 07:51:05 +0400 Subject: [PATCH] ads5121: support for running from RAM This patch makes it pos

Re: [U-Boot] [PATCH] 85xx: remove unused config definition

2008-10-24 Thread Andy Fleming
On Oct 23, 2008, at 08:17, Dave Liu wrote: > Signed-off-by: Dave Liu <[EMAIL PROTECTED]> Applied, thanks Andy ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] 85xx: Fix the incorrect register used for DDR erratum1

2008-10-24 Thread Andy Fleming
On Oct 23, 2008, at 08:18, Dave Liu wrote: > The 8572 DDR erratum1: > DDR controller may enter an illegal state when operating > in 32-bit bus mode with 4-beat bursts. > > Description: > When operating with a 32-bit bus, it is recommended that > DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories a

[U-Boot] [PATCH] NAND: sync with 2.6.27

2008-10-24 Thread Scott Wood
This brings the core NAND code up to date with the Linux kernel. Since there were several drivers in Linux as of the last update that are not in u-boot, I'm not bringing over new drivers that have been added since in the absence of an interested party. I did not update OneNAND since it was recent

[U-Boot] [PATCH] NAND: Reset chip on power-up

2008-10-24 Thread Scott Wood
From: Karl Beldan <[EMAIL PROTECTED]> Some chips require a RESET after power-up (e.g. Micron MT29FxGx). The first command sent is NAND_CMD_READID. Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id. Tested with an MT29F4G08AAC. Signed-off-by: Karl Beldan <[EMAIL PROTECTED]

[U-Boot] Please pull u-boot-mpc85xx.git

2008-10-24 Thread Andy Fleming
are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master Dave Liu (2): 85xx: remove unused config definition 85xx: Fix the incorrect register used for DDR erratum1 Kumar Gala (12): 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number

Re: [U-Boot] [PATCH 00/10] 85xx/85xx pci cleanup

2008-10-24 Thread Andy Fleming
And thus have I done so. 1-10 applied, thanks Andy ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-10-24 Thread Andy Fleming
On Thu, Oct 23, 2008 at 5:23 PM, Peter Tyser <[EMAIL PROTECTED]> wrote: > Initial support for Extreme Engineering Solutions XPedite5370 - > a MPC8572-based 3U VPX single board computer with a PMC/XMC > site. > > Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> > --- > MAINTAINERS

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-10-24 Thread Peter Tyser
> > board/xes/common/fsl_8572_clk.c | 51 +++ > > board/xes/common/fsl_85xx_ddr.c | 93 ++ > > board/xes/common/fsl_85xx_pci.c | 287 + > > > Could you take a look at the new PCI code Kumar submitted (which I > just applied), and rework the board code to imit

[U-Boot] [PATCH] ppc4xx: Correctly configure the GPIO pin muxing on Arches

2008-10-24 Thread Stefan Roese
Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO pin multiplexing correctly Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- include/configs/canyonlands.h | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/include/configs/canyonlands.h b/inclu