1. 09 1月, 2015 1 次提交
  2. 20 10月, 2014 2 次提交
  3. 05 6月, 2014 2 次提交
  4. 28 5月, 2014 1 次提交
  5. 14 2月, 2014 1 次提交
  6. 28 8月, 2013 1 次提交
    • M
      hw: Clean up bogus default boot order · c1654732
      Markus Armbruster 提交于
      We set default boot order "cad" in every single machine definition
      except "pseries" and "moxiesim", even though very few boards actually
      care for boot order, and "cad" makes sense for even fewer.
      
      Machines that care:
      
      * pc and its variants
      
        Accept up to three letters 'a', 'b' (undocumented alias for 'a'),
        'c', 'd' and 'n'.  Reject all others (fatal with -boot).
      
      * nseries (n800, n810)
      
        Check whether order starts with 'n'.  Silently ignored otherwise.
      
      * prep, g3beige, mac99
      
        Extract the first character the machine understands (subset of
        'a'..'f').  Silently ignored otherwise.
      
      * spapr
      
        Accept an arbitrary string (vl.c restricts it to contain only
        'a'..'p', no duplicates).
      
      * sun4[mdc]
      
        Use the first character.  Silently ignored otherwise.
      
      Strip characters these machines ignore from their default boot order.
      
      For all other machines, remove the unused default boot order
      alltogether.
      
      Note that my rename of QEMUMachine member boot_order to
      default_boot_order and QEMUMachineInitArgs member boot_device to
      boot_order has a welcome side effect: it makes every use of boot
      orders visible in this patch, for easy review.
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NLaszlo Ersek <lersek@redhat.com>
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      c1654732
  7. 19 4月, 2013 1 次提交
  8. 15 4月, 2013 1 次提交
  9. 09 4月, 2013 1 次提交
    • P
      hw: move headers to include/ · 0d09e41a
      Paolo Bonzini 提交于
      Many of these should be cleaned up with proper qdev-/QOM-ification.
      Right now there are many catch-all headers in include/hw/ARCH depending
      on cpu.h, and this makes it necessary to compile these files per-target.
      However, fixing this does not belong in these patches.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      0d09e41a
  10. 05 4月, 2013 1 次提交
  11. 18 3月, 2013 1 次提交
  12. 01 3月, 2013 2 次提交
  13. 22 1月, 2013 1 次提交
  14. 16 1月, 2013 1 次提交
  15. 19 12月, 2012 3 次提交
  16. 01 11月, 2012 1 次提交
    • G
      console: untangle gfx & txt updates · a93a4a22
      Gerd Hoffmann 提交于
      Stop abusing displaysurface fields for text mode displays.
      (bpp = 0, width = cols, height = lines).
      
      Add flags to displaystate indicating whenever text mode display
      (curses) or gfx mode displays (sdl, vnc, ...) are present.
      
      Add separate displaychangelistener callbacks for text / gfx mode
      resize & updates.
      
      This allows to enable gfx and txt diplays at the same time and also
      paves the way for more cleanups in the future.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      a93a4a22
  17. 30 10月, 2012 1 次提交
  18. 29 10月, 2012 1 次提交
    • Z
      Add USB option in machine options · 094b287f
      zhlcindy@gmail.com 提交于
      When -usb option is used, global varible usb_enabled is set.
      And all the plaform will create one USB controller according
      to this variable. In fact, global varibles make code hard
      to read.
      
      So this patch is to remove global variable usb_enabled and
      add USB option in machine options. All the plaforms will get
      USB option value from machine options.
      
      USB option of machine options will be set either by:
        * -usb
        * -machine type=pseries,usb=on
      
      Both these ways can work now. They both set USB option in
      machine options. In the future, the first way will be removed.
      Signed-off-by: NLi Zhang <zhlcindy@linux.vnet.ibm.com>
      Acked-by: NAlexander Graf <agraf@suse.de>
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      094b287f
  19. 20 10月, 2012 1 次提交
    • E
      create struct for machine initialization arguments · 5f072e1f
      Eduardo Habkost 提交于
      This should help us to:
      - More easily add or remove machine initialization arguments without
        having to change every single machine init function;
      - More easily make mechanical changes involving the machine init
        functions in the future;
      - Let machine initialization forward the init arguments to other
        functions more easily.
      
      This change was half-mechanical process: first the struct was added with
      the local ram_size, boot_device, kernel_*, initrd_*, and cpu_model local
      variable initialization to all functions. Then the compiler helped me
      locate the local variables that are unused, so they could be removed.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      5f072e1f
  20. 26 9月, 2012 1 次提交
  21. 20 6月, 2012 1 次提交
  22. 11 6月, 2012 2 次提交
  23. 05 6月, 2012 1 次提交
  24. 16 3月, 2012 1 次提交
  25. 17 2月, 2012 1 次提交
  26. 28 11月, 2011 1 次提交
  27. 23 9月, 2011 1 次提交
    • P
      omap_intc: Qdevify · 0919ac78
      Peter Maydell 提交于
      Convert the omap_intc devices to qdev. This includes adding
      a 'revision' property which will be needed for omap3.
      
      The bulk of this patch is the replacement of "s->irq[x][y]"
      with  "qdev_get_gpio_in(s->ih[x], y)" now that the interrupt
      controller exposes its input lines as qdev gpio inputs.
      
      The devices are named "omap-intc" and "omap2-intc", following
      the filename and the OMAP2/3 hardware names, although some
      internal functions are still named "omap_inth_*".
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      0919ac78
  28. 01 9月, 2011 1 次提交
  29. 29 8月, 2011 2 次提交
  30. 22 8月, 2011 1 次提交
  31. 21 8月, 2011 1 次提交
  32. 30 7月, 2011 2 次提交