qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alexander Graf <agraf@suse.de>
To: qemu-devel qemu-devel <qemu-devel@nongnu.org>
Cc: Blue Swirl <blauwirbel@gmail.com>,
	"qemu-ppc@nongnu.org List" <qemu-ppc@nongnu.org>,
	Aurelien Jarno <aurelien@aurel32.net>
Subject: [Qemu-devel] [PATCH 11/22] es1370: convert PIO to new memory api read/write
Date: Mon, 29 Oct 2012 11:26:00 +0100	[thread overview]
Message-ID: <1351506371-23632-12-git-send-email-agraf@suse.de> (raw)
In-Reply-To: <1351506371-23632-1-git-send-email-agraf@suse.de>

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 hw/es1370.c |   46 ++++++++++++++++++++++++++++++++++++----------
 1 files changed, 36 insertions(+), 10 deletions(-)

diff --git a/hw/es1370.c b/hw/es1370.c
index e34234c..e0c9729 100644
--- a/hw/es1370.c
+++ b/hw/es1370.c
@@ -908,18 +908,44 @@ static void es1370_adc_callback (void *opaque, int avail)
     es1370_run_channel (s, ADC_CHANNEL, avail);
 }
 
-static const MemoryRegionPortio es1370_portio[] = {
-    { 0, 0x40 * 4, 1, .write = es1370_writeb, },
-    { 0, 0x40 * 2, 2, .write = es1370_writew, },
-    { 0, 0x40, 4, .write = es1370_writel, },
-    { 0, 0x40 * 4, 1, .read = es1370_readb, },
-    { 0, 0x40 * 2, 2, .read = es1370_readw, },
-    { 0, 0x40, 4, .read = es1370_readl, },
-    PORTIO_END_OF_LIST ()
-};
+static uint64_t es1370_read(void *opaque, hwaddr addr,
+                            unsigned size)
+{
+    switch (size) {
+    case 1:
+        return es1370_readb(opaque, addr);
+    case 2:
+        return es1370_readw(opaque, addr);
+    case 4:
+        return es1370_readl(opaque, addr);
+    default:
+        return -1;
+    }
+}
+
+static void es1370_write(void *opaque, hwaddr addr, uint64_t val,
+                      unsigned size)
+{
+    switch (size) {
+    case 1:
+        es1370_writeb(opaque, addr, val);
+        break;
+    case 2:
+        es1370_writew(opaque, addr, val);
+        break;
+    case 4:
+        es1370_writel(opaque, addr, val);
+        break;
+    }
+}
 
 static const MemoryRegionOps es1370_io_ops = {
-    .old_portio = es1370_portio,
+    .read = es1370_read,
+    .write = es1370_write,
+    .impl = {
+        .min_access_size = 1,
+        .max_access_size = 4,
+    },
     .endianness = DEVICE_LITTLE_ENDIAN,
 };
 
-- 
1.6.0.2

  parent reply	other threads:[~2012-10-29 10:26 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-29 10:25 [Qemu-devel] [PULL 00/22] ppc patch queue 2012-10-29 Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 01/22] Remove TARGET_PHYS_ADDR_BITS define completely Alexander Graf
2012-10-29 10:38   ` Peter Maydell
2012-10-29 10:46     ` Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 02/22] PPC: Bamboo: Fix memory size DT property Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 03/22] PPC: 440: Emulate DCBR0 Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 04/22] e500: Fix serial initialization Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 05/22] Add USB option in machine options Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 06/22] pseries: Don't allow duplicate registration of hcalls or RTAS calls Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 07/22] target-ppc: Rework storage of VPA registration state Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 08/22] pseries: Implement qemu initiated shutdowns using EPOW events Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 09/22] ac97: convert PIO to new memory api read/write Alexander Graf
2012-10-29 10:25 ` [Qemu-devel] [PATCH 10/22] virtio-pci: " Alexander Graf
2012-10-29 10:26 ` Alexander Graf [this message]
2012-10-29 10:26 ` [Qemu-devel] [PATCH 12/22] i8254: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 13/22] m48t59: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 14/22] mc146818rtc: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 15/22] pc port92: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 16/22] pckbd: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 17/22] rtl8139: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 18/22] serial: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 19/22] vmport: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 20/22] xen_platform: " Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 21/22] PPC: e500: Map PIO space into core memory region Alexander Graf
2012-10-29 10:26 ` [Qemu-devel] [PATCH 22/22] PPC: pseries: Remove hack for PIO window Alexander Graf
2012-10-29 11:01 ` [Qemu-devel] [PULL 00/22] ppc patch queue 2012-10-29 Andreas Färber
2012-10-29 11:03   ` Alexander Graf
2012-10-29 14:34 ` Aurelien Jarno

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=1351506371-23632-12-git-send-email-agraf@suse.de \
    --to=agraf@suse.de \
    --cc=aurelien@aurel32.net \
    --cc=blauwirbel@gmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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).