From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>, patches@linaro.org
Subject: [Qemu-devel] [PATCH v2 00/18] onenand, omap_gpmc fixes, features
Date: Sun, 28 Aug 2011 17:56:50 +0100 [thread overview]
Message-ID: <1314550628-26869-2-git-send-email-peter.maydell@linaro.org> (raw)
In-Reply-To: <1314550628-26869-1-git-send-email-peter.maydell@linaro.org>
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...
Changes v1->v2:
* split out the onenand_command() change from qdevify patch
* dropped onenand_init() in favour of just doing the qdev create,
configure,realize inline in nseries.c. This turns out to look
better, I think, because you can see what that string of integer
arguments to onenand_init() are actually doing.
I've updated (rebased!) the git branch:
git://git.linaro.org/people/pmaydell/qemu-arm.git omap-for-upstream
which should be suitable for pulling if desired.
Juha Riihimäki (6):
hw/onenand: Remove unnecessary argument from onenand_command()
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 | 7 +-
hw/nseries.c | 29 ++-
hw/omap.h | 14 +-
hw/omap2.c | 3 +-
hw/omap_gpmc.c | 713 +++++++++++++++++++++++++++++++++++++++++++++-----------
hw/onenand.c | 164 ++++++++++----
hw/sysbus.c | 5 +
hw/sysbus.h | 1 +
8 files changed, 733 insertions(+), 203 deletions(-)
next prev parent reply other threads:[~2011-08-28 16:57 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-28 16:56 [Qemu-devel] [PATCH v2 00/18] onenand, omap_gpmc fixes, features Peter Maydell
2011-08-28 16:56 ` Peter Maydell [this message]
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 01/18] hw/sysbus: Add sysbus_mmio_get_region() Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 02/18] hw/onenand: Remove unnecessary argument from onenand_command() Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 03/18] hw/onenand: Qdevify Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 04/18] hw/onenand: Minor spacing fixes Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 05/18] omap_gpmc: Clean up omap_gpmc_attach MemoryRegion conversion Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 06/18] omap_gpmc: Refactor omap_gpmc_cs_map and omap_gpmc_cs_unmap Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 07/18] omap_gpmc: GPMC_IRQSTATUS is write-one-to-clear Peter Maydell
2011-09-17 1:08 ` andrzej zaborowski
2011-09-17 15:47 ` Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 08/18] omap_gpmc: Wire up the GPMC IRQ correctly Peter Maydell
2011-08-28 16:56 ` [Qemu-devel] [PATCH v2 09/18] omap_gpmc: Fix handling of FIFOTHRESHOLDSTATUS bit Peter Maydell
2011-09-17 1:22 ` andrzej zaborowski
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 10/18] omap_gpmc: Take omap_mpu_state* in omap_gpmc_init Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 11/18] omap_gpmc: Calculate revision from OMAP model Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 12/18] omap_gpmc: Reindent misindented switch statements Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 13/18] omap_gpmc: Support NAND devices Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 14/18] hw/omap.h: Add OMAP 3630 to omap_mpu_model enumeration Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 15/18] omap_gpmc: Accept a zero mask field on omap3630 Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 16/18] omap_gpmc: Pull prefetch engine data into sub-struct Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 17/18] omap: Wire up the DMA request line to the GPMC Peter Maydell
2011-08-28 16:57 ` [Qemu-devel] [PATCH v2 18/18] omap_gpmc: Implement prefetch engine Peter Maydell
2011-08-30 6:27 ` [Qemu-devel] [PATCH v2 00/18] onenand, omap_gpmc fixes, features Edgar E. Iglesias
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=1314550628-26869-2-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=edgar.iglesias@gmail.com \
--cc=patches@linaro.org \
--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).