From: Alexander Graf <agraf@suse.de>
To: Pranavkumar Sawargaonkar <pranavkumar@linaro.org>, qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, patches@apm.com,
Tushar Jagad <tushar.jagad@linaro.org>,
christoffer.dall@linaro.org, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] pci: GPEX: Add support to route legacy interrupts
Date: Tue, 21 Apr 2015 21:32:07 +0200 [thread overview]
Message-ID: <5536A5B7.1040704@suse.de> (raw)
In-Reply-To: <1429260911-24021-3-git-send-email-pranavkumar@linaro.org>
On 04/17/2015 10:55 AM, Pranavkumar Sawargaonkar wrote:
> This patch adds routine to route legacy interrupts to VM.
>
> Signed-off-by: Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
> Signed-off-by: Tushar Jagad <tushar.jagad@linaro.org>
I don't think the device model should have awareness of any global irq
number spaces. Can you move this into the board model instead? Then you
also don't need the first patch.
Alex
> ---
> hw/pci-host/gpex.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/hw/pci-host/gpex.c b/hw/pci-host/gpex.c
> index 9d8fb5a..35842e4 100644
> --- a/hw/pci-host/gpex.c
> +++ b/hw/pci-host/gpex.c
> @@ -42,6 +42,17 @@ static void gpex_set_irq(void *opaque, int irq_num, int level)
> qemu_set_irq(s->irq[irq_num], level);
> }
>
> +static PCIINTxRoute gpex_route_intx_pin_to_irq(void *opaque, int pin)
> +{
> + PCIINTxRoute route;
> + GPEXHost *s = opaque;
> +
> + route.mode = PCI_INTX_ENABLED;
> + route.irq = qemu_get_irq_num(s->irq[pin]);
> +
> + return route;
> +}
> +
> static void gpex_host_realize(DeviceState *dev, Error **errp)
> {
> PCIHostState *pci = PCI_HOST_BRIDGE(dev);
> @@ -66,6 +77,7 @@ static void gpex_host_realize(DeviceState *dev, Error **errp)
> &s->io_ioport, 0, 4, TYPE_PCIE_BUS);
>
> qdev_set_parent_bus(DEVICE(&s->gpex_root), BUS(pci->bus));
> + pci_bus_set_route_irq_fn(pci->bus, gpex_route_intx_pin_to_irq);
> qdev_init_nofail(DEVICE(&s->gpex_root));
> }
>
next prev parent reply other threads:[~2015-04-21 19:34 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 ` [Qemu-devel] [PATCH 1/2] hw: irq: Add API to get irq number from qemu_irq Pranavkumar Sawargaonkar
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 [this message]
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=5536A5B7.1040704@suse.de \
--to=agraf@suse.de \
--cc=christoffer.dall@linaro.org \
--cc=patches@apm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=pranavkumar@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).