Skip to content

Commit

Permalink
hw/ppc: modified the condition for usb controllers to be created for …
Browse files Browse the repository at this point in the history
…some ppc machines

Some ppc machines create a default usb controller based on a 'machine condition'.
Until now the logic was: create the usb controller if:
 -  the usb option was supplied in cli and value is true or
 -  the usb option was absent and both set_defaults and the machine
    condition were true.

Modified the logic to:
Create the usb controller if:
 - the machine condition is true and defaults are enabled or
 - the usb option is supplied and true.

The main for this is to simplify the usb_enabled method.

Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
  • Loading branch information
marcel-apf authored and agraf committed Jan 7, 2015
1 parent 2f285bd commit c760dbb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion hw/ppc/mac_newworld.c
Expand Up @@ -417,7 +417,8 @@ static void ppc_core99_init(MachineState *machine)
dev = qdev_create(adb_bus, TYPE_ADB_MOUSE);
qdev_init_nofail(dev);

if (usb_enabled(machine_arch == ARCH_MAC99_U3)) {
if ((machine_arch == ARCH_MAC99_U3 && defaults_enabled()) ||
usb_enabled(false)) {
pci_create_simple(pci_bus, -1, "pci-ohci");
/* U3 needs to use USB for input because Linux doesn't support via-cuda
on PPC64 */
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/spapr.c
Expand Up @@ -1530,7 +1530,7 @@ static void ppc_spapr_init(MachineState *machine)
spapr->has_graphics = true;
}

if (usb_enabled(spapr->has_graphics)) {
if ((spapr->has_graphics && defaults_enabled()) || usb_enabled(false)) {
pci_create_simple(phb->bus, -1, "pci-ohci");
if (spapr->has_graphics) {
usbdevice_create("keyboard");
Expand Down
1 change: 1 addition & 0 deletions include/sysemu/sysemu.h
Expand Up @@ -227,6 +227,7 @@ void qemu_boot_set(const char *boot_order, Error **errp);

QemuOpts *qemu_get_machine_opts(void);

bool defaults_enabled(void);
bool usb_enabled(bool default_usb);

extern QemuOptsList qemu_legacy_drive_opts;
Expand Down
7 changes: 6 additions & 1 deletion vl.c
Expand Up @@ -997,10 +997,15 @@ static int parse_name(QemuOpts *opts, void *opaque)
return 0;
}

bool defaults_enabled(void)
{
return has_defaults;
}

bool usb_enabled(bool default_usb)
{
return qemu_opt_get_bool(qemu_get_machine_opts(), "usb",
has_defaults && default_usb);
default_usb);
}

#ifndef _WIN32
Expand Down

0 comments on commit c760dbb

Please sign in to comment.