From: Anthony Liguori <aliguori@us.ibm.com>
To: Jason Baron <jbaron@redhat.com>, qemu-devel@nongnu.org
Cc: juzhang@redhat.com, mst@redhat.com, jan.kiszka@siemens.com,
agraf@suse.de, armbru@redhat.com, blauwirbel@gmail.com,
yamahata@valinux.co.jp, alex.williamson@redhat.com,
kevin@koconnor.net, avi@redhat.com, mkletzan@redhat.com,
pbonzini@redhat.com, lcapitulino@redhat.com, afaerber@suse.de,
kraxel@redhat.com
Subject: Re: [Qemu-devel] [PATCH v1 00/13] q35 patches for pci tree
Date: Tue, 30 Oct 2012 14:20:35 -0500 [thread overview]
Message-ID: <87wqy7u5q4.fsf@codemonkey.ws> (raw)
In-Reply-To: <cover.1351561225.git.jbaron@redhat.com>
Jason Baron <jbaron@redhat.com> writes:
> Hi,
>
> Re-base of my previous q35 patches on top of Michael Tsirkin's pci
> tree.
I don't want this to come in through the pci tree. This is not just
another PCI device and the ramifications are pretty big since this will
become the main machine model.
> Qemu bits for q35 support, I'm posting the seabios changes separately. The
> patches require '-M q35' and -L 'seabios dir with q35 changes' on the
> qemu command line. Hopefully, we can make it the default for x86 at some future
> point when we feel comfortable with it. I'm hoping these patches can be
> included for the 1.3 soft freeze.
Q35 is sufficiently important that I think we should push for it in 1.3
regardless of freeze dates. The code is pretty close to being ready.
So let's not worry too much about merge dates and focusing on getting
the code up to the right level.
> The current patches have been tested with basic install testing and memory testing
> on f16, f17, windows 7 and windows 8. They can be run on the various BSD flavors
> by adding a 'piix4-ide' device to the pci bus. ie: -device piix4-ide. Patches
> have also been reported to work with a small dsdt change on OSX 10.6 as well.
>
> I've also dropped ACPI hotplug support completely - I simply haven't gotten a
> chance to clean this up yet. Hopefully, it is ok for this to come in a bit
> later.
>
> Git trees:
>
> git://github.com/jibaron/q35-qemu.git
> git://github.com/jibaron/q35-seabios.git
>
> Major Todo Items:
>
> -add ahci migration back (need to cover more fields, but basically works)
> -add ACPI hotplug support (pcie hotplug is currently working)
Since this is coming in as experimental for 1.3, I'm not overly
concerned about missing functionality. I'm more concerned with code
structure and device modeling so let's focus on getting this right for
1.3.
Overall, the series looks pretty nice. Thanks for all of your work
here!
Regards,
Anthony Liguori
>
>
> Isaku Yamahata (3):
> pc/piix_pci: factor out smram/pam logic
> pc, pc_piix: split out pc nic initialization
> q35: Introduce q35 pc based chipset emulator
>
> Jan Kiszka (2):
> q35: Suppress SMM BIOS initialization under KVM
> q35: Add kvmclock support
>
> Jason Baron (8):
> Back out add of i21154
> blockdev: Introduce QEMUMachine->default_drive_if
> blockdev: Introduce IF_AHCI
> pc: Move ioapic_init() from pc_piix.c to pc.c
> Add a fallback bios file search, if -L fails.
> q35: automatically load the q35 dsdt table
> q35: fill in usb pci slots with -usb
> Fixup q35/ich9 Licenses
>
> blockdev.c | 23 +++-
> blockdev.h | 22 +++
> hw/Makefile.objs | 2 +-
> hw/acpi_ich9.c | 20 ++-
> hw/boards.h | 2 +-
> hw/device-hotplug.c | 2 +-
> hw/highbank.c | 2 +-
> hw/i21154.c | 113 ----------------
> hw/i21154.h | 9 --
> hw/i386/Makefile.objs | 3 +-
> hw/ich9.h | 5 +-
> hw/ide.h | 1 +
> hw/ide/core.c | 9 ++
> hw/ide/pci.c | 19 +++
> hw/ide/pci.h | 1 +
> hw/leon3.c | 1 -
> hw/lpc_ich9.c | 32 +----
> hw/mips_jazz.c | 4 +-
> hw/pam.c | 87 ++++++++++++
> hw/pam.h | 97 ++++++++++++++
> hw/pc.c | 58 ++++++++
> hw/pc.h | 7 +
> hw/pc_piix.c | 38 +-----
> hw/pc_q35.c | 354 +++++++++++++++++++++++++++++++++++++++++++++++++
> hw/pc_sysfw.c | 2 +-
> hw/pci_ids.h | 2 +
> hw/piix_pci.c | 68 ++--------
> hw/puv3.c | 1 -
> hw/q35.c | 315 +++++++++++++++++++++++++++++++++++++++++++
> hw/q35.h | 161 ++++++++++++++++++++++
> hw/realview.c | 6 +-
> hw/smbus_ich9.c | 14 +-
> hw/spapr.c | 2 +-
> hw/sun4m.c | 24 ++--
> hw/versatilepb.c | 4 +-
> hw/vexpress.c | 4 +-
> hw/xilinx_zynq.c | 2 +-
> vl.c | 56 +++++---
> 38 files changed, 1272 insertions(+), 300 deletions(-)
> delete mode 100644 hw/i21154.c
> delete mode 100644 hw/i21154.h
> create mode 100644 hw/pam.c
> create mode 100644 hw/pam.h
> create mode 100644 hw/pc_q35.c
> create mode 100644 hw/q35.c
> create mode 100644 hw/q35.h
next prev parent reply other threads:[~2012-10-30 19:21 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-30 2:11 [Qemu-devel] [PATCH v1 00/13] q35 patches for pci tree Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 01/13] pc/piix_pci: factor out smram/pam logic Jason Baron
2012-10-30 19:07 ` Anthony Liguori
2012-10-30 20:26 ` Andreas Färber
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 02/13] Back out add of i21154 Jason Baron
2012-10-31 9:54 ` Michael S. Tsirkin
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 03/13] blockdev: Introduce QEMUMachine->default_drive_if Jason Baron
2012-10-30 19:08 ` Anthony Liguori
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 04/13] blockdev: Introduce IF_AHCI Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 05/13] pc, pc_piix: split out pc nic initialization Jason Baron
2012-10-30 19:09 ` Anthony Liguori
2012-10-31 9:57 ` Michael S. Tsirkin
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 06/13] pc: Move ioapic_init() from pc_piix.c to pc.c Jason Baron
2012-10-31 10:02 ` Michael S. Tsirkin
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 07/13] q35: Introduce q35 pc based chipset emulator Jason Baron
2012-10-30 19:18 ` Anthony Liguori
2012-10-31 10:04 ` Michael S. Tsirkin
2012-10-31 12:53 ` Anthony Liguori
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 08/13] q35: Suppress SMM BIOS initialization under KVM Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 09/13] q35: Add kvmclock support Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 11/13] q35: automatically load the q35 dsdt table Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 10/13] Add a fallback bios file search, if -L fails Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 12/13] q35: fill in usb pci slots with -usb Jason Baron
2012-10-30 6:34 ` Gerd Hoffmann
2012-10-30 15:19 ` Jason Baron
2012-10-30 16:19 ` Gerd Hoffmann
2012-10-30 18:00 ` Jason Baron
2012-10-30 2:11 ` [Qemu-devel] [PATCH v1 13/13] Fixup q35/ich9 Licenses Jason Baron
2012-10-31 8:59 ` Michael S. Tsirkin
2012-10-31 9:34 ` Isaku Yamahata
2012-10-31 9:57 ` Michael S. Tsirkin
2012-10-30 19:20 ` Anthony Liguori [this message]
2012-10-31 8:42 ` [Qemu-devel] [PATCH v1 00/13] q35 patches for pci tree Michael S. Tsirkin
2012-10-31 12:55 ` Anthony Liguori
2012-10-31 14:42 ` Jason Baron
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=87wqy7u5q4.fsf@codemonkey.ws \
--to=aliguori@us.ibm.com \
--cc=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=alex.williamson@redhat.com \
--cc=armbru@redhat.com \
--cc=avi@redhat.com \
--cc=blauwirbel@gmail.com \
--cc=jan.kiszka@siemens.com \
--cc=jbaron@redhat.com \
--cc=juzhang@redhat.com \
--cc=kevin@koconnor.net \
--cc=kraxel@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=mkletzan@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yamahata@valinux.co.jp \
/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).