From: Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, patches@apm.com, agraf@suse.de,
Tushar Jagad <tushar.jagad@linaro.org>,
pbonzini@redhat.com, christoffer.dall@linaro.org,
Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
Subject: [Qemu-devel] [PATCH 1/2] hw: irq: Add API to get irq number from qemu_irq
Date: Fri, 17 Apr 2015 14:25:10 +0530 [thread overview]
Message-ID: <1429260911-24021-2-git-send-email-pranavkumar@linaro.org> (raw)
In-Reply-To: <1429260911-24021-1-git-send-email-pranavkumar@linaro.org>
This patch adds a new function to get irq number from qemu irq.
Signed-off-by: Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
Signed-off-by: Tushar Jagad <tushar.jagad@linaro.org>
---
hw/core/irq.c | 9 +++++++++
include/hw/irq.h | 1 +
2 files changed, 10 insertions(+)
diff --git a/hw/core/irq.c b/hw/core/irq.c
index 8a62a36..0eeffdf 100644
--- a/hw/core/irq.c
+++ b/hw/core/irq.c
@@ -35,6 +35,15 @@ struct IRQState {
int n;
};
+int qemu_get_irq_num(qemu_irq irq)
+{
+ if (!irq) {
+ return -1;
+ }
+
+ return irq->n;
+}
+
void qemu_set_irq(qemu_irq irq, int level)
{
if (!irq)
diff --git a/include/hw/irq.h b/include/hw/irq.h
index 4c4c2ea..dd5220c 100644
--- a/include/hw/irq.h
+++ b/include/hw/irq.h
@@ -9,6 +9,7 @@ typedef struct IRQState *qemu_irq;
typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
+int qemu_get_irq_num(qemu_irq irq);
void qemu_set_irq(qemu_irq irq, int level);
static inline void qemu_irq_raise(qemu_irq irq)
--
1.9.1
next prev parent reply other threads:[~2015-04-17 8:55 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-17 8:55 [Qemu-devel] [PATCH 0/2] Generic PCIe host bridge legacy interrupts routing support Pranavkumar Sawargaonkar
2015-04-17 8:55 ` Pranavkumar Sawargaonkar [this message]
2015-04-17 8:55 ` [Qemu-devel] [PATCH 2/2] pci: GPEX: Add support to route legacy interrupts Pranavkumar Sawargaonkar
2015-04-21 19:32 ` Alexander Graf
2015-04-17 9:53 ` [Qemu-devel] [PATCH 0/2] Generic PCIe host bridge legacy interrupts routing support Peter Maydell
2015-04-17 10:30 ` Pranavkumar Sawargaonkar
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=1429260911-24021-2-git-send-email-pranavkumar@linaro.org \
--to=pranavkumar@linaro.org \
--cc=agraf@suse.de \
--cc=christoffer.dall@linaro.org \
--cc=patches@apm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=tushar.jagad@linaro.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).