All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] tftp download with USB vitrual ethnet driver
@ 2009-03-09  9:05 龚益斌
  2009-03-09 13:49 ` Dennis.Yxun
  0 siblings, 1 reply; 6+ messages in thread
From: 龚益斌 @ 2009-03-09  9:05 UTC (permalink / raw)
  To: u-boot

Hi?all,
I?m am new guy from China, and nice to meet all of yours. These days we use u-boot in out Linux Project base on our SOC chip, and we found it?s not convenient to download kernel image because our board have no ether-net chip, only USB and UART. Linux-2.6.21 etc, support USB CDC subnet(Boot Loader OBject), so if we write a USB device driver and a  virtual Ethernet card driver over it , we can realize TFTP download with USB. Now we have test successfully in our project, if necessary I?m very glad to contribute it~
Regards,
Gongyibin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] tftp download with USB vitrual ethnet driver
  2009-03-09  9:05 [U-Boot] tftp download with USB vitrual ethnet driver 龚益斌
@ 2009-03-09 13:49 ` Dennis.Yxun
  2009-03-10  1:42   ` [U-Boot] 答复: " 龚益斌
  2009-03-10 22:07   ` [U-Boot] " Remy Bohmer
  0 siblings, 2 replies; 6+ messages in thread
From: Dennis.Yxun @ 2009-03-09 13:49 UTC (permalink / raw)
  To: u-boot

HI Gong:
   One question: is that _SOC_ open?
   I'm personally interested in your USB-CDC implenmentation.
And currently I'm trying to add DFU support for Beagleboard (TI OMAP3)
which is also base on U-boot usb gadget. May quite similar to your work.
Oh, I only doing that slowly at my spare time, just a hobby :_)
   Hope you can shine some lights on me.
   Thank you.

Dennis

2009/3/9 ??? <gongyibin@leadcoretech.com>

> Hi?all,
> I?m am new guy from China, and nice to meet all of yours. These days we use
> u-boot in out Linux Project base on our SOC chip, and we found it?s not
> convenient to download kernel image because our board have no ether-net
> chip, only USB and UART. Linux-2.6.21 etc, support USB CDC subnet(Boot
> Loader OBject), so if we write a USB device driver and a  virtual Ethernet
> card driver over it , we can realize TFTP download with USB. Now we have
> test successfully in our project, if necessary I?m very glad to contribute
> it~
> Regards,
> Gongyibin
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] 答复:  tftp download with USB vitrual ethnet driver
  2009-03-09 13:49 ` Dennis.Yxun
@ 2009-03-10  1:42   ` 龚益斌
  2009-03-10 15:12     ` Detlev Zundel
  2009-03-10 22:07   ` [U-Boot] " Remy Bohmer
  1 sibling, 1 reply; 6+ messages in thread
From: 龚益斌 @ 2009-03-10  1:42 UTC (permalink / raw)
  To: u-boot

Hi?Denis:
         This SOC is not opened. It?s our new chip(Digital Base Band) designed for TD-SCDMA mobile. I?m not clear for DFU, but I think it?s same, you need write a low level usb device driver in /driver/usb, and write a DFU client level over it. Because U-Boot support TFTP and Linux PC support USB-CDC ?so I needn?t care about host side, but you may need to do something in host side.
 
Gongyibin
 
-----????-----
???: Dennis.Yxun [mailto:dennis.yxun at gmail.com] 
????: 2009?3?9? 21:50
???: ???
??: u-boot at lists.denx.de
??: Re: [U-Boot] tftp download with USB vitrual ethnet driver
 
HI Gong:
   One question: is that _SOC_ open?
   I'm personally interested in your USB-CDC implenmentation.
And currently I'm trying to add DFU support for Beagleboard (TI OMAP3) 
which is also base on U-boot usb gadget. May quite similar to your work.
Oh, I only doing that slowly at my spare time, just a hobby :_)
   Hope you can shine some lights on me.
   Thank you.

Dennis
2009/3/9 ??? <gongyibin@leadcoretech.com>
Hi?all,
I?m am new guy from China, and nice to meet all of yours. These days we use u-boot in out Linux Project base on our SOC chip, and we found it?s not convenient to download kernel image because our board have no ether-net chip, only USB and UART. Linux-2.6.21 etc, support USB CDC subnet(Boot Loader OBject), so if we write a USB device driver and a  virtual Ethernet card driver over it , we can realize TFTP download with USB. Now we have test successfully in our project, if necessary I?m very glad to contribute it~
Regards,
Gongyibin

_______________________________________________
U-Boot mailing list
U-Boot at lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] 答复: tftp download with USB vitrual ethnet driver
  2009-03-10  1:42   ` [U-Boot] 答复: " 龚益斌
@ 2009-03-10 15:12     ` Detlev Zundel
  0 siblings, 0 replies; 6+ messages in thread
From: Detlev Zundel @ 2009-03-10 15:12 UTC (permalink / raw)
  To: u-boot

Hi Gong and Dennis,

sorry to jump in late here, but did anyone of you check the Openmoko
implementation of DFU for U-Boot[1]?

Cheers
  Detlev

[1] http://wiki.openmoko.org/wiki/USB_DFU

-- 
Woman who seek to be equal with men lack ambition
                       -- Timothy Leary
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] tftp download with USB vitrual ethnet driver
  2009-03-09 13:49 ` Dennis.Yxun
  2009-03-10  1:42   ` [U-Boot] 答复: " 龚益斌
@ 2009-03-10 22:07   ` Remy Bohmer
  2009-03-11  1:35     ` [U-Boot] 答复: " 龚益斌
  1 sibling, 1 reply; 6+ messages in thread
From: Remy Bohmer @ 2009-03-10 22:07 UTC (permalink / raw)
  To: u-boot

Hello All,

>  I'm personally interested in your USB-CDC implenmentation.
> And currently I'm trying to add DFU support for Beagleboard (TI OMAP3)
> which is also base on U-boot usb gadget. May quite similar to your work.

Have you all noticed the CDC branch of U-boot-usb ? It is derived from
linux-2.6.27 usb gadget layer, and fully operational for Atmel
at91sam9261-ek, other processors could be added relatively easily.
http://git.denx.de/?p=u-boot/u-boot-usb.git;a=shortlog;h=refs/heads/cdc

>> card driver over it , we can realize TFTP download with USB. Now we have
>> test successfully in our project, if necessary I?m very glad to contribute

I am still very interested on your solution, and were it
differentiates from the CDC branch.
Patches to make this branch more mature are very welcome.


Kind Regards,

Remy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] 答复:  tftp download with USB vitrual ethnet driver
  2009-03-10 22:07   ` [U-Boot] " Remy Bohmer
@ 2009-03-11  1:35     ` 龚益斌
  0 siblings, 0 replies; 6+ messages in thread
From: 龚益斌 @ 2009-03-11  1:35 UTC (permalink / raw)
  To: u-boot


Hi, Remy
	I'm sorry didn't notice the recent update for U-boot-usb ,I developed it base on last month version(01/21/09 10:12 8,126,939 u-boot-2009.01.tar.bz2).My solution is very simple, didn't like Linux gadget driver, just add a usb_eth.c (more than 300 lines)in driver/net, but I think your solution is better.
Best Regards,
Gong

-----????-----
???: l.pinguin at gmail.com [mailto:l.pinguin at gmail.com] ?? Remy Bohmer
????: 2009?3?11? 6:07
???: Dennis.Yxun; ???
??: u-boot at lists.denx.de
??: Re: [U-Boot] tftp download with USB vitrual ethnet driver

Hello All,

>  I'm personally interested in your USB-CDC implenmentation.
> And currently I'm trying to add DFU support for Beagleboard (TI OMAP3)
> which is also base on U-boot usb gadget. May quite similar to your work.

Have you all noticed the CDC branch of U-boot-usb ? It is derived from
linux-2.6.27 usb gadget layer, and fully operational for Atmel
at91sam9261-ek, other processors could be added relatively easily.
http://git.denx.de/?p=u-boot/u-boot-usb.git;a=shortlog;h=refs/heads/cdc

>> card driver over it , we can realize TFTP download with USB. Now we have
>> test successfully in our project, if necessary I?m very glad to contribute

I am still very interested on your solution, and were it
differentiates from the CDC branch.
Patches to make this branch more mature are very welcome.


Kind Regards,

Remy

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-03-11  1:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-09  9:05 [U-Boot] tftp download with USB vitrual ethnet driver 龚益斌
2009-03-09 13:49 ` Dennis.Yxun
2009-03-10  1:42   ` [U-Boot] 答复: " 龚益斌
2009-03-10 15:12     ` Detlev Zundel
2009-03-10 22:07   ` [U-Boot] " Remy Bohmer
2009-03-11  1:35     ` [U-Boot] 答复: " 龚益斌

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.