qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4 00/16] piix4: cleanup and improvements
@ 2018-01-06 15:37 Hervé Poussineau
  2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 01/16] fdc: move object structures to header file Hervé Poussineau
                   ` (16 more replies)
  0 siblings, 17 replies; 25+ messages in thread
From: Hervé Poussineau @ 2018-01-06 15:37 UTC (permalink / raw)
  To: Aurelien Jarno, Yongbok Kim, Michael S . Tsirkin, Paolo Bonzini,
	qemu-devel
  Cc: Hervé Poussineau

Hi,

This patchset is a cleanup of the PIIX4 PCI-ISA bridge. Lots of devices
are moved from MIPS Malta board (which has a PIIX4) to PIIX4, where devices
belong. This lets us reuse PIIX4 in other machines, while not loosing any
functionality.

Last patch allows adding a new PIIX4 device directly from command line.
Note that this will work only as long no other ISA bus already exist on the
machine.

Hervé

Changes v3 -> v4:
- don't use DeviceClass->init function (patch 4, Marcel Apfelbaum)
- renamed pci to pci_dev (patch 5, Marcel Apfelbaum)
- add impl.{min,max}_access_size (patch 6, Michael S. Tsirkin)
- added Acked-by tags

Changes v2 -> v3:
- rebased on master and fixed conflicts
- added patch 14 (convert reset function to QOM)
- use TYPE_PIIX4_PCI_DEVICE in Malta board (patch 15, Philippe Mathieu-Daudé)

Changes v1 -> v2:
- fixed compilation on CentOS 6 (patch 1)
- automatically create serial/parallel chardevs if not provided (patch 11)

Hervé Poussineau (16):
  fdc: move object structures to header file
  serial/parallel: move object structures to header file
  mc146818rtc: move structure to header file
  mc146818rtc: always register rtc to rtc list
  piix4: rename some variables in realize function
  piix4: add Reset Control Register
  piix4: add a i8259 interrupt controller as specified in datasheet
  piix4: add a i8257 dma controller as specified in datasheet
  piix4: add a i8254 pit controller as specified in datasheet
  piix4: add a i8042 keyboard/mouse controller as specified in datasheet
  piix4: add a floppy controller, 1 parallel port and 2 serial ports
  piix4: add a mc146818rtc controller as specified in datasheet
  piix4: add a speaker as specified in datasheet
  piix4: convert reset function to QOM
  piix4: rename PIIX4 object to piix4-isa
  piix4: we can now instanciate a PIIX4 with -device

 hw/block/fdc.c                 | 102 ----------------------
 hw/char/parallel.c             |  31 +------
 hw/char/serial-isa.c           |  13 +--
 hw/isa/piix4.c                 | 187 ++++++++++++++++++++++++++++++++++++-----
 hw/mips/mips_malta.c           |  74 +++++++---------
 hw/ppc/pnv.c                   |   2 +-
 hw/timer/mc146818rtc.c         |  36 +-------
 include/hw/block/fdc.h         | 103 +++++++++++++++++++++++
 include/hw/char/isa.h          |  50 +++++++++++
 include/hw/char/serial.h       |   1 -
 include/hw/i386/pc.h           |   1 -
 include/hw/isa/isa.h           |   3 +
 include/hw/timer/mc146818rtc.h |  29 +++++++
 13 files changed, 386 insertions(+), 246 deletions(-)
 create mode 100644 include/hw/char/isa.h

-- 
2.11.0

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

end of thread, other threads:[~2019-04-23 21:59 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-06 15:37 [Qemu-devel] [PATCH v4 00/16] piix4: cleanup and improvements Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 01/16] fdc: move object structures to header file Hervé Poussineau
2018-01-15 23:07   ` John Snow
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 02/16] serial/parallel: " Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 03/16] mc146818rtc: move structure " Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 04/16] mc146818rtc: always register rtc to rtc list Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 05/16] piix4: rename some variables in realize function Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 06/16] piix4: add Reset Control Register Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 07/16] piix4: add a i8259 interrupt controller as specified in datasheet Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 08/16] piix4: add a i8257 dma " Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 09/16] piix4: add a i8254 pit " Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 10/16] piix4: add a i8042 keyboard/mouse " Hervé Poussineau
2018-01-07 16:51   ` Philippe Mathieu-Daudé
2018-01-08  2:18     ` Philippe Mathieu-Daudé
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 11/16] piix4: add a floppy controller, 1 parallel port and 2 serial ports Hervé Poussineau
2018-01-07 16:57   ` Philippe Mathieu-Daudé
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 12/16] piix4: add a mc146818rtc controller as specified in datasheet Hervé Poussineau
2019-04-23 21:58   ` Philippe Mathieu-Daudé
2019-04-23 21:58     ` Philippe Mathieu-Daudé
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 13/16] piix4: add a speaker " Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 14/16] piix4: convert reset function to QOM Hervé Poussineau
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 15/16] piix4: rename PIIX4 object to piix4-isa Hervé Poussineau
2018-01-07 16:38   ` Philippe Mathieu-Daudé
2018-01-06 15:37 ` [Qemu-devel] [PATCH v4 16/16] piix4: we can now instanciate a PIIX4 with -device Hervé Poussineau
2018-01-08  2:21 ` [Qemu-devel] [PATCH v4 00/16] piix4: cleanup and improvements Philippe Mathieu-Daudé

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