Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-12 Thread Lukasz Majewski
Hi Scott, > On 12/11/2012 01:56:25 AM, Lukasz Majewski wrote: > > Hi Scott, > > > > > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > > > > + sprintf(cmd_buf, "nand %s %p %llx %llx", > > > > + op == DFU_OP_READ ? "read" : "write", > > > > +buf, start, cou

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Tom Rini
On Tue, Dec 11, 2012 at 04:24:37PM -0600, Scott Wood wrote: > On 12/10/2012 07:16:50 PM, Tom Rini wrote: > >On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: > >> On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > >> >+ sprintf(cmd_buf, "nand %s %p %llx %llx", > >> >+ op == DFU

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Scott Wood
On 12/10/2012 07:16:50 PM, Tom Rini wrote: On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > >+ sprintf(cmd_buf, "nand %s %p %llx %llx", > >+ op == DFU_OP_READ ? "read" : "write", > >+ buf, start, co

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Scott Wood
On 12/11/2012 01:56:25 AM, Lukasz Majewski wrote: Hi Scott, > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > > + sprintf(cmd_buf, "nand %s %p %llx %llx", > > + op == DFU_OP_READ ? "read" : "write", > > + buf, start, count); > > + > > + debug("%s: %s 0x%p\n

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Pantelis Antoniou
Hi Scott, On Dec 11, 2012, at 3:09 AM, Scott Wood wrote: > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: >> Introduce on-the fly DFU NAND support. >> Signed-off-by: Pantelis Antoniou >> --- >> drivers/dfu/Makefile | 1 + >> drivers/dfu/dfu.c | 7 ++ >> drivers/dfu/dfu_nand.c | 194

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Lukasz Majewski
Hi Scott, > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > > Introduce on-the fly DFU NAND support. > > > > Signed-off-by: Pantelis Antoniou > > --- > > drivers/dfu/Makefile | 1 + > > drivers/dfu/dfu.c | 7 ++ > > drivers/dfu/dfu_nand.c | 194 > > +++

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Tom Rini
On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > >Introduce on-the fly DFU NAND support. > > > >Signed-off-by: Pantelis Antoniou > >--- > > drivers/dfu/Makefile | 1 + > > drivers/dfu/dfu.c | 7 ++ > > drivers/dfu/dfu_nand

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Scott Wood
On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: Introduce on-the fly DFU NAND support. Signed-off-by: Pantelis Antoniou --- drivers/dfu/Makefile | 1 + drivers/dfu/dfu.c | 7 ++ drivers/dfu/dfu_nand.c | 194 + include/dfu.h

[U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Pantelis Antoniou
Introduce on-the fly DFU NAND support. Signed-off-by: Pantelis Antoniou --- drivers/dfu/Makefile | 1 + drivers/dfu/dfu.c | 7 ++ drivers/dfu/dfu_nand.c | 194 + include/dfu.h | 23 ++ 4 files changed, 225 insertions(+) cr