Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:03 Thu 26 Feb , Rohit Hagargundgi wrote: Currently OneNAND initial program loader (ipl) reads only block 0. However, u-boot image for apollon board is 195KB making the board unbootable with OneNAND. Fix ipl to read 256KB. Signed-off-by: Rohit Hagargundgi h.ro...@samsung.com ---

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Wolfgang Denk
Dear Rohit Hagargundgi, In message 49a645e0.9060...@samsung.com you wrote: Currently OneNAND initial program loader (ipl) reads only block 0. However, u-boot image for apollon board is 195KB making the board unbootable with OneNAND. Fix ipl to read 256KB. What if there is a board that

Re: [U-Boot] [PATCH v2] netloop: updates for NetLoop

2009-02-26 Thread Mike Frysinger
On Thursday 26 February 2009 02:16:52 Heiko Schocher wrote: [PATCH v2] netloop: updates for NetLoop Fix some issues introduced from commit: 2f70c49e5b9813635ad73666aa30f304c7fdeda9 suggested by Mike Frysinger. - added some comment for the env_id variable in common_cmd_nvedit.c - moved some

[U-Boot] (no subject)

2009-02-26 Thread POLETTE Simon
Hi, I'm searching ways to get embedded Linux boot as fast as possible. I'm working mainly on the kernel, but I have also to search means to optimize the bootloader. so I'm looking for some leads that could make u-boot load the kernel faster. Hope you could share your knowledge with me. Thanks in

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Kyungmin Park
Hi, In the previous mail, I also solve this issue. multi-block read for IPL http://www.mail-archive.com/u-boot@lists.denx.de/msg04641.html Of course, it's not consider the Flex-OneNAND, please apply this one first and then fix it for Flex-OneNAND. How do you think? Thank you, Kyungmin Park

[U-Boot] [PATCH 1/9] Add LZO decompressor support

2009-02-26 Thread Stefan Roese
This patch adds LZO decompression support to U-Boot. It is needed for the upcoming UBIFS support, since UBIFS uses LZO as default compressor/ decompressor. Since we only support read-only in UBIFS only the decompressor is needed. All this is copied with minor changes from the current Linux kernel

[U-Boot] [PATCH 2/9] UBIFS: Implement read-only UBIFS support in U-Boot (Part 1)

2009-02-26 Thread Stefan Roese
This patchset adds UBIFS read-only support to U-Boot. The following commands are implemented: - ubifsmount Mount an UBIFS volume - ubifsls List a directory of the mounted UBIFS volume - ubifsload Load a file from the mounted UBIFS volume to memory The U-Boot UBIFS implementation is

[U-Boot] SAAT support in U-Boot ppc4xx

2009-02-26 Thread renjith kumar
Hi , I have u-boot 1.3.1 installed in a sequoia board with ppc4xxEPx. The pci command lists out normal PCI cards in the prompt. (Bridge, Multimedia etc.). But When I use a PCI-SATA card, the s/m gets hangs, most of the time. Else it will not list out the Device in the pci command. In normal

[U-Boot] [PATCH 8/9] UBIFS: Implement read-only UBIFS support in U-Boot (Part 7)

2009-02-26 Thread Stefan Roese
This patchset adds UBIFS read-only support to U-Boot. The following commands are implemented: - ubifsmount Mount an UBIFS volume - ubifsls List a directory of the mounted UBIFS volume - ubifsload Load a file from the mounted UBIFS volume to memory The U-Boot UBIFS implementation is

Re: [U-Boot] [PATCH 2/9] UBIFS: Implement read-only UBIFS support in U-Boot (Part 1)

2009-02-26 Thread Artem Bityutskiy
On Thu, 2009-02-26 at 11:48 +0100, Stefan Roese wrote: This patchset adds UBIFS read-only support to U-Boot. The following commands are implemented: - ubifsmount Mount an UBIFS volume - ubifsls List a directory of the mounted UBIFS volume - ubifsload Load a file from the

Re: [U-Boot] (no subject)

2009-02-26 Thread Wolfgang Denk
Dear POLETTE Simon, In message 51d9710ff5643747bb605f97b8de56cd0231c...@stegosaure.adetel.com you wrote: I'm searching ways to get embedded Linux boot as fast as possible. I'm working mainly on the kernel, but I have also to search means to optimize the bootloader. so I'm looking for some

Re: [U-Boot] SAAT support in U-Boot ppc4xx

2009-02-26 Thread Wolfgang Denk
Dear renjith kumar, In message a8474bd70902260249i12141802j28a1865137d98...@mail.gmail.com you wrote: I have u-boot 1.3.1 installed in a sequoia board with ppc4xxEPx. The pci command lists out normal PCI cards in the prompt. (Bridge, Multimedia etc.). But When I use a PCI-SATA card, the

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Rohit Hagargundgi
Hi, Jean-Christophe PLAGNIOL-VILLARD wrote: #define ONENAND_BLOCK_SIZE 2048 +#define ONENAND_BOOTLOADER_SIZE 0x4 why hardcoded value? Is it possible to get image size instead of hard value. Then we can read exactly u-boot image size on boot up. +/* Check

Re: [U-Boot] [PATCH 2/9] UBIFS: Implement read-only UBIFS support in U-Boot (Part 1)

2009-02-26 Thread Stefan Roese
On Thursday 26 February 2009, Artem Bityutskiy wrote: The U-Boot UBIFS implementation is largely a direct copy from the current Linux version (2.6.29-rc6). As already done in the UBI version we have an abstraction layer to redefine or remove some OS calls (e.g. mutex_lock() ...). This

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:01 Thu 26 Feb , Rohit Hagargundgi wrote: Hi, Jean-Christophe PLAGNIOL-VILLARD wrote: #define ONENAND_BLOCK_SIZE 2048 +#define ONENAND_BOOTLOADER_SIZE0x4 why hardcoded value? Is it possible to get image size instead of hard value. Then we can read

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Wolfgang Denk
Dear Rohit Hagargundgi, In message 49a68ba2.80...@samsung.com you wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: #define ONENAND_BLOCK_SIZE 2048 +#define ONENAND_BOOTLOADER_SIZE 0x4 why hardcoded value? Is it possible to get image size instead of hard

Re: [U-Boot] JFFS2 scanning bug

2009-02-26 Thread Ilya Yanok
Hi Mark, Mark Jackson wrote: I've just updated from v2008.10 to v2009.01 on my AVR32 board (MIMC200). JFFS2 no longer works (it hangs at Scanning JFFS2 FS:, so I've done a git bisect, and here's the result:- [snip] Is this a known problem ? No, I've never heard of it. Could you

Re: [U-Boot] JFFS2 scanning bug

2009-02-26 Thread Mark Jackson
On 26/02/09 14:48, Ilya Yanok wrote: Hi Mark, Mark Jackson wrote: I've just updated from v2008.10 to v2009.01 on my AVR32 board (MIMC200). JFFS2 no longer works (it hangs at Scanning JFFS2 FS:, so I've done a git bisect, and here's the result:- [snip] Is this a known problem ? No,

Re: [U-Boot] JFFS2 scanning bug

2009-02-26 Thread Ilya Yanok
Hi Mark, Don't you have JTAG debugger so you could find where exactly it hangs? Or you can try adding debugging printf's to the source... I can't reproduce your problem myself so that info would be useful. Regards, Ilya. ___ U-Boot mailing list

[U-Boot] REĀ : Reduce time to load

2009-02-26 Thread POLETTE Simon
U-boot take about 2 seconds to load the kernel. The rest of the system take about 10 seconds until I get the prompt, so it represents ~16% of total time needed to have an operational system. I agree to say that most of the work to reduce boot time have to be done on the kernel and userspace, but

Re: [U-Boot] JFFS2 scanning bug

2009-02-26 Thread Mark Jackson
On 26/02/09 15:46, Ilya Yanok wrote: Hi Mark, Don't you have JTAG debugger so you could find where exactly it hangs? Or you can try adding debugging printf's to the source... I can't reproduce your problem myself so that info would be useful. Regards, Ilya. I do have a JTAG unit, but it'll

[U-Boot] 2.0.0 RC7 MACH_TYPE_*NEW*

2009-02-26 Thread John Jeffers
For 2.0.0-rc7-00037-ge983361-dirty (a fresh git pull) one has to register a MACH_TYPE_??? for a new board with a number. This appears to have been extracted from the Linux kernel traditionally. Who is handing these out for u-boot-v2? The arm maintainer (I seriously think it is but am

[U-Boot] [PATCH] qong: changes to Dave/DENX Qong configuration

2009-02-26 Thread Ilya Yanok
1. Changes to the default environment: - bootcmd defined as run flash_self - saveenv command removed from update - uboot changed to u-boot (also in load) - addmtd variable defined (and added to all boot commands) 2. CONFIG_CMD_JFFS2 defined to enable mtdparts command 3. MTDIDS_DEFAULT and

Re: [U-Boot] [PATCH] Fix OneNAND ipl to read 256KB

2009-02-26 Thread Rohit Hagargundgi
Hi, Kyungmin Park wrote: Hi, In the previous mail, I also solve this issue. multi-block read for IPL http://www.mail-archive.com/u-boot@lists.denx.de/msg04641.html oh, okay. So this merge first. To Scott, Wolfgang - can you please apply this patch. Also environment block is affected by

Re: [U-Boot] ref:fail to include stdio.h

2009-02-26 Thread Paul Wang
Hi, Wolfgang, I am trying to port some code of xyssl to u-boot in order to do the digital signature verification. Unfortunately, xyssl uses some stdlib functions, which are related to file operations, strings, malloc and free (I worry these most). The existing SHA1 features work fine with xscale.

[U-Boot] U-Boot 1.1.6 and Marvell 88E1116 RGMII operations

2009-02-26 Thread Ray Fogg
My company is in the process of bringing up a new MPC8347-based product. A previous product utilized the same processor and a 100mbit GMII PHY and ran with U-Boot 1.1.6. The new board utilizes a Marvell 88E1116 PHY, and to keep things as simple as possible and to stay with the same Linux kernel

[U-Boot] Ethernet PHY LAN8700

2009-02-26 Thread rudresh
Hi, In Ethernet PHY LAN8700 driver having some issues, during tftp the large file of more than 2MB of the binary file , some time its hangup sometime its reset the board. same driver is working in evaluation board with same PHY interface . if i tried in customize board the problem is