Re: [U-Boot] [PATCH] Disaligned buffer in print_buffer

2010-08-28 Thread Reinhard Meyer
Dear Albert ARIBAUD, >> If you need a patch for this, I have made the change here this morning. >> I can format and email one instantly. >> >> Reinhard > > I say go ahead! Its there, right after the message. It has a different title, because I made it before I found the tread about the issue :) Re

[U-Boot] Assistentin gesucht! Hohes Gehalt.

2010-08-28 Thread sales
Sehr geehrte Damen und Herren, Ich bin der Personalchef der Firma Bergdorf Goodman. Dies ist ein Job-Angebot in englischer Sprache. Der Job ist real und gut bezahlt. Diese Position erfordert ein mittleres Niveau in Wort und Schrift Englisch. Wenn Sie und haben Sie Interesse an diesem Job, lese

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Thursday, August 26, 2010 16:00:50 Reinhard Meyer wrote: > 1. according to Ramtron, 0x7f is a continuation byte defined in a > JEDEC standard (I could not find a spec for that) and shall be > ignored until a non-0x7f shows. yep http://www.jedec.org/standards-documents/results/taxonomy%3A3127 >

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: > From: Reinhard Meyer > > Signed-off-by: Reinhard Meyer looks like you still need to do `git commit --amend --author 'Reinhard Meyer '` ... > +#ifdef CONFIG_SPI_FRAM_RAMTRON_NONSTD i would stick with the style "NON_JEDEC" -mike sig

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
Dear Mike Frysinger, > On Thursday, August 26, 2010 16:00:50 Reinhard Meyer wrote: > interesting, but what if we push it further. something like this (untested): That code does not address the following issues to complete extend: 1. JEDEC conformant that have ID in first byte 2. JEDEC conformant

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
Dear Mike Frysinger, > On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: >> From: Reinhard Meyer >> >> Signed-off-by: Reinhard Meyer > > looks like you still need to do `git commit --amend --author 'Reinhard Meyer > '` ... Both are valid e-mail addresses, who says the one who signs off and

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 18:15:43 Reinhard Meyer wrote: > Dear Mike Frysinger, > > On Thursday, August 26, 2010 16:00:50 Reinhard Meyer wrote: > > interesting, but what if we push it further. something like this > > (untested): > > That code does not address the following issues to complete ex

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 18:23:18 Reinhard Meyer wrote: > Dear Mike Frysinger, > > On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: > >> From: Reinhard Meyer > >> > >> Signed-off-by: Reinhard Meyer > > > > looks like you still need to do `git commit --amend --author 'Reinhard > > Mey

[U-Boot] [PATCH v1] add mv_sdio driver for sheevaplug

2010-08-28 Thread Gérald Kerma
Add mvsdio driver to Kirkwood SoC Add SDIO support to SHEEVAPLUG Fix environments for SHEEVAPLUG Signed-off-by: Gérald Kerma --- Changes in v1: * Fix errors from SD/SDHC detect * Minor fixes in boot env arch/arm/cpu/arm926ejs/kirkwood/timer.c | 23 + arch/arm/include/asm/a

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
On 29.08.2010 00:28, Mike Frysinger wrote: > On Saturday, August 28, 2010 18:23:18 Reinhard Meyer wrote: >> Dear Mike Frysinger, >>> On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: From: Reinhard Meyer Signed-off-by: Reinhard Meyer >>> >>> looks like you still need to do `g

[U-Boot] Debugging, Why USB is not stable

2010-08-28 Thread Gérald Kerma
Good evening, I have some few problems with usb start / reset commands on last uboot. USB hard drive are not always detected. Is there something I missed ? Marvell>> usb start (Re)start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 4 USB Device(s) found

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 17:48:39 Mike Frysinger wrote: > + /* Make sure the ID was jedec extended */ > + j = flashes[i].shift - 1; > + while (j >= 0 && idcode[j] == 0x7f) > + continue; thinko ... this loop

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
On 29.08.2010 01:17, Mike Frysinger wrote: > On Saturday, August 28, 2010 17:48:39 Mike Frysinger wrote: >> +/* Make sure the ID was jedec extended */ >> +j = flashes[i].shift - 1; >> +while (j>= 0&& idcode[j] == 0x7f) >> +

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 19:45:57 Reinhard Meyer wrote: > On 29.08.2010 01:17, Mike Frysinger wrote: > > On Saturday, August 28, 2010 17:48:39 Mike Frysinger wrote: > >> + /* Make sure the ID was jedec extended */ > >> + j = flashes[i].shift - 1; > >> +

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
On 29.08.2010 02:14, Mike Frysinger wrote: > if you want to take the patch i posted and extend that by itself with the > comments here, and then do the ramtron patch separately on top of that, that'd > be great. Hehe, you like to impose extra work on poor moi the first patch would add the tab

[U-Boot] u-boot

2010-08-28 Thread Ò»ºÅ º«
hi, i would like to subscribe the news about u-boot ,thank you. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 21:59:26 Reinhard Meyer wrote: > On 29.08.2010 02:14, Mike Frysinger wrote: > > if you want to take the patch i posted and extend that by itself with the > > comments here, and then do the ramtron patch separately on top of that, > > that'd be great. > > Hehe, you like

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
On 29.08.2010 04:26, Mike Frysinger wrote: > On Saturday, August 28, 2010 21:59:26 Reinhard Meyer wrote: >> On 29.08.2010 02:14, Mike Frysinger wrote: >>> if you want to take the patch i posted and extend that by itself with the >>> comments here, and then do the ramtron patch separately on top of

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 23:35:08 Reinhard Meyer wrote: > On 29.08.2010 04:26, Mike Frysinger wrote: > > On Saturday, August 28, 2010 21:59:26 Reinhard Meyer wrote: > >> On 29.08.2010 02:14, Mike Frysinger wrote: > >>> if you want to take the patch i posted and extend that by itself with > >>>

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Reinhard Meyer
On 29.08.2010 06:34, Mike Frysinger wrote: > when you're editing a commit in the middle of a rebase, you can add on any > number of commits you like on top of it. so usually the way i split commits: > git rebase -i^ > > > git format-patch -1 > > patch -p1 -R<