qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/17] onenand, omap_gpmc fixes, features
@ 2011-08-25 20:04 Peter Maydell
  2011-08-25 20:04 ` [Qemu-devel] [PATCH 01/17] hw/sysbus: Add sysbus_mmio_get_region() Peter Maydell
                   ` (18 more replies)
  0 siblings, 19 replies; 24+ messages in thread
From: Peter Maydell @ 2011-08-25 20:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: patches

This patchset is primarily features and bugfixes for the
omap_gpmc device from the Meego tree.

We start by adding a new sysbus function to get the MemoryRegion*
for a sysbus MMIO region. This was discussed in
 http://www.mail-archive.com/kvm@vger.kernel.org/msg59535.html
and as noted there can also be used to clean up other things,
so it's not just an omap_gpmc thing.

The bulk of the onenand qdevification patch was in an earlier series
I posted; this update makes it work with MemoryRegions.

The patches from "omap_gpmc: Take omap_mpu_state* in omap_gpmc_init"
onwards are omap3 preparation; the features they add aren't used in
the omap2 models currently in master. However I'd rather get things
reviewed in more manageable chunks than save them all up for when I
have omap3.c ready for commit...

Juha Riihimäki (5):
  hw/onenand: Qdevify
  hw/onenand: Minor spacing fixes
  omap_gpmc: Take omap_mpu_state* in omap_gpmc_init
  omap_gpmc: Calculate revision from OMAP model
  omap_gpmc: Accept a zero mask field on omap3630

Peter Maydell (12):
  hw/sysbus: Add sysbus_mmio_get_region()
  omap_gpmc: Clean up omap_gpmc_attach MemoryRegion conversion
  omap_gpmc: Refactor omap_gpmc_cs_map and omap_gpmc_cs_unmap
  omap_gpmc: GPMC_IRQSTATUS is write-one-to-clear
  omap_gpmc: Wire up the GPMC IRQ correctly
  omap_gpmc: Fix handling of FIFOTHRESHOLDSTATUS bit
  omap_gpmc: Reindent misindented switch statements
  omap_gpmc: Support NAND devices
  hw/omap.h: Add OMAP 3630 to omap_mpu_model enumeration
  omap_gpmc: Pull prefetch engine data into sub-struct
  omap: Wire up the DMA request line to the GPMC
  omap_gpmc: Implement prefetch engine

 hw/flash.h     |   10 +-
 hw/nseries.c   |   13 +-
 hw/omap.h      |   14 +-
 hw/omap2.c     |    3 +-
 hw/omap_gpmc.c |  713 +++++++++++++++++++++++++++++++++++++++++++++-----------
 hw/onenand.c   |  179 +++++++++++----
 hw/sysbus.c    |    5 +
 hw/sysbus.h    |    1 +
 8 files changed, 740 insertions(+), 198 deletions(-)

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

end of thread, other threads:[~2011-08-28 14:16 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-25 20:04 [Qemu-devel] [PATCH 00/17] onenand, omap_gpmc fixes, features Peter Maydell
2011-08-25 20:04 ` [Qemu-devel] [PATCH 01/17] hw/sysbus: Add sysbus_mmio_get_region() Peter Maydell
2011-08-25 20:04 ` [Qemu-devel] [PATCH 02/17] hw/onenand: Qdevify Peter Maydell
2011-08-27 17:38   ` Edgar E. Iglesias
2011-08-28 13:21     ` Peter Maydell
2011-08-28 14:16       ` Edgar E. Iglesias
2011-08-25 20:04 ` [Qemu-devel] [PATCH 03/17] hw/onenand: Minor spacing fixes Peter Maydell
2011-08-25 20:04 ` [Qemu-devel] [PATCH 04/17] omap_gpmc: Clean up omap_gpmc_attach MemoryRegion conversion Peter Maydell
2011-08-25 20:04 ` [Qemu-devel] [PATCH 05/17] omap_gpmc: Refactor omap_gpmc_cs_map and omap_gpmc_cs_unmap Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 06/17] omap_gpmc: GPMC_IRQSTATUS is write-one-to-clear Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 07/17] omap_gpmc: Wire up the GPMC IRQ correctly Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 08/17] omap_gpmc: Fix handling of FIFOTHRESHOLDSTATUS bit Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 09/17] omap_gpmc: Take omap_mpu_state* in omap_gpmc_init Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 10/17] omap_gpmc: Calculate revision from OMAP model Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 11/17] omap_gpmc: Reindent misindented switch statements Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 12/17] omap_gpmc: Support NAND devices Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 13/17] hw/omap.h: Add OMAP 3630 to omap_mpu_model enumeration Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 14/17] omap_gpmc: Accept a zero mask field on omap3630 Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 15/17] omap_gpmc: Pull prefetch engine data into sub-struct Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 16/17] omap: Wire up the DMA request line to the GPMC Peter Maydell
2011-08-25 20:05 ` [Qemu-devel] [PATCH 17/17] omap_gpmc: Implement prefetch engine Peter Maydell
2011-08-27  2:30 ` [Qemu-devel] [PATCH 00/17] onenand, omap_gpmc fixes, features Edgar E. Iglesias
2011-08-27 12:19   ` Peter Maydell
2011-08-28  8:38 ` Edgar E. Iglesias

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