Re: [U-Boot] CUSTODIANS: Urgent boarding call for flight 2009.03

2009-03-16 Thread Heiko Schocher
Hello Wolfgang, Wolfgang Denk wrote: > Hi Custodians (and everybody else), > > can you please check if all urgent patches have been added to the > U-Boot master branch? > > If anything should still be missing, please respond *now*. > I miss the following patchseries: http://lists.denx.de/pipe

Re: [U-Boot] U-boot and JFFS2

2009-03-16 Thread Nishanth Menon
Pillai, Manikandan said the following on 03/17/2009 06:41 AM: > with u-boot as far as I can see but on the other hand the clean markers > are also supposed to be in the same location. > Why do you say that? ooblayout free is used if I am not wrong to store cleanmarkers. have you compared the lay

Re: [U-Boot] U-boot and JFFS2

2009-03-16 Thread Pillai, Manikandan
Hi, offset 0 and 1 in a x16 large page micron device is reserved for badblock marker - u-boot is checking the correct location and if those locations dont have 0xff, it is noted as bad blocks - This is no issue with u-boot as far as I can see but on the other hand the clean markers are also suppos

Re: [U-Boot] [PATCH 1/1] The GP timer is fixed for 1msec and CONFIG_SYS_HZ to 1000.

2009-03-16 Thread Pillai, Manikandan
Pls find my comments inlined. > -Original Message- > From: Dirk Behme [mailto:dirk.be...@googlemail.com] > Sent: Tuesday, March 17, 2009 12:15 AM > To: Pillai, Manikandan > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH 1/1] The GP timer is fixed for 1msec and CONFIG_SYS_HZ to > 1000. > >

Re: [U-Boot] Mirror to github

2009-03-16 Thread Jon Smirl
On Mon, Mar 16, 2009 at 9:44 PM, Jerry Van Baren wrote: > Jon Smirl wrote: >> >> Six people have various modifications to u-boot hosted on github. >> These projects aren't linked to each other. >> >> I just talked to the github people. To fix this the main u-boot repo >> needs to be pushing a clon

Re: [U-Boot] Mirror to github

2009-03-16 Thread Jerry Van Baren
Jon Smirl wrote: > Six people have various modifications to u-boot hosted on github. > These projects aren't linked to each other. > > I just talked to the github people. To fix this the main u-boot repo > needs to be pushing a clone of itself to github. This is free to do, > just make a git hub a

[U-Boot] CUSTODIANS: Urgent boarding call for flight 2009.03

2009-03-16 Thread Wolfgang Denk
Hi Custodians (and everybody else), can you please check if all urgent patches have been added to the U-Boot master branch? If anything should still be missing, please respond *now*. My intention is to push out the 2009.03 release on schedule, i. e. on Saturday, March 21, 2009. At the moment I

[U-Boot] [U-Boot-Users] Using UBoot with VxWorks

2009-03-16 Thread Antonio Mira
Hi Leonid,Did you have to modify the vxWorks 6.3 ppc440epx vxworks elf image to be able to boot with bootvx? I have exactly the same scenario (vxWorks 6.3 + u-boot 1.2.0) and the execution hangs at: ## Starting vxWorks at 0x1 ... Thanks, Antonio __

Re: [U-Boot] how do you build u-boot under Windows XP SP2

2009-03-16 Thread Wolfgang Denk
Dear David Hawkins, In message <49bebbd8.1080...@ovro.caltech.edu> you wrote: > > Before all the negative emails fly in regarding how foolish > you are to develop under windows ... :) > > Have you tried CoLinux? > > http://www.colinux.org/ > > Its a port of Linux that runs as a windows process

[U-Boot] [PATCH 5/5] NetStar: update crcit utility

2009-03-16 Thread Ladislav Michl
Make crc32 function to match its prototype. Use more meaningful identifiers. Signed-off-by: Ladislav Michl diff --git a/board/netstar/crcit.c b/board/netstar/crcit.c index ce98e20..e0cea9b 100644 --- a/board/netstar/crcit.c +++ b/board/netstar/crcit.c @@ -31,11 +31,11 @@ #include #include "cr

[U-Boot] [PATCH 4/5] NetStar: add RTC support

2009-03-16 Thread Ladislav Michl
Add RTC support. Signed-off-by: Ladislav Michl --- a/include/configs/netstar.h 2009-03-16 15:42:01.0 +0100 +++ b/include/configs/netstar.h 2009-03-16 15:43:33.0 +0100 @@ -110,6 +110,14 @@ #define CONFIG_SYS_NAND_BASE 0x0400 + (2 << 23) #define NAND_ALLOW_ERASE_ALL

[U-Boot] [PATCH 3/5] NetStar: use generic flash driver

2009-03-16 Thread Ladislav Michl
Use generic flash driver. Signed-off-by: Ladislav Michl --- a/include/configs/netstar.h 2009-03-16 15:27:19.0 +0100 +++ b/include/configs/netstar.h 2009-03-16 15:28:18.0 +0100 @@ -59,16 +59,6 @@ #define PHYS_SDRAM_1_SIZE (64 * 1024 * 1024) #define PHYS_FLASH_1 0x

[U-Boot] [PATCH 2/5] NetStar: Fix NAND

2009-03-16 Thread Ladislav Michl
Fix NAND support broken during new NAND code merge. Move those few lines of code to board/netstar/netstar.c Signed-off-by: Ladislav Michl diff --git a/board/netstar/Makefile b/board/netstar/Makefile index 8d911b8..0d163fd 100644 --- a/board/netstar/Makefile +++ b/board/netstar/Makefile @@ -28,7

[U-Boot] [PATCH 1/5] NetStar: config reindentation

2009-03-16 Thread Ladislav Michl
Fix indentation broken by symbol renames. "Sort" driver related definitons. Signed-off-by: Ladislav Michl diff --git a/include/configs/netstar.h b/include/configs/netstar.h index 2c90265..0b578e8 100644 --- a/include/configs/netstar.h +++ b/include/configs/netstar.h @@ -64,12 +64,12 @@ */ #de

Re: [U-Boot] [PATCH] Update board NetStar

2009-03-16 Thread Ladislav Michl
On Fri, Mar 13, 2009 at 02:31:39PM +0100, Ladislav Michl wrote: > following patch brings board NetStar back into shape. After some private conversation with Jean-Christophe this patch splits into following serie. Many thanks to Jean-Christophe for suggestions. _

Re: [U-Boot] how do you build u-boot under Windows XP SP2

2009-03-16 Thread David Hawkins
> I've tried building u-boot 1.3.3 under cygwin and the make fails. > Can anyone help? > > I need to build under Windows. Before all the negative emails fly in regarding how foolish you are to develop under windows ... :) Have you tried CoLinux? http://www.colinux.org/ Its a port of Linux tha

[U-Boot] how do you build u-boot under Windows XP SP2

2009-03-16 Thread cmfairfa
I've tried building u-boot 1.3.3 under cygwin and the make fails. Can anyone help? I need to build under Windows. Thanks. Christopher M. Fairfax Sr. Software Engineer Rockwell Collins +1 540-428-3344 +1 540-428-3301 cmfai...@rockwellcollins.com This message contains PRIVILEGED AND PROPRIETARY

Re: [U-Boot] [PATCH] Make nboot skip bad blocks

2009-03-16 Thread Wolfgang Denk
Dear Scott, In message <20090316151552.ga4...@localhost.localdomain> Ladislav Michl wrote: > On Sun, Mar 15, 2009 at 05:59:28PM -0400, Mike Frysinger wrote: > > On Friday 13 March 2009 09:38:19 Ladislav Michl wrote: > > > nboot command currently does not skip bad blocks and gives read error when >

[U-Boot] Mirror to github

2009-03-16 Thread Jon Smirl
Six people have various modifications to u-boot hosted on github. These projects aren't linked to each other. I just talked to the github people. To fix this the main u-boot repo needs to be pushing a clone of itself to github. This is free to do, just make a git hub account and then set your repo

[U-Boot] [PATCH] OMAP3: Update Overo pin mux for new expansion board

2009-03-16 Thread Dirk Behme
A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and switches. This patch changes the pinmux configuration for those pins. They were previously set up for unused MMC3_DAT4-7. Signed-off-by: Steve Sakoman --- Patch is against recent mainline commit 'b3dd629e78870ba2dc9f8032978721

Re: [U-Boot] [PATCH 1/1] The GP timer is fixed for 1msec and CONFIG_SYS_HZ to 1000.

2009-03-16 Thread Dirk Behme
Dear Mani, some comments below. I will have a look to this soon. Maybe I will come with a patch then, too. Manikandan Pillai wrote: > The header files for other OAMP3 boards have also been changed > for CONFIG_SYS_HZ to be 1000. > > Signed-off-by: Manikandan Pillai > --- > cpu/arm_cortexa8/o

[U-Boot] subscribe

2009-03-16 Thread Tim Whalen
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] Make nboot skip bad blocks

2009-03-16 Thread Ladislav Michl
On Sun, Mar 15, 2009 at 05:59:28PM -0400, Mike Frysinger wrote: > On Friday 13 March 2009 09:38:19 Ladislav Michl wrote: > > nboot command currently does not skip bad blocks and gives read error when > > loading image stored over bad block. With patch applied, nboot works as > > expected: > > iirc

Re: [U-Boot] LXT972 issue on MPC8247: tx error

2009-03-16 Thread Jerry Van Baren
Hi Sauce.Cheng, Sauce.Cheng wrote: > my code run on the board reveal the info as following: > > Board: Motorola MPC8272ADS > DRAM: 32 MB > FLASH: 512 kB > In:serial > Out: serial > Err: serial > Net: FCC1 ETHERNET > bb_miiphy_write() > Hit any key to stop autoboot: 0 > => > > after

Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-16 Thread Scott McNutt
> diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/spi_flash.c > index d1d81af..fa97896 100644 > --- a/drivers/mtd/spi/spi_flash.c > +++ b/drivers/mtd/spi/spi_flash.c > @@ -1,6 +1,8 @@ > /* > * SPI flash interface > + * Add support for Freescale eSPI controller > * > + * Copyright (C

Re: [U-Boot] U-boot and JFFS2

2009-03-16 Thread Nishanth Menon
Pillai, Manikandan said the following on 03/16/2009 01:41 PM: > The cleanmarkers are being written in location 0x0 and 0x1 of the OOB space > And they are the problem since when u-boot comes up it does a scan and decided > That since these OOB locations do not contain 0xff, the blocks are bad. >

Re: [U-Boot] U-boot and JFFS2

2009-03-16 Thread Pillai, Manikandan
Hi, The cleanmarkers are being written in location 0x0 and 0x1 of the OOB space And they are the problem since when u-boot comes up it does a scan and decided That since these OOB locations do not contain 0xff, the blocks are bad. Regards Manikandan > -Original Message- > From: Nishanth

Re: [U-Boot] U-boot and JFFS2

2009-03-16 Thread Nishanth Menon
Pillai, Manikandan said the following on 03/16/2009 01:35 PM: > Hi, > > On the OMAP3 EVM board, I have four partition on my Onenand flash of which > /dev/mtd4 is a JFFS2 partition. > > After booting up linux, I use the following command to mount the jffs2 empty > partition. > > Linux#> mount -t j

[U-Boot] U-boot and JFFS2

2009-03-16 Thread Pillai, Manikandan
Hi, On the OMAP3 EVM board, I have four partition on my Onenand flash of which /dev/mtd4 is a JFFS2 partition. After booting up linux, I use the following command to mount the jffs2 empty partition. Linux#> mount -t jffs2 /dev/mtdblock4 /mnt Then I do a reboot . When u-boot boots up it gives

Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-16 Thread Mike Frysinger
On Monday 16 March 2009 04:56:22 Hu Mingkai-B21284 wrote: > From: Mike Frysinger [mailto:vap...@gentoo.org] > > On Monday 16 March 2009 02:15:27 Jean-Christophe wrote: > > > On 10:52 Mon 16 Mar , Mingkai Hu wrote: > > > > Add eSPI controller support under the SPI framework. > > > > > > > > Sign

Re: [U-Boot] [PATCH] ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration

2009-03-16 Thread Matthias Fuchs
Thanks Stefan! Acked-off-by: Matthias Fuchs On Thursday 12 March 2009 08:22, Stefan Roese wrote: > This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with > the DDR2 configuration to only use one CS (rank). As this code is most > likely copied from the original Sequoia version,

Re: [U-Boot] [PATCH 7/7] Save the env variables to SDcard and SPI flash for MPC8536DS

2009-03-16 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1237171943-11938-7-git-send-email-mingkai...@freescale.com> you wrote: > MPC8536DS offer booting from SDcard or SPI flash. When after > booting from SD card/SPI flash, the environment variables can > to be saved on it, so this patch should be used together with > the

Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-16 Thread Hu Mingkai-B21284
> -Original Message- > From: Mike Frysinger [mailto:vap...@gentoo.org] > Sent: Monday, March 16, 2009 3:28 PM > To: u-boot@lists.denx.de > Cc: Jean-Christophe PLAGNIOL-VILLARD; Hu Mingkai-B21284; > Fleming Andy-AFLEMING > Subject: Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller supp

Re: [U-Boot] [PATCH 5/7] Make a special uboot used for booting from SDcard or SPI flash

2009-03-16 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1237171943-11938-5-git-send-email-mingkai...@freescale.com> you wrote: > This patch is used to generate a special version u-boot, > together with the data structure on the SDcard/SPI flash, > can be used to booting from SDcard/SPI flash on 8536DS board. > > The boot

[U-Boot] LXT972 issue on MPC8247: tx error

2009-03-16 Thread Sauce.Cheng
my code run on the board reveal the info as following: Board: Motorola MPC8272ADS DRAM: 32 MB FLASH: 512 kB In:serial Out: serial Err: serial Net: FCC1 ETHERNET bb_miiphy_write() Hit any key to stop autoboot: 0 => after i enter words like "ping 192.168.0.100",show something like thi

Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-16 Thread Mike Frysinger
On Monday 16 March 2009 02:15:27 Jean-Christophe PLAGNIOL-VILLARD wrote: > On 10:52 Mon 16 Mar , Mingkai Hu wrote: > > Add eSPI controller support under the SPI framework. > > > > Signed-off-by: Mingkai Hu > > --- > > drivers/mtd/spi/spi_flash.c | 94 +- > > drivers/spi/Make

Re: [U-Boot] [PATCH 6/7] Add support for save the env to SDcard

2009-03-16 Thread Mike Frysinger
On Sunday 15 March 2009 22:52:22 Mingkai Hu wrote: > When after booting from SDcard, the environment variables can to > be saved on it, this patch add the operation support. so your board treats the SD storage as a raw block ? you cant actually put a filesystem on it or what ? considering SD ca