Re: [U-Boot] [PATCH] powerpc: change 86xx SMP boot method

2008-10-31 Thread Liu Dave-R63238
> +/* > + * Copy the code for other cpus to execute into an > + * aligned location accessible via BPTR > + */ > +void setup_mp(void) > +{ > + extern ulong __secondary_start_page; > + ulong fixup = (ulong)&__secondary_start_page; > + u32 bootpg; > + u32 bootpg_va; > + > + /* > +

Re: [U-Boot] [PATCH 09/10] 85xx: Add eSDHC support for 8536 DS

2008-10-31 Thread Liu Dave-R63238
> +int board_early_init_f (void) > +{ > + volatile u32 *pmuxcr = (u32 *)(CONFIG_SYS_IMMR + 0xe0060); > + u32 val; > + > + val = *pmuxcr; > + val |= 0x6000; > + *pmuxcr = val; > + > + return 0; > +} > + Andy, How about using the in/out_be32 for this? Thanks, Dave __

Re: [U-Boot] [PATCH 08/10] 83xx: Add eSDHC support on 8379 EMDS board

2008-10-31 Thread Liu Dave-R63238
> diff --git a/board/freescale/mpc837xemds/mpc837xemds.c > b/board/freescale/mpc837xemds/mpc837xemds.c > index acf8ada..57747be 100644 > --- a/board/freescale/mpc837xemds/mpc837xemds.c > +++ b/board/freescale/mpc837xemds/mpc837xemds.c > @@ -22,6 +22,7 @@ > > int board_early_init_f(void) > { >

Re: [U-Boot] [PATCH 07/10] Add support for the Freescale eSDHC found on8379 and 8536 SoCs

2008-10-31 Thread Liu Dave-R63238
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Fleming > Andy-AFLEMING > Sent: Friday, October 31, 2008 6:36 AM > To: [EMAIL PROTECTED] > Cc: u-boot@lists.denx.de; Fleming Andy-AFLEMING > Subject: [U-Boot] [PATCH 07/10] Add support for the Freescal

Re: [U-Boot] [PATCH] powerpc: change 86xx SMP boot method

2008-10-31 Thread Becky Bruce
FYI, This is dependent on the previous set of patches I sent to the list earlier this evening, which aren't numbered, because they were all independent It also needs testing on sbc8641d - I don't have a board. Cheers, Becky On Oct 31, 2008, at 10:33 PM, Becky Bruce wrote: > We put th

Re: [U-Boot] [PATCH 06/10] Add MMC Framework

2008-10-31 Thread Liu Dave-R63238
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Fleming > Andy-AFLEMING > Sent: Friday, October 31, 2008 6:36 AM > To: [EMAIL PROTECTED] > Cc: u-boot@lists.denx.de; Fleming Andy-AFLEMING > Subject: [U-Boot] [PATCH 06/10] Add MMC Framework > > Here'

[U-Boot] [PATCH] powerpc: change 86xx SMP boot method

2008-10-31 Thread Becky Bruce
We put the bootpg for the secondary cpus into memory and use BPTR to get to it. This is a step towards converting to the ePAPR boot methodology. Also, the code is written to deal properly with more than 4GB of RAM. Signed-off-by: Becky Bruce <[EMAIL PROTECTED]> --- cpu/mpc86xx/Makefile

Re: [U-Boot] [PATCH] [UBI] UBI command support v3

2008-10-31 Thread Kyungmin Park
Hi, On Sat, Nov 1, 2008 at 1:19 AM, Magnus Lilja <[EMAIL PROTECTED]> wrote: > 2008/10/28 Kyungmin Park <[EMAIL PROTECTED]>: >> It supports basic operation such as create, remove, read, and write. >> >> Signed-off-by: Kyungmin Park <[EMAIL PROTECTED]> > > Would it be possible to have the U-boot env

Re: [U-Boot] [PATCH/RFC] Some speed improvements to U-Boot JFFS2 code

2008-10-31 Thread Ilya Yanok
Hello Michael, Michael Lawnick wrote: > I have put these patches to our board (MPC8548, NOR Flash, MTD partition > size 48MB). > > a) performance has improved (execution time of 'ls' reduced from ~16s to > ~1.5s) > Sounds good. That is what we were expecting. > b) there is a bug in the patch

[U-Boot] Building u-boot for the AT91RM9200-EK circa 2008

2008-10-31 Thread Pink Boy
Hi, first post here. vis: Building u-boot for the AT91RM9200-EK circa 2008 Is this still possible all things considered? It appears that this board is left behind in a backwater sometime around 2006. Problem is I need to compile a new version of u-boot for my new board based on the AT91RM9200

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Ron Madrid
> Please restrict your line length to some 70 characters. Thanks. I've been trying to take your previous advice and hit Enter every now and then, but I forgot to do so before I sent off the last email. > It should be just a single patch, unless you break it into locally > idenpendent parts,

Re: [U-Boot] [patch 1/1] Remove linking to libgcc while compiling U-boot

2008-10-31 Thread Wolfgang Denk
Dear Remy, In message <[EMAIL PROTECTED]> you wrote: > Currently U-boot is linking against libgcc. This should not be needed because And where would the GCC compiler gets its builtin functions from, then? > the compiler toolchain is usually compiled with a certain OS interface in > mind, > and

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Wolfgang Denk
Dear Ron Madrid, In message <[EMAIL PROTECTED]> you wrote: > > I have previously read the information at the link suggested. In my mind I > felt that the Makefile on the top level and the MAKEALL and the MAINTAINERS > files would be suitable for putting together into one patch (which is what I

Re: [U-Boot] [PATCH] Add "memenv" command, to set environment from a memory area

2008-10-31 Thread Alessandro Rubini
> Doesn't this more or less duplicate the function of the "autoscr" > command? After checking the source, it addresses the same needs. While I looked hard, I didn't find this feature. After I wrote it for a client and later found another client did it by himself, I posted it to the list on Jul 4

Re: [U-Boot] [PATCH] drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.

2008-10-31 Thread Ben Warren
Hi Richard, Richard Retanubun wrote: > Richard Retanubun wrote: > > Hi Ben, > > I forgot to cc you on the patch e-mail, when you got a chance, do you > mind looking at this patch. > I'll have a look this weekend. If it applies cleanly I'll pull it in. As mentioned during the 4xx discussion, ke

Re: [U-Boot] [PATCH v2 5/9] ColdFire: Add mii driver in drivers/net

2008-10-31 Thread Ben Warren
Hi TsiChung, Liew Tsi Chung wrote: > Ben, > > Any status about this patch that you will apply to the net > repository? If not, this patch will go into ColdFire repository. If this > patch does not apply, most of the CF platform's Fec will not work or > possible compile errors. > > Than

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Ron Madrid
> > So, I should put the patch for the top level files such as Makefile and > > MAKEALL as the last of a series of patches? That makes sense. > i > No, you should make all that belongs together one patch. > > Please see http://www.denx.de/wiki/U-Boot/Patches > I have previously read the inform

Re: [U-Boot] [patch 1/1] Remove linking to libgcc while compiling U-boot

2008-10-31 Thread Scott Wood
On Fri, Oct 31, 2008 at 11:37:33PM +0100, Remy Bohmer wrote: > Currently U-boot is linking against libgcc. This should not be needed > because the compiler toolchain is usually compiled with a certain OS > interface in mind, and can even be configured for GNU-EABI interfaces. > This can cause linki

Re: [U-Boot] [PATCH 1/3] Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC

2008-10-31 Thread Ben Warren
Hi Stefan, Stefan Roese wrote: > Hi Ben, > > On Thursday 30 October 2008, Ben Warren wrote: > >> All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG >> > > Looks good, thanks for all this work. > > Unfortunately it doesn't apply to my current u-boot-ppc4xx/master branch:

[U-Boot] [patch 1/1] Remove linking to libgcc while compiling U-boot

2008-10-31 Thread Remy Bohmer
Currently U-boot is linking against libgcc. This should not be needed because the compiler toolchain is usually compiled with a certain OS interface in mind, and can even be configured for GNU-EABI interfaces. This can cause linking conflicts in U-boot when linking to libgcc. It usually becomes re

[U-Boot] [patch 0/1] [Experimental] U-boot linking against libgcc

2008-10-31 Thread Remy Bohmer
Related to the discussion we had earlier today about linking to libgcc I have here a experimental patch that removes the linking to libgcc. I called it experimental because I am not able to test if all architectures still compile properly, and as such it needs more (build)testing before integratin

Re: [U-Boot] [PATCH] Add "memenv" command, to set environment from a memory area

2008-10-31 Thread Wolfgang Denk
Dear Alessandro, In message <[EMAIL PROTECTED]> you wrote: > > This command reads a memory area (up to a specified length) and > assigns the content to an environment variable. Any newlines are turned > into semicolons, and any hash is makes all the rest of the line to be turned > into spaces. D

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Wolfgang Denk
Dear Ron Madrid, In message <[EMAIL PROTECTED]> you wrote: > > So, I should put the patch for the top level files such as Makefile and > MAKEALL as the last of a series of patches? That makes sense. i No, you should make all that belongs together one patch. Please see http://www.denx.de/wiki/U-

[U-Boot] [PATCH] Add "memenv" command, to set environment from a memory area

2008-10-31 Thread Alessandro Rubini
From: Alessandro Rubini <[EMAIL PROTECTED]> This command reads a memory area (up to a specified length) and assigns the content to an environment variable. Any newlines are turned into semicolons, and any hash is makes all the rest of the line to be turned into spaces. The command is meant to al

[U-Boot] [PATCH] lib_ppc: Move trap_init to occur earlier

2008-10-31 Thread Becky Bruce
Doing trap_init immediately once we're running from RAM means we're no longer dependent on the physical location of the flash on non-BookE platforms. Before trap_init, those platforms switch to real mode and go to 0xfff00100 on exception. After the switch, they go to 0x0100 This makes it easie

[U-Boot] [PATCH] powerpc 86xx: Handle CCSR relocation earlier

2008-10-31 Thread Becky Bruce
Currently, the CCSR gets relocated while translation is enabled, meaning we need 2 BAT translations to get to both the old location and the new location. Also, the DEFAULT CCSR location has a dependency on the BAT that maps the FLASH region. Moving the relocation removes this unnecessary dependen

[U-Boot] [PATCH] mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build

2008-10-31 Thread Becky Bruce
You can't actually have both, and with some coming changes to change the memory map for the board and support 36-bit physical, we need the extra BAT that is being consumed by having both. I also make non-PCI configs build cleanly, for the sake of sanity. Signed-off-by: Becky Bruce <[EMAIL PROTECT

[U-Boot] [PATCH] mpc8641: Stop supporting non-PCI_PNP configs

2008-10-31 Thread Becky Bruce
We don't actually ever do this, remove the code so we can stop maintaining it. Signed-off-by: Becky Bruce <[EMAIL PROTECTED]> --- board/freescale/mpc8641hpcn/mpc8641hpcn.c | 22 +- include/configs/MPC8641HPCN.h |6 -- 2 files changed, 1 insertions(+), 27

[U-Boot] [PATCH] 8641HPCN: Config file cleanup

2008-10-31 Thread Becky Bruce
There are several items in the config file that were hardcoded but that should really be based on other config options, since the regions are contiguous and depend on being so. This cleans that up a bit. Also, add BR_PHYS_ADDR() macro to convert addresses into the proper format for BR registers.

[U-Boot] [PATCH] 86xx: Make dram_size a phys_size_t

2008-10-31 Thread Becky Bruce
It's currently a long and should be phys_size_t. Signed-off-by: Becky Bruce <[EMAIL PROTECTED]> --- board/freescale/mpc8610hpcd/mpc8610hpcd.c |6 +++--- board/freescale/mpc8641hpcn/mpc8641hpcn.c |6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/freescale/mpc8

Re: [U-Boot] [PATCH] JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.

2008-10-31 Thread Scott Wood
Alessandro Rubini wrote: >> Reported-by: > > I didn't find a policy for "Reported-by:" or other tags besides > Signed-off-by: and Acked-by: . Mine are surely wronh in the patch I sent. > Any pointer for us to get a culture? I don't think it's anything as official as those other two; just a way

[U-Boot] Pull request: nand flash

2008-10-31 Thread Scott Wood
One more patch got added to the previous pull request. The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX) are available in the git repository at: git://git.denx

Re: [U-Boot] [PATCH] Allow Nand and OneNand to coexist

2008-10-31 Thread Scott Wood
On Fri, Oct 31, 2008 at 10:33:21PM +0100, Alessandro Rubini wrote: > Subject: [PATCH] Allow Nand and OneNand to coexist > > This removes in nand.h code that is verbatim duplicated from bbm.h, > including directly bbm.h in nand.h. The previous state of affairs > prevented compiling code for a board

Re: [U-Boot] [PATCH] JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.

2008-10-31 Thread Alessandro Rubini
> Eliminate compiler error when both NAND and OneNAND are enabled. Thanks. I've done it differently this morning (without warning), but yours is better. I adopted your suggestion and submitted the patch to nand.h, it works for me (although I'm still missing the two drivers for the board). > Rep

[U-Boot] [PATCH] Allow Nand and OneNand to coexist

2008-10-31 Thread Alessandro Rubini
Subject: [PATCH] Allow Nand and OneNand to coexist This removes in nand.h code that is verbatim duplicated from bbm.h, including directly bbm.h in nand.h. The previous state of affairs prevented compiling code for a board hosting both Nand and OneNand chips. Reported-by: Scott Wood <[EMAIL PROTEC

[U-Boot] Pull request: nand flash

2008-10-31 Thread Scott Wood
The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX) are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git master Haiying Wang (1):

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Ron Madrid
> > > please reorder patchseries or, even better, resubmit as one single > > > patch so as to not break git bisecting. > > > > I don't understand this. Could you elaborate? > > people doing a "git bisect run" on, e.g. MAKEALL 83xx would > inadvertently run into an error because your 1/4 patch (c

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Kim Phillips
On Fri, 31 Oct 2008 13:30:22 -0700 (PDT) Ron Madrid <[EMAIL PROTECTED]> wrote: > I used git format-patch, but I did not use git send-email. I am looking into > that right now. > I didn't realize that the web email client would create such problems. And > as this is all patch submission is one

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Ron Madrid
I used git format-patch, but I did not use git send-email. I am looking into that right now. I didn't realize that the web email client would create such problems. And as this is all that I currently have access to, I am looking into using the git tools to submit the patch. > please reorder

Re: [U-Boot] [PATCH 2/4] New board support: README and board config file

2008-10-31 Thread Kim Phillips
On Fri, 31 Oct 2008 11:26:16 -0700 (PDT) Ron Madrid <[EMAIL PROTECTED]> wrote: > +#define CONFIG_ETHADDR00:E0:0C:00:95:01 > + > +#define CONFIG_IPADDR10.196.31.84 > +#define CONFIG_SERVERIP10.196.31.85 > +#define CONFIG_GATEWAYIP10.196.31.255 we don't hardcode these ty

Re: [U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Kim Phillips
On Fri, 31 Oct 2008 11:17:32 -0700 (PDT) Ron Madrid <[EMAIL PROTECTED]> wrote: > This is a patch containing changes to files on the top level for a new board > SIMPC8313. please reorder patchseries or, even better, resubmit as one single patch so as to not break git bisecting. > Signed off by:

Re: [U-Boot] [PATCH] Fix typo in cpu/mpc85xx/cpu.c

2008-10-31 Thread Andy Fleming
On Fri, Oct 31, 2008 at 12:22 AM, Ben Warren <[EMAIL PROTECTED]> wrote: > CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC > > Signed-off-by: Ben Warren <[EMAIL PROTECTED]> Applied, thanks Andy ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/m

Re: [U-Boot] [patch] U-Boot Firetux board support

2008-10-31 Thread Peter Tyser
Hi Jürgen, > If you have any comments please email to me. You should add an entry to the MAINTAINERS file for the Firetux. Best, Peter ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.

2008-10-31 Thread Scott Wood
Reported-by: Alessandro Rubini <[EMAIL PROTECTED]> Signed-off-by: Scott Wood <[EMAIL PROTECTED]> --- Applied to u-boot-nand-flash fs/jffs2/jffs2_1pass.c | 12 +--- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index 017726

Re: [U-Boot] onenand and nand together

2008-10-31 Thread Scott Wood
On Thu, Oct 30, 2008 at 08:55:22AM +0100, Alessandro Rubini wrote: > Unfortunately, jffs2 code in head complains if both CONFIG_CMD_NAND > and CONFIG_CMD_ONENAND are defined. > > This trivial one-liner seems to fix one of the problems (although it > introduces a warning if neither one is defined),

Re: [U-Boot] [PATCH 3/4] New board support: board dir tree files

2008-10-31 Thread Scott Wood
Ron Madrid wrote: > +int board_early_init_f(void) > +{ > +volatile immap_t *im = (immap_t *)CFG_IMMR; > + > +if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) > +gd->flags |= GD_FLG_SILENT; > + > +return 0; > +} You include this bit of suspend/resume support from mpc8313erdb, but not the

Re: [U-Boot] [PATCH 4/4] New board support: nand_spl specific files

2008-10-31 Thread Scott Wood
On Fri, Oct 31, 2008 at 11:21:09AM -0700, Ron Madrid wrote: > This is a patch containing all board specific files for the nand_spl > directory tree for the support of booting from NAND. > > Signed off by: Ron Madrid <[EMAIL PROTECTED]> Patch is whitespace-mangled; TABs seem to have been replaced

[U-Boot] [PATCH 2/4] New board support: README and board config file

2008-10-31 Thread Ron Madrid
This is a patch containing a README file and also the main board include file (include/configs). Signed off by: Ron Madrid <[EMAIL PROTECTED]> diff --git a/doc/README.simpc8313 b/doc/README.simpc8313 new file mode 100644 index 000..c2bac55 --- /dev/null +++ b/doc/README.simpc8313 @@ -0,0 +1,

[U-Boot] [PATCH 3/4] New board support: board dir tree files

2008-10-31 Thread Ron Madrid
This is a patch containing all board specific files for the board directory tree. Signed off by: Ron Madrid <[EMAIL PROTECTED]> diff --git a/board/sheldon/simpc8313/Makefile b/board/sheldon/simpc8313/Makefile new file mode 100644 index 000..7c34c5e --- /dev/null +++ b/board/sheldon/simpc8313

Re: [U-Boot] [PATCH 1/2] NAND: Fix CONFIG_ENV_ADDR for MPC8572DS

2008-10-31 Thread Scott Wood
On Fri, Oct 31, 2008 at 05:06:14AM -0500, Kumar Gala wrote: > From: Haiying Wang <[EMAIL PROTECTED]> > > CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE). > > Signed-off-by: Haiying Wang <[EMAIL PROTECTED]> > Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> Applied 1-2 to

[U-Boot] [PATCH 4/4] New board support: nand_spl specific files

2008-10-31 Thread Ron Madrid
This is a patch containing all board specific files for the nand_spl directory tree for the support of booting from NAND. Signed off by: Ron Madrid <[EMAIL PROTECTED]> diff --git a/nand_spl/board/sheldon/simpc8313/Makefile b/nand_spl/board/sheldon/simpc8313/Makefile new file mode 100644 index 0

[U-Boot] [PATCH 1/4] New Board support: Makefile MAKEALL, etc

2008-10-31 Thread Ron Madrid
This is a patch containing changes to files on the top level for a new board SIMPC8313. Signed off by: Ron Madrid <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 750e374..f844ef4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -259,6 +259,10 @@ Jon Loeliger <[EMAIL PROTECTED]>

Re: [U-Boot] [patch] U-Boot Firetux board support

2008-10-31 Thread Scott Wood
On Fri, Oct 31, 2008 at 03:30:33PM +0100, Juergen Schoew wrote: > +#ifdef CONFIG_CMD_NAND > +void firetux_nandflash_init(void) > +{ > + /* Hardware configuration */ > + /* setup GPIOB18 / FMP40 to GPIO input with internal pullup */ > + /* clear bits */ > + *(vu_long *)(PNX8181_SCON_

[U-Boot] [PATCH] ppc: Fix compile warnings when !CONFIG_OF_LIBFDT

2008-10-31 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- lib_ppc/bootm.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c index fce4eff..18eb54f 100644 --- a/lib_ppc/bootm.c +++ b/lib_ppc/bootm.c @@ -224,12 +224,13 @@ static int boot_bd_t_lin

Re: [U-Boot] [PATCH] dataflash: fix a problem with the last partition

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:05 Fri 31 Oct , Wolfgang Denk wrote: > Dear Scott Wood, > > In message <[EMAIL PROTECTED]> you wrote: > > > > > I tend to use a broad view summarizing all types of flash based > > > storage devices (NAND, OneNAND, Dataflash, etc.). As such, I would > > > see this on Scott's desk

Re: [U-Boot] [PATCH] [UBI] UBI command support v3

2008-10-31 Thread Magnus Lilja
2008/10/28 Kyungmin Park <[EMAIL PROTECTED]>: > It supports basic operation such as create, remove, read, and write. > > Signed-off-by: Kyungmin Park <[EMAIL PROTECTED]> Would it be possible to have the U-boot environment in the part of the flash managed by UBI? I suppose it involves creating a U-

Re: [U-Boot] U-boot support for Non Console board

2008-10-31 Thread Ira Snyder
On Fri, Oct 31, 2008 at 01:25:14PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 08:06 Fri 31 Oct , Jerry Van Baren wrote: > > Wolfgang Denk wrote: > > > Dear rajeev s, > > > > > > In message <[EMAIL PROTECTED]> you wrote: > > >> We have a custom board based on coldfire (MCF5484) Simila

[U-Boot] [PATCH] lcd: Let the board code show board-specific info cleanup

2008-10-31 Thread Peter Tyser
Allow tqm8xx.c to cleanly compile when CONFIG_LCD_INFO is defined and remove unneeded version.h from lcd.c Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- I noticed this when adding timestamp.h to tqm8xx.c. The "Update U-Boot's build timestamp on every compile" patch should be applied first. I

Re: [U-Boot] [PATCH] dataflash: fix a problem with the last partition

2008-10-31 Thread Wolfgang Denk
Dear Scott Wood, In message <[EMAIL PROTECTED]> you wrote: > > > I tend to use a broad view summarizing all types of flash based > > storage devices (NAND, OneNAND, Dataflash, etc.). As such, I would > > see this on Scott's desk... > > I barely have enough time to keep up with NAND, I kn

Re: [U-Boot] [PATCH] dataflash: fix a problem with the last partition

2008-10-31 Thread Scott Wood
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c index 201e518..43746e7 100644 --- a/drivers/mtd/dataflash.c +++ b/drivers/mtd/dataflash.c >>> Who is supposed to handle this one? >>> >>> Stefan is it

Re: [U-Boot] [PATCH] CFI Driver: fix "flash not ready" problem

2008-10-31 Thread T Ziomek
On Fri, Oct 31, 2008 at 01:12:28AM +0100, Wolfgang Denk wrote: > From: Wolfgang Denk <[EMAIL PROTECTED]> . . . > This patch implements a simple, but somewhat ugly solution, as it > avoids the use of flash_read64() in this critical place (by breaking > it down manually into 32 bit read operations)

Re: [U-Boot] sequoia_config build failure?

2008-10-31 Thread Wolfgang Denk
Dear Kumar, In message <[EMAIL PROTECTED]> you wrote: > When I try building the sequoia_config I get: > > ld: .bss section too big, overlaps .ppcenv section. Please update your > confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and TEXT_BASE may need > to be modified. > ld: .bss section too bi

Re: [U-Boot] [PATCH v2] ADS5121 NAND driver

2008-10-31 Thread Scott Wood
On Wed, Oct 29, 2008 at 05:37:52PM -0600, John Rigby wrote: > Scott, thanks for your feedback. I can easily fix most of the issues. > > The one question I have is if this can go in only supporting 5121 rev2. > If I need to add rev1 support it will take more time than I have right now. If rev1

[U-Boot] [PATCH v4] Update U-Boot's build timestamp on every compile

2008-10-31 Thread Peter Tyser
Use the GNU 'date' command to auto-generate a new U-Boot timestamp on every compile. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- Changes since v1: * Split up U_BOOT_DATE define (date and time) into U_BOOT_DATE (day, month, year) and U_BOOT_TIME (time of day) defines * Updated all archit

Re: [U-Boot] 4xx warnings on cmd_elf.c

2008-10-31 Thread Stefan Roese
On Friday 31 October 2008, Kumar Gala wrote: > So when I build a 4xx config I see: > > cmd_elf.c: In function 'do_bootvx': > cmd_elf.c:173: warning: array subscript is below array bounds > cmd_elf.c:176: warning: array subscript is below array bounds > cmd_elf.c:181: warning: array subscript is bel

Re: [U-Boot] sequoia_config build failure?

2008-10-31 Thread Kumar Gala
On Oct 31, 2008, at 10:00 AM, Stefan Roese wrote: > Hi Kumar, > > On Friday 31 October 2008, Kumar Gala wrote: >> When I try building the sequoia_config I get: >> >> ld: .bss section too big, overlaps .ppcenv section. Please update >> your >> confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and

[U-Boot] sequoia_config build failure?

2008-10-31 Thread Kumar Gala
When I try building the sequoia_config I get: ld: .bss section too big, overlaps .ppcenv section. Please update your confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and TEXT_BASE may need to be modified. ld: .bss section too big, overlaps .ppcenv section. Please update your confguration: CFG

Re: [U-Boot] sequoia_config build failure?

2008-10-31 Thread Stefan Roese
Hi Kumar, On Friday 31 October 2008, Kumar Gala wrote: > When I try building the sequoia_config I get: > > ld: .bss section too big, overlaps .ppcenv section. Please update your > confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and TEXT_BASE may need > to be modified. > ld: .bss section too big, o

[U-Boot] 4xx warnings on cmd_elf.c

2008-10-31 Thread Kumar Gala
So when I build a 4xx config I see: cmd_elf.c: In function 'do_bootvx': cmd_elf.c:173: warning: array subscript is below array bounds cmd_elf.c:176: warning: array subscript is below array bounds cmd_elf.c:181: warning: array subscript is below array bounds sprintf (build_buf, "i

[U-Boot] Pull request: u-boot-sh

2008-10-31 Thread Nobuhiro Iwamatsu
Dear Wolfgang, Please pull u-boot-sh master branch. Best regards, Nobuhiro The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX) are available in the git repositor

Re: [U-Boot] saveenv problems

2008-10-31 Thread Georg Schardt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dear Wolfgang > You may see a problem similar to mine (patch just went into the CFI > repo). > > What exactly is your flash configuration? Bus width? Which > flash chips? How can the bus be read? I mean, for example if you > use 2 x 16 bit devi

Re: [U-Boot] Pull request u-boot-blackfin.git

2008-10-31 Thread Mike Frysinger
On Thu, Oct 23, 2008 at 5:12 AM, Mike Frysinger wrote: > 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-blackfin

Re: [U-Boot] [PATCH PPC_4xx V3] Print simple row of dots instead of spinning wheel

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:06 Fri 31 Oct , Stefan Roese wrote: > Hi Wolfgang, > > On Friday 31 October 2008, Wolfgang Denk wrote: > > > > It is my understanding that a rework of this code is under way which > > > > will avoid the long delay for the standard boot sequence (and only > > > > need it for board bri

Re: [U-Boot] U-boot support for Non Console board

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:06 Fri 31 Oct , Jerry Van Baren wrote: > Wolfgang Denk wrote: > > Dear rajeev s, > > > > In message <[EMAIL PROTECTED]> you wrote: > >> We have a custom board based on coldfire (MCF5484) Similar to MCF5484 > >> Kitlite > >> The board runs Coldfire as PCI agent , 64MB of SDRAM, 4 MB of B

Re: [U-Boot] [PATCH PPC_4xx V3] Print simple row of dots instead of spinning wheel

2008-10-31 Thread Stefan Roese
Hi Wolfgang, On Friday 31 October 2008, Wolfgang Denk wrote: > > > It is my understanding that a rework of this code is under way which > > > will avoid the long delay for the standard boot sequence (and only > > > need it for board bringup or intentional recalibration). > > > > Are you talk

Re: [U-Boot] U-boot support for Non Console board

2008-10-31 Thread Jerry Van Baren
Wolfgang Denk wrote: > Dear rajeev s, > > In message <[EMAIL PROTECTED]> you wrote: >> We have a custom board based on coldfire (MCF5484) Similar to MCF5484 Kitlite >> The board runs Coldfire as PCI agent , 64MB of SDRAM, 4 MB of Bootflash and >> the PCI bus as a slave (no serial >> port->no cons

[U-Boot] [PATCH V2] FPGA: move fpga drivers to drivers/fpga

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- add forgeted Makefile Makefile |1 + common/Makefile | 11 -- {common => drivers/fpga}/ACEX1K.c|0 drivers/fpga/Makefile| 58 +++

Re: [U-Boot] saveenv problems

2008-10-31 Thread Wolfgang Denk
Dear Georg, In message <[EMAIL PROTECTED]> you wrote: > > i have a strange problem with the saveenv command, or maybe with my > config :) > > After booting a fresh compiled u-boot with the default environment i > can save the env without any problems. U-boot unprotect, erase and > write the fla

Re: [U-Boot] U-boot support for Non Console board

2008-10-31 Thread Wolfgang Denk
Dear rajeev s, In message <[EMAIL PROTECTED]> you wrote: > > We have a custom board based on coldfire (MCF5484) Similar to MCF5484 Kitlite > The board runs Coldfire as PCI agent , 64MB of SDRAM, 4 MB of Bootflash and > the PCI bus as a slave (no serial > port->no console) > I can flash U-boot us

Re: [U-Boot] [PATCH PPC_4xx V3] Print simple row of dots instead of spinning wheel

2008-10-31 Thread Wolfgang Denk
Dear Stefan Roese, In message <[EMAIL PROTECTED]> you wrote: > > > It is my understanding that a rework of this code is under way which > > will avoid the long delay for the standard boot sequence (and only > > need it for board bringup or intentional recalibration). > > Are you talking ab

Re: [U-Boot] [PATCH] dataflash: fix a problem wi th the last partition

2008-10-31 Thread Wolfgang Denk
Dear Stefan Roese, In message <[EMAIL PROTECTED]> you wrote: > > > > diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c > > > index 201e518..43746e7 100644 > > > --- a/drivers/mtd/dataflash.c > > > +++ b/drivers/mtd/dataflash.c > > > > Who is supposed to handle this one? > > > > Stefan

[U-Boot] [PATCH 1/1] common/Makefile: create others group for non core, environment and command files

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- common/Makefile |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/common/Makefile b/common/Makefile index 14042e6..8b7eac3 100644 --- a/common/Makefile +++ b/common/Makefile @@ -42,7 +42,7 @@ COBJS

[U-Boot] [PATCH 1/1] FPGA: move fpga drivers to drivers/fpga

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- Makefile |1 + common/Makefile | 11 --- {common => drivers/fpga}/ACEX1K.c|0 {common => drivers/fpga}/altera.c|0 {common => drivers/fpga}/cyclo

[U-Boot] saveenv problems

2008-10-31 Thread Georg Schardt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, i have a strange problem with the saveenv command, or maybe with my config :) After booting a fresh compiled u-boot with the default environment i can save the env without any problems. U-boot unprotect, erase and write the flash. but after add

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

2008-10-31 Thread Stefan Roese
The following changes since commit d685b74c64a38849f1a129b3ab846fbf67dd937e: Dave Liu (1): 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache are available in the git repository at: git://www.denx.de/git/u-boot-cfi-flash.git master Wolfgang Denk (1): CFI Dr

Re: [U-Boot] question: U-boot linking against libgcc

2008-10-31 Thread Remy Bohmer
Hello Wolfgang, >> At least for the u-boot-application-examples I had to remove it >> already, because there were linking conflicts with libgcc, so there is >> an overlap. > libgcc conflicting with itself? Sounds like a toolchain configuration > issue to me. Nope, U-boot provides itself already s

Re: [U-Boot] [PATCH] CFI Driver: fix "flash not ready" problem

2008-10-31 Thread Stefan Roese
On Friday 31 October 2008, Wolfgang Denk wrote: > From: Wolfgang Denk <[EMAIL PROTECTED]> Applied to cfi/master. Thanks. Best regards, Stefan = DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Mun

[U-Boot] U-boot support for Non Console board

2008-10-31 Thread rajeev s
Hi , We have a custom board based on coldfire (MCF5484) Similar to MCF5484 Kitlite The board runs Coldfire as PCI agent , 64MB of SDRAM, 4 MB of Bootflash and the PCI bus as a slave (no serial port->no console) I can flash U-boot using the JTAG . Can you let know how can i pass the Commands ov

Re: [U-Boot] [PATCH 1/3] Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC

2008-10-31 Thread Stefan Roese
Hi Ben, On Thursday 30 October 2008, Ben Warren wrote: > All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG Looks good, thanks for all this work. Unfortunately it doesn't apply to my current u-boot-ppc4xx/master branch: [EMAIL PROTECTED] u-boot-ppc4xx (master)]$ git am -3 -s

[U-Boot] [PATCH 2/2] NAND: Add NAND support for MPC8536DS board

2008-10-31 Thread Kumar Gala
From: Jason Jin <[EMAIL PROTECTED]> This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa0 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file. It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image. Singed-off-by: Jason Jin <[EMAIL PROTECTED]> S

[U-Boot] [PATCH 1/2] NAND: Fix CONFIG_ENV_ADDR for MPC8572DS

2008-10-31 Thread Kumar Gala
From: Haiying Wang <[EMAIL PROTECTED]> CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE). Signed-off-by: Haiying Wang <[EMAIL PROTECTED]> Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- include/configs/MPC8572DS.h |2 +- 1 files changed, 1 insertions(+), 1 deletion

Re: [U-Boot] [PATCH] Add WinCE image load/boot cmd

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:43 Fri 22 Aug , Ryan CHEN wrote: > The patch is to add support functions which load and boot WinCE image. > It introduces one new CMD macro named 'CONFIG_CMD_WINCE'. > The source codes have tested on STLS board. > > Signed-off-by: Ryan Chen <[EMAIL PROTECTED]> > > --- > common/Makefile

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

2008-10-31 Thread Stefan Roese
The following changes since commit d685b74c64a38849f1a129b3ab846fbf67dd937e: Dave Liu (1): 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Matthias Fuchs (6): ppc4xx:

[U-Boot] [PATCH] ppc4xx: Fix spelling error in MAINTAINERS file

2008-10-31 Thread Stefan Roese
Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- MAINTAINERS |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 260c3e6..a7f9b87 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -319,8 +319,8 @@ Ricardo Ribalda <[EMAIL PROTECTED]>

Re: [U-Boot] [PATCH 1/6] ppc4xx: Handle other board variant in PMC440 FPGA code

2008-10-31 Thread Stefan Roese
Hi Matthias, On Tuesday 28 October 2008, Matthias Fuchs wrote: > > Sorry, but with this status I can't add those patches to my 4xx/master > > branch. Please fix those problem and resubmit. > > I will resend my patch series rebased to top of git in a couple of minutes. Applied all 6 patches to 4xx

Re: [U-Boot] [PATCH] ppc4xx: merge xilinx-ppc440 and xilinx-ppc405 cfg

2008-10-31 Thread Stefan Roese
On Monday 27 October 2008, Ricardo Ribalda Delgado wrote: > Xilinx ppc440 and ppc405 have many similarities. This patch merge the > config files of both infrastuctures > > Signed-off-by: Ricardo Ribalda Delgado <[EMAIL PROTECTED]> Applied to 4xx/master. Thanks. Best regards, Stefan =

Re: [U-Boot] Can't connect to PHY, BCM5461

2008-10-31 Thread Simon Boman
2008/10/31 Simon Boman <[EMAIL PROTECTED]>: > 2008/10/29 Jerry Van Baren <[EMAIL PROTECTED]>: >> Simon Boman wrote: >>> >>> I added this code to the uec.c file: >>>int i; >>>for(i=0;i<20;i++) >>> printf("PHY value %d is %x\n", i, phy_read(uec->mii_info, i)); >>> >>> and go

Re: [U-Boot] [PATCH PPC_4xx V3] Print simple row of dots instead of spinning wheel

2008-10-31 Thread Stefan Roese
Hi Wolfgang, On Friday 31 October 2008, Wolfgang Denk wrote: > Of course the end result looks better. There is no doubt about that. > But it has disadvantages, too. With the row of dots you can easily > see how long you've been waiting - this visualizes variations in > timing behaviour

Re: [U-Boot] [PATCH] Olimex SAM9-L9260 board support

2008-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:48 Fri 31 Oct , Wolfgang Denk wrote: > Dear Cristian > > In message <[EMAIL PROTECTED]> Jean-Christophe wrote: > > > > I've forget one think please add an entry to the MAINTAINER file > > This can be done by sending an additional patch - no need to resubmit > all the stuff. Yes but the

Re: [U-Boot] [PATCH] dataflash: fix a problem wi th the last partition

2008-10-31 Thread Stefan Roese
On Tuesday 28 October 2008, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 16:41 Mon 27 Oct , Ilko Iliev wrote: > > This patch fix the problem that only the [NB_DATAFLASH_AREA -1] dataflash > > partition can be defined to use the area to the end of dataflash size. > > Now it is possible to have o

  1   2   >