qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Isaku Yamahata <yamahata@valinux.co.jp>
To: qemu-devel@nongnu.org
Cc: yamahata@valinux.co.jp, mst@redhat.com
Subject: [Qemu-devel] [PATCH v3 00/39] pci: initialize ids in pci common code
Date: Wed, 25 May 2011 10:57:57 +0900	[thread overview]
Message-ID: <cover.1306288410.git.yamahata@valinux.co.jp> (raw)

Okay, here is the v3 as there seems no more comments on the series.

patch descriptions:
vender id/device id... in pci configuration space are read-only registers
which are commonly defined for all pci devices.
So initialize them in common code and it simplifies the initialization a bit.
Potentially in the future, qemu would be able to list supported devices
with device id and so on possibly with more updated description by linking
libpci.

 v2 -> v3:
- eliminated redandant comments
- converted virtio-pci

changes v1 -> v2:
- dropped header_type and prog_interface
- converted more

Isaku Yamahata (39):
  pci: move ids of config space into PCIDeviceInfo
  usb-uhci: convert to PCIDEviceInfo to initialize ids
  eepro100: convert to PCIDeviceInfo to initialize ids
  dec_pci: convert to PCIDeviceInfo to initialize ids
  apb_pci: convert to PCIDeviceInfo to initialize ids
  ide/piix: convert to PCIDeviceInfo to initialize ids
  vmware_vga.c: convert to PCIDeviceInfo to initialize ids
  hw/ac97.c: convert to PCIDeviceInfo to initialize ids
  hw/acpi_piix4.c: convert to PCIDeviceInfo to initialize ids
  hw/bonito.c: convert to PCIDeviceInfo to initialize ids
  hw/cirrus_vga.c: convert to PCIDeviceInfo to initialize ids
  hw/e1000.c: convert to PCIDeviceInfo to initialize ids
  hw/es1370.c: convert to PCIDeviceInfo to initialize ids
  hw/grackle_pci.c: convert to PCIDeviceInfo to initialize ids
  hw/gt64xxx.c: convert to PCIDeviceInfo to initialize ids
  hw/ide/cmd646.c: convert to PCIDeviceInfo to initialize ids
  hw/ide/ich.c: convert to PCIDeviceInfo to initialize ids
  hw/ide/via.c: convert to PCIDeviceInfo to initialize ids
  hw/intel-hda.c: convert to PCIDeviceInfo to initialize ids
  hw/ioh3420.c: convert to PCIDeviceInfo to initialize ids
  hw/ivshmem.c: convert to PCIDeviceInfo to initialize ids
  hw/lsi53c895a.c: convert to PCIDeviceInfo to initialize ids
  hw/ne2000.c: convert to PCIDeviceInfo to initialize ids
  hw/pcnet-pci.c: convert to PCIDeviceInfo to initialize ids
  hw/piix4.c: convert to PCIDeviceInfo to initialize ids
  hw/piix_pci.c: convert to PCIDeviceInfo to initialize ids
  hw/qxl.c: convert to PCIDeviceInfo to initialize ids
  hw/rtl8139.c: convert to PCIDeviceInfo to initialize ids
  hw/sh_pci.c: convert to PCIDeviceInfo to initialize ids
  hw/sun4u.c: convert to PCIDeviceInfo to initialize ids
  hw/unin_pci.c: convert to PCIDeviceInfo to initialize ids
  hw/usb-ohci.c: convert to PCIDeviceInfo to initialize ids
  hw/versatile_pci.c: convert to PCIDeviceInfo to initialize ids
  hw/vga-pci.c: convert to PCIDeviceInfo to initialize ids
  hw/vt82c686.c: convert to PCIDeviceInfo to initialize ids
  hw/wdt_i6300esb.c: convert to PCIDeviceInfo to initialize ids
  hw/xio3130_downstream.c: convert to PCIDeviceInfo to initialize ids
  hw/xio3130_upstream.c: convert to PCIDeviceInfo to initialize ids
  virtio-pci.c:  convert to PCIDEviceInfo to initialize ids

 hw/ac97.c               |    9 ++---
 hw/acpi_piix4.c         |    8 ++--
 hw/apb_pci.c            |   13 ++++----
 hw/bonito.c             |    9 +++--
 hw/cirrus_vga.c         |   10 +++---
 hw/dec_pci.c            |   26 ++++------------
 hw/e1000.c              |    8 ++--
 hw/eepro100.c           |   74 +++++++++++++++++++++--------------------------
 hw/es1370.c             |   24 +++++++--------
 hw/grackle_pci.c        |    8 ++--
 hw/gt64xxx.c            |    8 ++--
 hw/ide/cmd646.c         |   10 ++----
 hw/ide/ich.c            |    9 ++---
 hw/ide/piix.c           |   32 ++++++--------------
 hw/ide/via.c            |    8 ++--
 hw/intel-hda.c          |    8 ++--
 hw/ioh3420.c            |    7 ++--
 hw/ivshmem.c            |    8 ++---
 hw/lsi53c895a.c         |   13 ++------
 hw/ne2000.c             |    6 ++--
 hw/pci.c                |   46 ++++++++++++++++++++---------
 hw/pci.h                |    7 ++++
 hw/pcnet-pci.c          |    8 ++--
 hw/piix4.c              |   10 ++----
 hw/piix_pci.c           |   19 ++++-------
 hw/qxl.c                |    7 ++--
 hw/rtl8139.c            |    8 ++--
 hw/sh_pci.c             |    4 +-
 hw/sun4u.c              |    8 ++--
 hw/unin_pci.c           |   33 ++++++++++-----------
 hw/usb-ohci.c           |    7 ++--
 hw/usb-uhci.c           |   46 +++++++++++------------------
 hw/versatile_pci.c      |    8 ++--
 hw/vga-pci.c            |   11 +++----
 hw/virtio-pci.c         |   69 +++++++++++++++++++------------------------
 hw/vmware_vga.c         |   13 ++++----
 hw/vt82c686.c           |   35 ++++++++++------------
 hw/wdt_i6300esb.c       |    6 ++--
 hw/xio3130_downstream.c |    6 ++--
 hw/xio3130_upstream.c   |    6 ++--
 40 files changed, 300 insertions(+), 355 deletions(-)

             reply	other threads:[~2011-05-25  1:58 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-25  1:57 Isaku Yamahata [this message]
2011-05-25  1:57 ` [Qemu-devel] [PATCH v3 01/39] pci: move ids of config space into PCIDeviceInfo Isaku Yamahata
2011-05-25  1:57 ` [Qemu-devel] [PATCH v3 02/39] usb-uhci: convert to PCIDEviceInfo to initialize ids Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 03/39] eepro100: convert to PCIDeviceInfo " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 04/39] dec_pci: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 05/39] apb_pci: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 06/39] ide/piix: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 07/39] vmware_vga.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 08/39] hw/ac97.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 09/39] hw/acpi_piix4.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 10/39] hw/bonito.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 11/39] hw/cirrus_vga.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 12/39] hw/e1000.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 13/39] hw/es1370.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 14/39] hw/grackle_pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 15/39] hw/gt64xxx.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 16/39] hw/ide/cmd646.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 17/39] hw/ide/ich.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 18/39] hw/ide/via.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 19/39] hw/intel-hda.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 20/39] hw/ioh3420.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 21/39] hw/ivshmem.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 22/39] hw/lsi53c895a.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 23/39] hw/ne2000.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 24/39] hw/pcnet-pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 25/39] hw/piix4.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 26/39] hw/piix_pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 27/39] hw/qxl.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 28/39] hw/rtl8139.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 29/39] hw/sh_pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 30/39] hw/sun4u.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 31/39] hw/unin_pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 32/39] hw/usb-ohci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 33/39] hw/versatile_pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 34/39] hw/vga-pci.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 35/39] hw/vt82c686.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 36/39] hw/wdt_i6300esb.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 37/39] hw/xio3130_downstream.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 38/39] hw/xio3130_upstream.c: " Isaku Yamahata
2011-05-25  1:58 ` [Qemu-devel] [PATCH v3 39/39] virtio-pci.c: convert to PCIDEviceInfo " Isaku Yamahata
2011-06-09  1:56 ` [Qemu-devel] [PATCH v3 00/39] pci: initialize ids in pci common code Isaku Yamahata
2011-06-09 14:57   ` Michael S. Tsirkin

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=cover.1306288410.git.yamahata@valinux.co.jp \
    --to=yamahata@valinux.co.jp \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).