[U-Boot] Write to JFFS2 filesystem

2008-12-18 Thread Jayakrishnan M
Hi all, I am using u-boot 1.3.3 on a TQM885D board. Is u-boot able to write to JFFS2 file system? I was able to read a file from JFFS2 file system in flash. But I couldn't find write support for JFFS2. Is this possible from u-boot? Thanks, Jayakrishnan

Re: [U-Boot] DHCP/BOOP command behavior

2008-12-18 Thread Pawel Pastuszak
Make sure to set your autostart environment variable to no example: setenv autostart no saveenv On Thu, Dec 18, 2008 at 7:09 PM, Brian S. Park wrote: > Hi all, > I'm migrating from u-boot 1.0.0 to 1.3.4 and noticed that the behavior > of bootp/dhcp command has changed. > In 1.0.0, bootp/dhcp w

[U-Boot] DHCP/BOOP command behavior

2008-12-18 Thread Brian S. Park
Hi all, I'm migrating from u-boot 1.0.0 to 1.3.4 and noticed that the behavior of bootp/dhcp command has changed. In 1.0.0, bootp/dhcp would just get IP setting. But in 1.3.4, they try to download the boot image using tftp after acquiring the ip from the dhcp server. How can I make it behave the

Re: [U-Boot] [PATCH 1/1] ppc4xx: Autocalibration can set RDCC to over aggressive value.

2008-12-18 Thread Wolfgang Denk
Dear Adam Graham, In message <1229633739-23318-1-git-send-email-agra...@amcc.com> you wrote: > The criteria of the AMCC SDRAM Controller DDR autocalibration U-Boot code is > to pick the largest passing write/read/compare window that also has the > smallest SDRAM_RDCC.[RDSS] Read Sample Cycle Sel

Re: [U-Boot] [PATCH V3] SH7750/51: add register BCR3, BCR4, PCR, RTCOR, RTCNT, RTCSR, SDMR2, SDMR3 and fix BCR2 support

2008-12-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:47 Thu 18 Dec , Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- Sorry send to the wrong ML Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-bo

Re: [U-Boot] What shall u-boot do before passing 'root=/dev/ram0' to kernel?

2008-12-18 Thread Wolfgang Denk
Dear "mike xu", In message <7103aeea0812181017j19966d84y22528f8728d5...@mail.gmail.com> you wrote: > > Do you know that what u-boot shall do after passing 'root=/dev/ram0' > to kernel? How kernel locates /dev/ram0? U-Boot starts the Linux kernel. How the Linux kernel receives it's paramete

[U-Boot] [PATCH V3] SH7750/51: add register BCR3, BCR4, PCR, RTCOR, RTCNT, RTCSR, SDMR2, SDMR3 and fix BCR2 support

2008-12-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Since V2: As disscuss with Paul Mundt Just bail out with a bogus access. Trying to access bcr3 or bcr4 or non R revision is not something an address error exception woulbe generated for Best Regards, J. hw/sh7750.c| 52 +++

Re: [U-Boot] u-boot didn't mount ramdisk ...

2008-12-18 Thread Wolfgang Denk
Dear Mike, In message <7103aeea0812180831y258494c4obe34e934f8745...@mail.gmail.com> you wrote: > > You are correct, U-Boot does not load the RAMdisk image since the > image is already stored in NOR flash memory. Sorry for my > carelessness... > Below is the kernel start log, Could you please tak

[U-Boot] [PATCH 1/1] ppc4xx: Autocalibration can set RDCC to over aggressive value.

2008-12-18 Thread Adam Graham
The criteria of the AMCC SDRAM Controller DDR autocalibration U-Boot code is to pick the largest passing write/read/compare window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample Cycle Select value. On some Kilauea boards the DDR autocalibration algorithm can find a large passing write

Re: [U-Boot] [RFC] nand boot for 85xx

2008-12-18 Thread Kumar Gala
> 4K for the first stage loader. currently the first stage loader occupy > 60~70% of the 4K bootpage. > > Another issue is, could we split the relocate code from > 4xx/83xx/85xx/86xx > to on common/ppc/relocate.S? If its common I don't see why not. - k

[U-Boot] What shall u-boot do before passing 'root=/dev/ram0' to kernel?

2008-12-18 Thread mike xu
Hi All, Do you know that what u-boot shall do after passing 'root=/dev/ram0' to kernel? How kernel locates /dev/ram0? I want to use one ramdisk as my rootfs, but the kernel failed to mount the ramdisk, I set the u-boot parameter as below. setenv bootargs console=ttyS0,115200 root=/dev/ram0 ro mem

Re: [U-Boot] u-boot didn't mount ramdisk ...

2008-12-18 Thread mike xu
Hi Wolfgang, You are correct, U-Boot does not load the RAMdisk image since the image is already stored in NOR flash memory. Sorry for my carelessness... Below is the kernel start log, Could you please take a look into it and give my any suggestions? I have the below kernel options enabled, and tri

[U-Boot] About generate big-endian ramdisk

2008-12-18 Thread mike xu
Hi, Do you know that how can I generate a big-endian cramfs ramdisk under Intel's PC? By default its in little-endian format and mkfs.cramfs has no option to change it... Because from u-boot source code file -- common/cmd_bootm.c do_bootm_linux() function, it seems pointer data (line 851) is NULL

Re: [U-Boot] [PATCH 1/6] usb : musb : Add high speed field in usb_device structure

2008-12-18 Thread michael
Abraham, Thomas wrote: > Hi Remy, > > >> -Original Message- >> From: l.ping...@gmail.com [mailto:l.ping...@gmail.com] On >> Behalf Of Remy Bohmer >> Sent: Wednesday, December 17, 2008 1:48 AM >> To: Abraham, Thomas >> >> > > > > >> Same, Michael combined slow+high into 1 singl

[U-Boot] [USB PATCH] USB change speed

2008-12-18 Thread Michael Trimarchi
USB changes the speed according to the port status Signed-off-by: Michael Trimarchi --- diff --git a/common/usb.c b/common/usb.c index 3138452..0c11746 100644 --- a/common/usb.c +++ b/common/usb.c @@ -1061,10 +1061,12 @@ static int hub_port_reset(struct usb_device *dev, int port,

Re: [U-Boot] [PATCH 1/6] usb : musb : Add high speed field in usb_device structure

2008-12-18 Thread Remy Bohmer
Hello Michael, > For mentor usb controller, it would still be necessary to record the speed of > the device when it is found connected to a hub port. So the update of > usb->speed would have to be done as below in 'usb_hub_port_connect_change' > function. Would this be acceptable? > > /* Alloc