All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Hervé Poussineau" <hpoussin@reactos.org>
To: qemu-devel@nongnu.org
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
	"Hervé Poussineau" <hpoussin@reactos.org>,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: [Qemu-devel] [PATCH v2 09/19] i8257: move state definition to new independent header
Date: Sun, 10 Jan 2016 16:24:48 +0100	[thread overview]
Message-ID: <1452439498-21098-10-git-send-email-hpoussin@reactos.org> (raw)
In-Reply-To: <1452439498-21098-1-git-send-email-hpoussin@reactos.org>

We will now be able to embed the i8257 interrupt controller in another object.

Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
---
 hw/dma/i8257.c         | 35 +----------------------------------
 include/hw/isa/i8257.h | 42 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+), 34 deletions(-)
 create mode 100644 include/hw/isa/i8257.h

diff --git a/hw/dma/i8257.c b/hw/dma/i8257.c
index 2eb6d42..5210e0e 100644
--- a/hw/dma/i8257.c
+++ b/hw/dma/i8257.c
@@ -23,10 +23,10 @@
  */
 #include "hw/hw.h"
 #include "hw/isa/isa.h"
+#include "hw/isa/i8257.h"
 #include "qemu/main-loop.h"
 #include "trace.h"
 
-#define TYPE_I8257 "i8257"
 #define I8257(obj) \
     OBJECT_CHECK(I8257State, (obj), TYPE_I8257)
 
@@ -41,42 +41,9 @@
 #define ldebug(...)
 #endif
 
-typedef struct I8257Regs {
-    int now[2];
-    uint16_t base[2];
-    uint8_t mode;
-    uint8_t page;
-    uint8_t pageh;
-    uint8_t dack;
-    uint8_t eop;
-    DMA_transfer_handler transfer_handler;
-    void *opaque;
-} I8257Regs;
-
 #define ADDR 0
 #define COUNT 1
 
-typedef struct I8257State {
-    ISADevice parent_obj;
-
-    int32_t base;
-    int32_t page_base;
-    int32_t pageh_base;
-    int32_t dshift;
-
-    uint8_t status;
-    uint8_t command;
-    uint8_t mask;
-    uint8_t flip_flop;
-    I8257Regs regs[4];
-    MemoryRegion channel_io;
-    MemoryRegion cont_io;
-
-    QEMUBH *dma_bh;
-    bool dma_bh_scheduled;
-    int running;
-} I8257State;
-
 static I8257State *dma_controllers[2];
 
 enum {
diff --git a/include/hw/isa/i8257.h b/include/hw/isa/i8257.h
new file mode 100644
index 0000000..8d34ed1
--- /dev/null
+++ b/include/hw/isa/i8257.h
@@ -0,0 +1,42 @@
+#ifndef HW_I8257_H
+#define HW_I8257_H
+
+#define TYPE_I8257 "i8257"
+
+typedef struct I8257Regs {
+    int now[2];
+    uint16_t base[2];
+    uint8_t mode;
+    uint8_t page;
+    uint8_t pageh;
+    uint8_t dack;
+    uint8_t eop;
+    DMA_transfer_handler transfer_handler;
+    void *opaque;
+} I8257Regs;
+
+typedef struct I8257State {
+    /* <private> */
+    ISADevice parent_obj;
+
+    /* <public> */
+    int32_t base;
+    int32_t page_base;
+    int32_t pageh_base;
+    int32_t dshift;
+
+    uint8_t status;
+    uint8_t command;
+    uint8_t mask;
+    uint8_t flip_flop;
+    I8257Regs regs[4];
+    MemoryRegion channel_io;
+    MemoryRegion cont_io;
+
+    QEMUBH *dma_bh;
+    bool dma_bh_scheduled;
+    int running;
+} I8257State;
+
+#endif
+
-- 
2.1.4

  parent reply	other threads:[~2016-01-10 15:25 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-10 15:24 [Qemu-devel] [PATCH v2 00/19] ISA DMA controllers cleanup (i8257, i82374) Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 01/19] i82374: device only existed as ISA device, so simplify device Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 02/19] i8257: pass ISA bus to DMA_init() function Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 03/19] i8257: rename struct dma_cont to I8257State Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 04/19] i8257: rename struct dma_regs to I8257Regs Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 05/19] i8257: rename functions to start with i8257_ prefix Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 06/19] i8257: make the DMA running method per controller Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 07/19] i8257: add missing const Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 08/19] i8257: QOM'ify Hervé Poussineau
2016-01-10 15:24 ` Hervé Poussineau [this message]
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 10/19] isa: add an ISA DMA interface, and store it within the ISA bus Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 11/19] i8257: implement the IsaDma interface Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 12/19] magnum: disable floppy DMA for now Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 13/19] sparc: disable floppy DMA Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 14/19] sparc64: " Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 15/19] fdc: use IsaDma interface instead of global DMA_* functions Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 16/19] cs4231a: " Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 17/19] gus: " Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 18/19] sb16: " Hervé Poussineau
2016-01-10 15:24 ` [Qemu-devel] [PATCH v2 19/19] dma: remove now useless " Hervé Poussineau
2016-01-20 20:31 ` [Qemu-devel] [PATCH v2 00/19] ISA DMA controllers cleanup (i8257, i82374) Hervé Poussineau
2016-01-21 10:21   ` Paolo Bonzini
2016-01-21 15:56     ` John Snow
2016-01-26 20:26 ` John Snow
2016-01-26 21:14   ` Hervé Poussineau

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=1452439498-21098-10-git-send-email-hpoussin@reactos.org \
    --to=hpoussin@reactos.org \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.