All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] Qemu Documentation
@ 2017-10-05  4:03 Swetheendra Tallamraju
  2017-10-05 18:30 ` John Snow
  2017-10-05 21:56 ` Swetheendra Tallamraju
  0 siblings, 2 replies; 7+ messages in thread
From: Swetheendra Tallamraju @ 2017-10-05  4:03 UTC (permalink / raw)
  To: qemu-devel

I am working on qemu source code to provide extra functionality of
emulating virtual usb. Can I get any  documentation for the qemu source
code that helps me in implementing this?

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-05  4:03 [Qemu-devel] Qemu Documentation Swetheendra Tallamraju
@ 2017-10-05 18:30 ` John Snow
  2017-10-05 21:56 ` Swetheendra Tallamraju
  1 sibling, 0 replies; 7+ messages in thread
From: John Snow @ 2017-10-05 18:30 UTC (permalink / raw)
  To: Swetheendra Tallamraju, qemu-devel



On 10/05/2017 12:03 AM, Swetheendra Tallamraju wrote:
> I am working on qemu source code to provide extra functionality of
> emulating virtual usb. Can I get any  documentation for the qemu source
> code that helps me in implementing this?
> 


The docs in source code and in the docs/ folder are what you get, more
or less. It will be a quicker process for you if you ask specific
questions about the codebase.

What types of docs are you looking for, for instance, or what you are
trying to accomplish.

--js

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-05  4:03 [Qemu-devel] Qemu Documentation Swetheendra Tallamraju
  2017-10-05 18:30 ` John Snow
@ 2017-10-05 21:56 ` Swetheendra Tallamraju
  2017-10-06 16:28   ` Kevin Wolf
  1 sibling, 1 reply; 7+ messages in thread
From: Swetheendra Tallamraju @ 2017-10-05 21:56 UTC (permalink / raw)
  To: qemu-devel

I want yo add extra functionality of booting from virtual USB through qemu.
I need to write a new block of code in /hw/USB to emulate virtual USB. I
don't have any clue of how to procced. Code documentation of other devices
like hub network would help us understanding and implementing usb

On Thu, Oct 5, 2017 at 12:03 AM, Swetheendra Tallamraju <
swetheendra.t@gmail.com> wrote:

> I am working on qemu source code to provide extra functionality of
> emulating virtual usb. Can I get any  documentation for the qemu source
> code that helps me in implementing this?
>

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-05 21:56 ` Swetheendra Tallamraju
@ 2017-10-06 16:28   ` Kevin Wolf
  2017-10-06 17:01     ` Swetheendra Tallamraju
  0 siblings, 1 reply; 7+ messages in thread
From: Kevin Wolf @ 2017-10-06 16:28 UTC (permalink / raw)
  To: Swetheendra Tallamraju; +Cc: qemu-devel

Am 05.10.2017 um 23:56 hat Swetheendra Tallamraju geschrieben:
> I want yo add extra functionality of booting from virtual USB through qemu.
> I need to write a new block of code in /hw/USB to emulate virtual USB. I
> don't have any clue of how to procced. Code documentation of other devices
> like hub network would help us understanding and implementing usb

QEMU already has support for emulating USB devices. What is it
specifically that the existing code doesn't provide and you want to add?

Kevin

> On Thu, Oct 5, 2017 at 12:03 AM, Swetheendra Tallamraju <
> swetheendra.t@gmail.com> wrote:
> 
> > I am working on qemu source code to provide extra functionality of
> > emulating virtual usb. Can I get any  documentation for the qemu source
> > code that helps me in implementing this?
> >

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-06 16:28   ` Kevin Wolf
@ 2017-10-06 17:01     ` Swetheendra Tallamraju
  2017-10-06 17:39       ` Swetheendra Tallamraju
  0 siblings, 1 reply; 7+ messages in thread
From: Swetheendra Tallamraju @ 2017-10-06 17:01 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-devel

I want to write a new virtual USB code and boot from USB by attaching at
command line. This functionality exists for hard drive CDROM network
devices but not for USB right. If it exists can you please tell me
directory path for code ?

On Oct 6, 2017 12:28 PM, "Kevin Wolf" <kwolf@redhat.com> wrote:

> Am 05.10.2017 um 23:56 hat Swetheendra Tallamraju geschrieben:
> > I want yo add extra functionality of booting from virtual USB through
> qemu.
> > I need to write a new block of code in /hw/USB to emulate virtual USB. I
> > don't have any clue of how to procced. Code documentation of other
> devices
> > like hub network would help us understanding and implementing usb
>
> QEMU already has support for emulating USB devices. What is it
> specifically that the existing code doesn't provide and you want to add?
>
> Kevin
>
> > On Thu, Oct 5, 2017 at 12:03 AM, Swetheendra Tallamraju <
> > swetheendra.t@gmail.com> wrote:
> >
> > > I am working on qemu source code to provide extra functionality of
> > > emulating virtual usb. Can I get any  documentation for the qemu source
> > > code that helps me in implementing this?
> > >
>

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-06 17:01     ` Swetheendra Tallamraju
@ 2017-10-06 17:39       ` Swetheendra Tallamraju
  2017-10-09  8:21         ` Kevin Wolf
  0 siblings, 1 reply; 7+ messages in thread
From: Swetheendra Tallamraju @ 2017-10-06 17:39 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-devel

Infact emulation of virtual USB already exists. I want to add functionality
of booting from USB. Can you refer which source files to llok on and
modify.

On Fri, Oct 6, 2017 at 1:01 PM, Swetheendra Tallamraju <
swetheendra.t@gmail.com> wrote:

> I want to write a new virtual USB code and boot from USB by attaching at
> command line. This functionality exists for hard drive CDROM network
> devices but not for USB right. If it exists can you please tell me
> directory path for code ?
>
> On Oct 6, 2017 12:28 PM, "Kevin Wolf" <kwolf@redhat.com> wrote:
>
>> Am 05.10.2017 um 23:56 hat Swetheendra Tallamraju geschrieben:
>> > I want yo add extra functionality of booting from virtual USB through
>> qemu.
>> > I need to write a new block of code in /hw/USB to emulate virtual USB. I
>> > don't have any clue of how to procced. Code documentation of other
>> devices
>> > like hub network would help us understanding and implementing usb
>>
>> QEMU already has support for emulating USB devices. What is it
>> specifically that the existing code doesn't provide and you want to add?
>>
>> Kevin
>>
>> > On Thu, Oct 5, 2017 at 12:03 AM, Swetheendra Tallamraju <
>> > swetheendra.t@gmail.com> wrote:
>> >
>> > > I am working on qemu source code to provide extra functionality of
>> > > emulating virtual usb. Can I get any  documentation for the qemu
>> source
>> > > code that helps me in implementing this?
>> > >
>>
>

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

* Re: [Qemu-devel] Qemu Documentation
  2017-10-06 17:39       ` Swetheendra Tallamraju
@ 2017-10-09  8:21         ` Kevin Wolf
  0 siblings, 0 replies; 7+ messages in thread
From: Kevin Wolf @ 2017-10-09  8:21 UTC (permalink / raw)
  To: Swetheendra Tallamraju; +Cc: qemu-devel

Am 06.10.2017 um 19:39 hat Swetheendra Tallamraju geschrieben:
> Infact emulation of virtual USB already exists. I want to add functionality
> of booting from USB. Can you refer which source files to llok on and
> modify.

Booting is the job of the BIOS that is running inside the guest, so you
won't find this code in QEMU, but in SeaBIOS. As it happens, SeaBIOS
also already supports booting from USB and it works just fine for me.

Kevin

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

end of thread, other threads:[~2017-10-09  8:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-05  4:03 [Qemu-devel] Qemu Documentation Swetheendra Tallamraju
2017-10-05 18:30 ` John Snow
2017-10-05 21:56 ` Swetheendra Tallamraju
2017-10-06 16:28   ` Kevin Wolf
2017-10-06 17:01     ` Swetheendra Tallamraju
2017-10-06 17:39       ` Swetheendra Tallamraju
2017-10-09  8:21         ` Kevin Wolf

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.