[U-Boot] [PATCH 2/2] Add Atmel USBA UDC

2011-02-12 Thread Marcel Janssen
From: Marcel Signed-off-by: Marcel --- drivers/usb/gadget/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 0846233..024844d 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile

[U-Boot] [PATCH 2/4] Add Atmel USBA UDC

2011-02-12 Thread Marcel Janssen
From: Marcel Signed-off-by: Marcel --- drivers/usb/gadget/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 0846233..024844d 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile

[U-Boot] [PATCH 3/4] add USB DFU driver

2011-02-12 Thread Marcel Janssen
DFU function", + "No params, see README.dfu" +); + \ No newline at end of file diff --git a/doc/README.dfu b/doc/README.dfu new file mode 100644 index 000..04b7b76 --- /dev/null +++ b/doc/README.dfu @@ -0,0 +1,129 @@ +USBD DFU mode + +Initially written by Marcel Janss

[U-Boot] [PATCH 4/4] add icnova sam9g45 board

2011-02-12 Thread Marcel Janssen
k; + } + + writew(0xf0f0, base); + readw(base); + } + + if (flags) + enable_interrupts(); + + return ret; +} diff --git a/board/in-circuit/icnova/icnova_arm.c b/board/in-circuit/icnova/icnova_arm.c new file mode 10064

[U-Boot] [PATCH 2/3] add USB DFU driver

2011-02-12 Thread Marcel Janssen
DFU function", + "No params, see README.dfu" +); + \ No newline at end of file diff --git a/doc/README.dfu b/doc/README.dfu new file mode 100644 index 000..04b7b76 --- /dev/null +++ b/doc/README.dfu @@ -0,0 +1,129 @@ +USBD DFU mode + +Initially written by Marcel Janss

[U-Boot] [PATCH 3/3] add icnova sam9g45 board

2011-02-12 Thread Marcel Janssen
readw(base); + break; + } + + writew(0xf0f0, base); + readw(base); + } + + if (flags) + enable_interrupts(); + + return ret; +} diff --git a/board/in-circuit/icnova/icnova_arm.c b/board/in-circ

[U-Boot] [PATCH v2 0/4] DFU implementation for Atmel SAM9G45

2011-02-13 Thread Marcel Janssen
From: Marcel These patches apply to u-boot-usb, cdc-at91 branch. They contain a working implementation of USB DFU. Most is documented in README.dfu. A little background on the implementation : The controller code (atmel_usba_udc) should also work with the gadget ethernet driver. I tested it a co

[U-Boot] [PATCH v2 1/4] Add Atmel USBA UDC

2011-02-13 Thread Marcel Janssen
/drivers/usb/gadget/atmel_usba_udc.c @@ -0,0 +1,1438 @@ +/* + * Driver for the Atmel USBA high speed USB device controller + * + * Copyright (C) 2011 Marcel Janssen, Admesy B.V. + * Copyright (C) 2005-2007 Atmel Corporation + * + * This program is free software; you can redistribute it and/or modify

[U-Boot] [PATCH v2 2/4] USB DFU driver added

2011-02-13 Thread Marcel Janssen
) Copyright 2011 Marcel Janssen, Admesy B.V. + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software

[U-Boot] [PATCH v2 3/4] Add In-Circuit sam9g45_oem board

2011-02-13 Thread Marcel Janssen
/icnova_sam9g45.h diff --git a/board/in-circuit/icnova/Makefile b/board/in-circuit/icnova/Makefile new file mode 100644 index 000..bf64680 --- /dev/null +++ b/board/in-circuit/icnova/Makefile @@ -0,0 +1,50 @@ +# (C) Copyright 2011 Marcel Janssen, Admesy B.V. +# (C) Copyright 2001-2006 +# Wolfgang

[U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-13 Thread Marcel Janssen
From: Marcel Signed-off-by: Marcel --- arch/arm/cpu/arm926ejs/at91/led.c | 119 +- common/Makefile |1 + common/update_dfu.c |2 - drivers/usb/gadget/atmel_usba_udc.c |8 +- drivers/usb/gadget/usbdfu.c |

[U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-13 Thread Marcel Janssen
From: Marcel Signed-off-by: Marcel --- arch/arm/cpu/arm926ejs/at91/led.c | 119 +- common/Makefile |1 + common/update_dfu.c |2 - drivers/usb/gadget/atmel_usba_udc.c |8 +- drivers/usb/gadget/usbdfu.c |

Re: [U-Boot] [PATCH v2 0/4] DFU implementation for Atmel SAM9G45

2011-02-13 Thread Marcel Janssen
Hi, I hope this one gets through correctly. I know it's know what optimal as it should apply to the current 'work' but I had some issues doing that and no time to find out what the issue is. If possible, please apply to cdc-at91 If not, than I will be reviewing it in a couple of months I guess.

Re: [U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-13 Thread Marcel Janssen
Hi, Sorry to post this one twice. It's seems exactly the same patch. > From: Marcel > > Signed-off-by: Marcel > --- > arch/arm/cpu/arm926ejs/at91/led.c | 119 > +- common/Makefile | > 1 + > common/update_dfu.c |2 -

Re: [U-Boot] [PATCH v2 3/4] Add In-Circuit sam9g45_oem board

2011-02-15 Thread Marcel Janssen
On Tuesday, February 15, 2011 07:45:36 pm Remy Bohmer wrote: > Hi, > > 2011/2/13 Marcel Janssen : > > From: Marcel > > > > sam9g45_oem cleanup phase1 > > > > sam9g45_oem cleanup phase2 > > > > sam9g45_oem cleanup phase3 > > Not a

Re: [U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-15 Thread Marcel Janssen
On Tuesday, February 15, 2011 07:43:34 pm Remy Bohmer wrote: > Hi, > > 2011/2/13 Marcel Janssen : > > From: Marcel > > > > Signed-off-by: Marcel > > --- > > arch/arm/cpu/arm926ejs/at91/led.c | 119 > > +- >

Re: [U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-15 Thread Marcel Janssen
Hi Remy, > 2011/2/15 Marcel Janssen : > > On Tuesday, February 15, 2011 07:43:34 pm Remy Bohmer wrote: > >> Hi, > >> > >> 2011/2/13 Marcel Janssen : > >> > From: Marcel > >> > > >> > Signed-off-b

Re: [U-Boot] [PATCH v2 1/4] Add Atmel USBA UDC

2011-02-15 Thread Marcel Janssen
Hi Remy, > Continuing producing some remarks: > > 2011/2/13 Marcel Janssen : > > From: Marcel > > > > Atmel USBA UDC cleanup > > > > Atmel USBA UDC cleanup > > > > more cleanup of Atmel USBA UDC > > > > Some more cleanin

Re: [U-Boot] [PATCH 4/4] add icnova sam9g45 board

2011-02-15 Thread Marcel Janssen
On Tuesday, February 15, 2011 01:00:50 am Reinhard Meyer wrote: > Dear Marcel Janssen, > > > Hi Remy and Reinhard, > > > >> To make it easy for you: It is up to you if you choose ' > >> rework_110202' > > ... > > > It looks like if

Re: [U-Boot] [PATCH v2 4/4] updates for DFU and atmel usba udc

2011-02-15 Thread Marcel Janssen
Dear Remy and Reinhard, > Hmm, Let's make it even more black/white: I do not have to like the > board code. ;-) > Reinhard is the Atmel maintainer. He needs to pull in the Board code. > I only care about generic USB code... ;-))) > > Please make 2 unrelated patch series (1 series for USB DFU supp