Re: [U-Boot] [U-Boot-v2][PATCH] imx27: nandboot with 2k pages

2008-12-12 Thread Sascha Hauer
Hi Frederic, The patches look good in general, but unfortunately you mailer turned tabs into spaces and wrapped long lines, so the patches do not apply. Can you send them again please? one comment inline. Thanks Sascha On Thu, Dec 11, 2008 at 02:14:41PM +0100, frederic Rodo wrote:

[U-Boot] [RFC USB PATCH] USB ehci fix and test on ixp4xx hardware

2008-12-12 Thread Michael Trimarchi
EHCI fix code and ixp4xx test. USB ehci configuration parameter: #define CONFIG_CMD_USB 1 #define CONFIG_USB_STORAGE 1 #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_IXP4XX 1 #define CONFIG_EHCI_IS_TDI 1 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1 #define

Re: [U-Boot] [RFC USB PATCH] USB ehci fix and test on ixp4xx hardware

2008-12-12 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:00 Fri 12 Dec , Michael Trimarchi wrote: EHCI fix code and ixp4xx test. USB ehci configuration parameter: #define CONFIG_CMD_USB 1 #define CONFIG_USB_STORAGE 1 #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_IXP4XX 1 #define CONFIG_EHCI_IS_TDI

Re: [U-Boot] [RFC USB PATCH] USB ehci fix and test on ixp4xx hardware

2008-12-12 Thread Stefan Roese
On Friday 12 December 2008, Jean-Christophe PLAGNIOL-VILLARD wrote: On 11:00 Fri 12 Dec , Michael Trimarchi wrote: snip diff --git a/drivers/usb/usb_ehci.h b/drivers/usb/usb_ehci.h index 90b137a..9e8e7b2 100644 --- a/drivers/usb/usb_ehci.h +++ b/drivers/usb/usb_ehci.h @@ -1,5 +1,6

Re: [U-Boot] [RFC USB PATCH] USB ehci fix and test on ixp4xx?hardware

2008-12-12 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:39 Fri 12 Dec , Stefan Roese wrote: On Friday 12 December 2008, Jean-Christophe PLAGNIOL-VILLARD wrote: On 11:00 Fri 12 Dec , Michael Trimarchi wrote: snip diff --git a/drivers/usb/usb_ehci.h b/drivers/usb/usb_ehci.h index 90b137a..9e8e7b2 100644 ---

Re: [U-Boot] [RFC USB PATCH] USB ehci fix and test on ixp4xx hardware

2008-12-12 Thread michael
Hi, Jean-Christophe PLAGNIOL-VILLARD wrote: On 11:00 Fri 12 Dec , Michael Trimarchi wrote: EHCI fix code and ixp4xx test. USB ehci configuration parameter: #define CONFIG_CMD_USB 1 #define CONFIG_USB_STORAGE 1 #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_IXP4XX

[U-Boot] [RFC USB PATCH V2] USB ehci fix and test on ixp4xx hardware

2008-12-12 Thread Michael Trimarchi
EHCI fix code and ixp4xx test. USB ehci configuration parameter: #define CONFIG_CMD_USB 1 #define CONFIG_USB_STORAGE 1 #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_IXP4XX 1 #define CONFIG_EHCI_IS_TDI 1 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1 #define

[U-Boot] EHCI last patch

2008-12-12 Thread michael
Hi all, In the last ehci patch I add myself in the author of the code. I'm not sure if it possible. I change the codes and test it but I don't know if the change are sufficient. Regards Michael ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] problem doing rebase in fresh git.denx.de/u-boot.git clone

2008-12-12 Thread Peter Vollmer
Dear Wolfgang, On Thu, 11 Dec 2008 21:54:13 +0100, Wolfgang Denk w...@denx.de wrote: In message op.ul0bvrx72ro...@tomo.bln.innominate.local you wrote: What exactly do you expect this command to do? You showed us a sequence of two commands: git-clone followed by git-rebase, and complain

[U-Boot] [PATCH] part_efi: Fix partition size calculation due to inclusive ending LBA.

2008-12-12 Thread Richard Retanubun
From b24eaf52ade5e5f1e94243f727d4c0f6d0fccdf5 Mon Sep 17 00:00:00 2001 From: Richard Retanubun richardretanu...@ruggedcom.com Date: Fri, 12 Dec 2008 10:23:45 -0500 Subject: [PATCH] The ending LBA is inclusive. Hence, the partition size should be ((ending-LBA + 1) - starting-LBA) to get the

Re: [U-Boot] CFI: flash_write_cfiword() slow

2008-12-12 Thread Jens Gehrlein
Hi Wolfgang, Wolfgang Denk schrieb: Dear Jens Gehrlein, In message 490edd63.1010...@tqs.de you wrote: find_sector() loops through the sector table from the last sector to the current sector. And the more sectors the device has, the slower the algorithm becomes. And this process for every

[U-Boot] dts to dtb generation

2008-12-12 Thread Marco Antônio Possamai
Hello, all. I need to get my device-tree blob done, in order to pass it along with the image I've created (bootm command). I'm kind of new on the dtb concept and I'm not sure if I'm doing it right. Have read some stuff about it, though. What I got is that I have to generate a .dtb out of this

Re: [U-Boot] dts to dtb generation

2008-12-12 Thread Jerry Van Baren
Marco Antônio Possamai wrote: Hello, all. I need to get my device-tree blob done, in order to pass it along with the image I've created (bootm command). I'm kind of new on the dtb concept and I'm not sure if I'm doing it right. Have read some stuff about it, though. What I got is that I

Re: [U-Boot] dts to dtb generation

2008-12-12 Thread Detlev Zundel
Hi Marco, BISON dtc-parser.tab.c DEP dtc-parser.tab.c LEX dtc-lexer.lex.c make: flex: Command not found Actually, I do not know, how an error message could be more clear than that. Obviously your Linux installation is missing the GNU lexical scanner generator flex. It should be trivial

Re: [U-Boot] FSL DDR @ 83xx

2008-12-12 Thread Jon Loeliger
Andre Schwarz wrote: I don't believe anyone is currently working on getting the new ddr code to be used w/83xx. Feel free to submit patches that does this and we will review them as they are posted. - k After spending few hours it seems to work basically. This is what I've done : - add

Re: [U-Boot] FSL DDR @ 83xx

2008-12-12 Thread Jon Loeliger
Andre Schwarz wrote: I don't believe anyone is currently working on getting the new ddr code to be used w/83xx. Feel free to submit patches that does this and we will review them as they are posted. - k After spending few hours it seems to work basically. This is what I've done : - add

Re: [U-Boot] FSL DDR @ 83xx

2008-12-12 Thread Jon Loeliger
Andre Schwarz wrote: mpc83xx/spd_sdram needs some fixes to work with latest chips : 1. max_data_rate seems to be mishandled. Since it's twice the physical clock we need much higher vaues for calculating optimum caslat ... or use max_bus_clock instead. bus_clock seems to be reasonable since

Re: [U-Boot] problem doing rebase in fresh git.denx.de/u-boot.git clone

2008-12-12 Thread Wolfgang Denk
Dear Peter Vollmer, In message op.ul1xayil2ro...@tomo.bln.innominate.local you wrote: 1) Lets say this is a simplified part of the commit log after I cloned the repo and created my branch with git checkout -b bisect v2008.10 But that's wrong. You said, you patches were based on v1.3.3 -

Re: [U-Boot] FPGA programming driver architecture

2008-12-12 Thread Hugo Villeneuve
On Fri, 12 Dec 2008 15:00:47 -0500 Hugo Villeneuve h...@hugovil.com wrote: Hi, I have written some code to program a FPGA in Linux... Sorry, wrong mailing list :) Hugo V. ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH] mpc83xx: Size optimization of start.S

2008-12-12 Thread Ron Madrid
Currently there are in excess of 100 bytes located at the beginning of the image built by start.S that are not being utilized. This patch moves a few functions into this part of the image. This will create a greater number of *available* bytes that can be used by board specific code in NAND

Re: [U-Boot] FPGA programming driver architecture

2008-12-12 Thread Wolfgang Denk
Dear Hugo Villeneuve, In message 20081212150047.e3dbbbef.h...@hugovil.com you wrote: I have written some code to program a FPGA in Linux, for two different types of boards: one uses a serial interface (SPI) and the second a parallel interface. I have been able to sucessfully program both

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

2008-12-12 Thread Wolfgang Denk
Dear Stefan Roese, In message 200812091009.47977...@denx.de you wrote: The following changes since commit 13d36ec849785453953d00220b2c7dc66644a3c2: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-at91 are available in the git repository at:

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

2008-12-12 Thread Wolfgang Denk
Dear Stefan Roese, In message 200812101307.41102...@denx.de you wrote: Hi Wolfgang, this is an updated pull-request for the UBI repository. I added the latest 2 small patches. The following changes since commit 13d36ec849785453953d00220b2c7dc66644a3c2: Wolfgang Denk (1):

Re: [U-Boot] Pull request: u-boot-video

2008-12-12 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message 493eac54.9040...@denx.de you wrote: The following changes since commit 13d36ec849785453953d00220b2c7dc66644a3c2: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-at91 are available in the git repository at:

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

2008-12-12 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message 20081210232023.5dd0283d.iwama...@nigauri.org you wrote: are available in the git repository at: git://git.denx.de/u-boot-sh.git master Jean-Christophe PLAGNIOL-VILLARD (3): sh: fix rsk7203 and MigoR out of tree build sh:

Re: [U-Boot] [GIT PULL] MIPS updates

2008-12-12 Thread Wolfgang Denk
Dear Shinya Kuribayashi, In message 493fda82.7000...@ruby.dti.ne.jp you wrote: The following changes since commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae: Ben Warren (1): Fix compile error in building MBX860T. are available in the git repository at:

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

2008-12-12 Thread Wolfgang Denk
Dear Stefan Roese, In message 200812101723.27445...@denx.de you wrote: The following changes since commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae: Ben Warren (1): Fix compile error in building MBX860T. are available in the git repository at:

[U-Boot] reducing u-boot.bin size

2008-12-12 Thread Fahd Abidi
Hello, I am trying to reduce the size of the u-boot.bin file so that it fits into a 256KB promjet. I disabled all the drivers that I didn't need and have just kept the NOR driver but the binary size is still 512KB, it seems to be a hard number coded in somewhere. I would have thought this was

Re: [U-Boot] FPGA programming driver architecture

2008-12-12 Thread Hugo Villeneuve
On Sat, 13 Dec 2008 00:10:26 +0100 Wolfgang Denk w...@denx.de wrote: Dear Hugo Villeneuve, In message 20081212150047.e3dbbbef.h...@hugovil.com you wrote: I have written some code to program a FPGA in Linux, for two different types of boards: one uses a serial interface (SPI) and the