From: Andrew Lunn <andrew@lunn.ch>
To: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Joao Pinto <jpinto@synopsys.com>,
Bjorn Helgaas <bhelgaas@google.com>,
Jingoo Han <jingoohan1@gmail.com>,
Pratyush Anand <pratyush.anand@gmail.com>,
linux-pci@vger.kernel.org, devicetree@vger.kernel.org,
Rob Herring <robh+dt@kernel.org>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Kumar Gala <galak@codeaurora.org>,
Jason Cooper <jason@lakedaemon.net>,
Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
Gregory Clement <gregory.clement@free-electrons.com>,
linux-arm-kernel@lists.infradead.org,
Yehuda Yitschak <yehuday@marvell.com>,
Shadi Ammouri <shadi@marvell.com>,
Nadav Haklai <nadavh@marvell.com>
Subject: Re: [PATCH 2/3] pci: pcie-designware: add support for external MSI controller
Date: Tue, 30 Aug 2016 15:11:31 +0200 [thread overview]
Message-ID: <20160830131131.GA8295@lunn.ch> (raw)
In-Reply-To: <1472561830-20932-3-git-send-email-thomas.petazzoni@free-electrons.com>
On Tue, Aug 30, 2016 at 02:57:09PM +0200, Thomas Petazzoni wrote:
> The Designware PCIe controllers have a built-in MSI controller, which is
> already supported by the existing. However, in some situations, it might
^ driver.
> be a better choice to use an external MSI controller, especially when it
> provides a higher number of MSI interrupts than the built-in one.
>
> Therefore, this commit extends the pcie-designware driver to support the
> "msi-parent" DT property, already used by other drivers. It contains a
> phandle pointing to the external MSI controller to be used.
>
> Following this commit, the pcie-designware code supports three
> possibilities, in this order:
>
> 1. If msi-parent is provided, then the MSI controller pointed by this
^ to
> property is used.
> if (IS_ENABLED(CONFIG_PCI_MSI)) {
> - if (!pp->ops->msi_host_init) {
> + if (of_find_property(pp->dev->of_node, "msi-parent", NULL)) {
> + struct device_node *msi_node;
> +
> + msi_node = of_parse_phandle(pp->dev->of_node,
> + "msi-parent", 0);
> + if (!msi_node)
> + return -ENODEV;
> +
> + msi = of_pci_find_msi_chip_by_node(msi_node);
By this point, device tree tells us the external MSI controller
should exist. So if we get a NULL here, should we not return
-EPROBE_DIFFERED?
Andrew
WARNING: multiple messages have this Message-ID (diff)
From: andrew@lunn.ch (Andrew Lunn)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] pci: pcie-designware: add support for external MSI controller
Date: Tue, 30 Aug 2016 15:11:31 +0200 [thread overview]
Message-ID: <20160830131131.GA8295@lunn.ch> (raw)
In-Reply-To: <1472561830-20932-3-git-send-email-thomas.petazzoni@free-electrons.com>
On Tue, Aug 30, 2016 at 02:57:09PM +0200, Thomas Petazzoni wrote:
> The Designware PCIe controllers have a built-in MSI controller, which is
> already supported by the existing. However, in some situations, it might
^ driver.
> be a better choice to use an external MSI controller, especially when it
> provides a higher number of MSI interrupts than the built-in one.
>
> Therefore, this commit extends the pcie-designware driver to support the
> "msi-parent" DT property, already used by other drivers. It contains a
> phandle pointing to the external MSI controller to be used.
>
> Following this commit, the pcie-designware code supports three
> possibilities, in this order:
>
> 1. If msi-parent is provided, then the MSI controller pointed by this
^ to
> property is used.
> if (IS_ENABLED(CONFIG_PCI_MSI)) {
> - if (!pp->ops->msi_host_init) {
> + if (of_find_property(pp->dev->of_node, "msi-parent", NULL)) {
> + struct device_node *msi_node;
> +
> + msi_node = of_parse_phandle(pp->dev->of_node,
> + "msi-parent", 0);
> + if (!msi_node)
> + return -ENODEV;
> +
> + msi = of_pci_find_msi_chip_by_node(msi_node);
By this point, device tree tells us the external MSI controller
should exist. So if we get a NULL here, should we not return
-EPROBE_DIFFERED?
Andrew
next prev parent reply other threads:[~2016-08-30 13:11 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-30 12:57 [PATCH 0/3] pcie-designware: support for external MSI controller Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 12:57 ` [PATCH 1/3] dt-bindings: designware-pcie: document optional msi-parent property Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-09-02 15:01 ` Rob Herring
2016-09-02 15:01 ` Rob Herring
2016-09-02 15:01 ` Rob Herring
2016-08-30 12:57 ` [PATCH 2/3] pci: pcie-designware: add support for external MSI controller Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 13:11 ` Andrew Lunn [this message]
2016-08-30 13:11 ` Andrew Lunn
2016-08-30 12:57 ` [PATCH 3/3] arm64: dts: marvell: enable MSI for PCIe on Armada 7K/8K Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 12:57 ` Thomas Petazzoni
2016-08-30 15:24 ` [PATCH 0/3] pcie-designware: support for external MSI controller Thomas Petazzoni
2016-08-30 15:24 ` Thomas Petazzoni
2016-08-30 15:46 ` Jingoo Han
2016-08-30 15:46 ` Jingoo Han
2016-08-30 15:46 ` Jingoo Han
2016-08-30 16:06 ` Thomas Petazzoni
2016-08-30 16:06 ` Thomas Petazzoni
2016-08-30 16:06 ` Thomas Petazzoni
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=20160830131131.GA8295@lunn.ch \
--to=andrew@lunn.ch \
--cc=bhelgaas@google.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=gregory.clement@free-electrons.com \
--cc=ijc+devicetree@hellion.org.uk \
--cc=jason@lakedaemon.net \
--cc=jingoohan1@gmail.com \
--cc=jpinto@synopsys.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=nadavh@marvell.com \
--cc=pawel.moll@arm.com \
--cc=pratyush.anand@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sebastian.hesselbarth@gmail.com \
--cc=shadi@marvell.com \
--cc=thomas.petazzoni@free-electrons.com \
--cc=yehuday@marvell.com \
/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.