qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Benoît Canet" <benoit.canet@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, "Benoît Canet" <benoit.canet@gmail.com>
Subject: [Qemu-devel] [PATCH 01/14] mst_fpga: convert to memory API
Date: Mon, 24 Oct 2011 22:38:20 +0200	[thread overview]
Message-ID: <1319488713-3482-2-git-send-email-benoit.canet@gmail.com> (raw)
In-Reply-To: <1319488713-3482-1-git-send-email-benoit.canet@gmail.com>

Signed-off-by: Benoit Canet <benoit.canet@gmail.com>
---
 hw/mst_fpga.c |   29 ++++++++++++-----------------
 1 files changed, 12 insertions(+), 17 deletions(-)

diff --git a/hw/mst_fpga.c b/hw/mst_fpga.c
index 7bcd5d7..cf9957b 100644
--- a/hw/mst_fpga.c
+++ b/hw/mst_fpga.c
@@ -34,6 +34,7 @@
 
 typedef struct mst_irq_state{
 	SysBusDevice busdev;
+	MemoryRegion iomem;
 
 	qemu_irq parent;
 
@@ -86,8 +87,8 @@ mst_fpga_set_irq(void *opaque, int irq, int level)
 }
 
 
-static uint32_t
-mst_fpga_readb(void *opaque, target_phys_addr_t addr)
+static uint64_t
+mst_fpga_readb(void *opaque, target_phys_addr_t addr, unsigned size)
 {
 	mst_irq_state *s = (mst_irq_state *) opaque;
 
@@ -124,7 +125,8 @@ mst_fpga_readb(void *opaque, target_phys_addr_t addr)
 }
 
 static void
-mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
+mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint64_t value,
+		unsigned size)
 {
 	mst_irq_state *s = (mst_irq_state *) opaque;
 	value &= 0xffffffff;
@@ -175,17 +177,11 @@ mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
 	}
 }
 
-static CPUReadMemoryFunc * const mst_fpga_readfn[] = {
-	mst_fpga_readb,
-	mst_fpga_readb,
-	mst_fpga_readb,
+static const MemoryRegionOps mst_fpga_ops = {
+	.read = mst_fpga_readb,
+	.write = mst_fpga_writeb,
+	.endianness = DEVICE_NATIVE_ENDIAN,
 };
-static CPUWriteMemoryFunc * const mst_fpga_writefn[] = {
-	mst_fpga_writeb,
-	mst_fpga_writeb,
-	mst_fpga_writeb,
-};
-
 
 static int mst_fpga_post_load(void *opaque, int version_id)
 {
@@ -198,7 +194,6 @@ static int mst_fpga_post_load(void *opaque, int version_id)
 static int mst_fpga_init(SysBusDevice *dev)
 {
 	mst_irq_state *s;
-	int iomemtype;
 
 	s = FROM_SYSBUS(mst_irq_state, dev);
 
@@ -210,9 +205,9 @@ static int mst_fpga_init(SysBusDevice *dev)
 	/* alloc the external 16 irqs */
 	qdev_init_gpio_in(&dev->qdev, mst_fpga_set_irq, MST_NUM_IRQS);
 
-	iomemtype = cpu_register_io_memory(mst_fpga_readfn,
-		mst_fpga_writefn, s, DEVICE_NATIVE_ENDIAN);
-	sysbus_init_mmio(dev, 0x00100000, iomemtype);
+	memory_region_init_io(&s->iomem, &mst_fpga_ops, s,
+			    "fpga", 0x00100000);
+	sysbus_init_mmio_region(dev, &s->iomem);
 	return 0;
 }
 
-- 
1.7.4.1

  reply	other threads:[~2011-10-24 20:36 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-24 20:38 [Qemu-devel] [PATCH 00/14] arm: more memory API and VMState conversion Benoît Canet
2011-10-24 20:38 ` Benoît Canet [this message]
2011-10-24 20:38 ` [Qemu-devel] [PATCH 02/14] syborg_fb: convert to memory API Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 03/14] syborg_interrupt: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 04/14] syborg_keyboard: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 05/14] syborg_pointer: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 06/14] syborg_rtc: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 07/14] syborg_serial: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 08/14] syborg_timer: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 09/14] syborg_virtio: " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 10/14] pl181: add vmstate Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 11/14] bitbang_i2c: convert to VMState Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 12/14] realview: convert realview i2c " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 13/14] integratorcp: convert integratorcm " Benoît Canet
2011-10-24 20:38 ` [Qemu-devel] [PATCH 14/14] integratorcp: convert icp_pic " Benoît Canet
2011-10-25  8:49 ` [Qemu-devel] [PATCH 00/14] arm: more memory API and VMState conversion Avi Kivity
2011-10-25  9:03   ` Benoît Canet
2011-10-25 11:06     ` Avi Kivity

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=1319488713-3482-2-git-send-email-benoit.canet@gmail.com \
    --to=benoit.canet@gmail.com \
    --cc=peter.maydell@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).