From: David Gibson <dwg@au1.ibm.com>
To: Li Zhang <zhlcindy@gmail.com>
Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org,
Li Zhang <zhlcindy@linux.vnet.ibm.com>,
qemu-ppc@nongnu.org, afaerber@suse.de
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH v7 1/3] Add USB option in machine options
Date: Wed, 15 Aug 2012 21:13:43 +1000 [thread overview]
Message-ID: <20120815111343.GB4171@truffula.fritz.box> (raw)
In-Reply-To: <CAD8of+qRnEa30U8JdjaipZ77UcuZXzE=7gB81JoMWeHLrGtVqQ@mail.gmail.com>
On Wed, Aug 15, 2012 at 01:44:28PM +0800, Li Zhang wrote:
> On Wed, Aug 15, 2012 at 10:57 AM, David Gibson <dwg@au1.ibm.com> wrote:
> > On Wed, Aug 15, 2012 at 10:50:04AM +0800, Li Zhang wrote:
> >> On Wed, Aug 15, 2012 at 9:47 AM, David Gibson <dwg@au1.ibm.com> wrote:
> >> > On Wed, Aug 15, 2012 at 09:24:34AM +0800, Li Zhang wrote:
> >> >> On Wed, Aug 15, 2012 at 8:09 AM, Benjamin Herrenschmidt
> >> >> <benh@kernel.crashing.org> wrote:
> >> >> > On Wed, 2012-08-15 at 09:10 +1000, David Gibson wrote:
> >> >> >> > I see. I will redo this patch. Send out it later. :)
> >> >> >> > Thanks for your comments.
> >> >> >>
> >> >> >> When you do that, please also change the default to make spapr _not_
> >> >> >> have usb.
> >> >> >
> >> >> > FYI, I originally asked for USB as default ... however it looks like at
> >> >> > this stage the price (performance) is too high so either make it default
> >> >> > to OFF, or make it default to ON if and only if VGA is also enabled.
> >> >> >
> >> >> Got it, I change the default as false, and when VGA is enabled, set
> >> >> USB option as true.
> >> >
> >> > Not quite, actually. The default should depend on VGA, but the
> >> > explicit usb= option should always override that. Having VGA without
> >> > USB would be unusual, but it should be possible if you specify it
> >> > explicitly.
> >> >
> >> Right, explicit usb= option will override the value.
> >> I think we can set the usb option value when no usb option is specified.
> >> For example, we use -machine type=pseries without usb= option.
> >>
> >> I am considering as the following:
> >>
> >> if (vga_enabled) {
> >> set_usb_option(true)
> >> }
> >
> > No, this will override the option given on the command line.
> Oh, I didn't realize that.
> >
> >> if (usb_enabled(false)) { //If vga is enabled and "-machine
> >> type=pseries" is specified, it will get true.
> >> pci_create_simple(ohci)
> >> }
> >
> > It's much easier than this, you just want
> > if (usb_enabled(vga_enabled))
> This is better than mine. :)
> It seems that this patch needs to work with VGA patch together. :)
> I need to modify as that. :)
Not necessarily. In the initial usb pach you can just make the
default 'false', then just change that one line in the VGA patch.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
next prev parent reply other threads:[~2012-08-15 11:34 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-07 2:41 [Qemu-devel] [Qemu-ppc][PATCH v7 0/3] Add USB enablement and VGA enablement on sPAPR Li Zhang
2012-08-07 2:41 ` [Qemu-devel] [Qemu-ppc][PATCH v7 1/3] Add USB option in machine options Li Zhang
2012-08-07 12:19 ` [Qemu-devel] [RFC] usb and s390 Christian Borntraeger
2012-08-07 12:50 ` Li Zhang
2012-08-07 14:20 ` Eric Blake
2012-08-07 12:19 ` [Qemu-devel] [RFC/PATCH 1/1] USB code fenced for s390 Christian Borntraeger
2012-08-07 12:26 ` Peter Maydell
2012-08-07 20:22 ` Blue Swirl
2012-08-08 6:29 ` Christian Borntraeger
2012-08-07 12:57 ` Andreas Färber
2012-08-07 12:59 ` Li Zhang
2012-08-14 10:39 ` [Qemu-devel] [Qemu-ppc][PATCH v7 1/3] Add USB option in machine options Alexander Graf
2012-08-14 14:59 ` Li Zhang
2012-08-14 10:46 ` Alexander Graf
2012-08-14 15:01 ` Li Zhang
2012-08-14 23:10 ` [Qemu-devel] [Qemu-ppc] [PATCH " David Gibson
2012-08-14 23:41 ` Alexander Graf
2012-08-15 0:09 ` Benjamin Herrenschmidt
2012-08-15 1:24 ` Li Zhang
2012-08-15 1:47 ` David Gibson
2012-08-15 2:50 ` Li Zhang
2012-08-15 2:57 ` David Gibson
2012-08-15 5:44 ` Li Zhang
2012-08-15 11:13 ` David Gibson [this message]
2012-08-15 14:17 ` Li Zhang
2012-08-07 2:41 ` [Qemu-devel] [Qemu-ppc][PATCH v7 2/3] Add one new file vga-pci.h and cleanup on all platforms Li Zhang
2012-08-14 11:04 ` Alexander Graf
2012-08-07 2:42 ` [Qemu-devel] [Qemu-ppc][PATCH v7 3/3] spapr: Add support for -vga option Li Zhang
2012-08-14 11:04 ` Alexander Graf
2012-08-14 12:04 ` Benjamin Herrenschmidt
2012-08-14 12:13 ` David Gibson
2012-08-14 15:13 ` Li Zhang
2012-08-14 17:19 ` Li Zhang
2012-08-14 17:52 ` Li Zhang
2012-08-14 23:11 ` [Qemu-devel] [Qemu-ppc] [PATCH " David Gibson
2012-08-14 15:07 ` [Qemu-devel] [Qemu-ppc][PATCH " Li Zhang
2012-08-07 15:05 ` [Qemu-devel] [Qemu-ppc][PATCH v7 0/3] Add USB enablement and VGA enablement on sPAPR Li Zhang
2012-08-14 11:04 ` Alexander Graf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120815111343.GB4171@truffula.fritz.box \
--to=dwg@au1.ibm.com \
--cc=afaerber@suse.de \
--cc=aliguori@us.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=zhlcindy@gmail.com \
--cc=zhlcindy@linux.vnet.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).