qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/10] pc: Don't use QEMUMachine, simplify compat+init code
@ 2015-05-15 17:18 Eduardo Habkost
  2015-05-15 17:18 ` [Qemu-devel] [PATCH 01/10] pc: Define MACHINE_OPTIONS macros consistently for all machines Eduardo Habkost
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Eduardo Habkost @ 2015-05-15 17:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, jasowang, rth, Alexander Graf, Michael S. Tsirkin

This series changes the PC code to not need QEMUMachine anymore, removes ~200
lines of code and simplifies the steps needed to new PC machines in the future.

Previously, a new PC machine required:
 * A new PC_COMPAT_* macro;
 * A new pc_compat_*() function[1];
 * A new pc_init_*() function;
 * A new MACHINE_OPTIONS macro;
 * A new QEMUMachine declaration;
 * A new qemu_register_pc_machine() call in the machine_init() function.

Now it just needs:
 * A new PC_COMPAT_* macro;
 * A new pc_compat_*() function[1];
 * A new pc_*_machine_options() function;
 * A DEFINE_*_MACHINE line.

This series depends on the series I submitted recently:
  [PATCH v2 00/13] pc, hw, spapr: Cleanup of {HW, PC, SPAPR}_COMPAT_* macros

A git tree can be seen at:
  git://github.com/ehabkost/qemu-hacks.git work/pc-compat-macros

[1] I still plan to eliminate the need for the pc_compat_*() functions, and
move all compat data inside MachineClass/PCMachineClass, but that will be done
later.

Eduardo Habkost (10):
  pc: Define MACHINE_OPTIONS macros consistently for all machines
  pc: Define machines using a DEFINE_PC_MACHINE macro
  pc: Convert *_MACHINE_OPTIONS macros into functions
  pc: Move compat_props setting inside *_machine_options() functions
  pc: Don't use QEMUMachine anymore
  pc: Remove qemu_register_pc_machine() function
  machine: Remove unused fields from QEMUMachine
  piix: Add kvmclock_enabled, pci_enabled globals
  piix: Eliminate pc_init_pci()
  pc: Generate init functions with a macro

 hw/i386/pc.c         |  45 -----
 hw/i386/pc_piix.c    | 554 +++++++++++++++++++++------------------------------
 hw/i386/pc_q35.c     | 240 ++++++++--------------
 include/hw/boards.h  |  15 +-
 include/hw/i386/pc.h |  45 ++++-
 vl.c                 |  15 --
 6 files changed, 358 insertions(+), 556 deletions(-)

-- 
2.1.0

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

end of thread, other threads:[~2015-05-15 17:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-15 17:18 [Qemu-devel] [PATCH 00/10] pc: Don't use QEMUMachine, simplify compat+init code Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 01/10] pc: Define MACHINE_OPTIONS macros consistently for all machines Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 02/10] pc: Define machines using a DEFINE_PC_MACHINE macro Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 03/10] pc: Convert *_MACHINE_OPTIONS macros into functions Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 04/10] pc: Move compat_props setting inside *_machine_options() functions Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 05/10] pc: Don't use QEMUMachine anymore Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 06/10] pc: Remove qemu_register_pc_machine() function Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 07/10] machine: Remove unused fields from QEMUMachine Eduardo Habkost
2015-05-15 17:18 ` [Qemu-devel] [PATCH 08/10] piix: Add kvmclock_enabled, pci_enabled globals Eduardo Habkost
2015-05-15 17:19 ` [Qemu-devel] [PATCH 09/10] piix: Eliminate pc_init_pci() Eduardo Habkost
2015-05-15 17:19 ` [Qemu-devel] [PATCH 10/10] pc: Generate init functions with a macro Eduardo Habkost

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).