From: Manivannan Sadhasivam <mani@kernel.org>
To: Jianjun Wang <jianjun.wang@mediatek.com>
Cc: "Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kw@linux.com>,
"Rob Herring" <robh@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Marc Zyngier" <maz@kernel.org>,
"Ryder Lee" <ryder.lee@mediatek.com>,
linux-pci@vger.kernel.org, linux-mediatek@lists.infradead.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, jieyy.yang@mediatek.com,
chuanjia.liu@mediatek.com, qizhong.cheng@mediatek.com,
jian.yang@mediatek.com, jianguo.zhang@mediatek.com
Subject: Re: [PATCH v2 1/3] PCI: mediatek: Allocate MSI address with dmam_alloc_coherent()
Date: Sat, 8 Jun 2024 14:31:52 +0530 [thread overview]
Message-ID: <20240608090152.GB3282@thinkpad> (raw)
In-Reply-To: <20231211085256.31292-2-jianjun.wang@mediatek.com>
On Mon, Dec 11, 2023 at 04:52:54PM +0800, Jianjun Wang wrote:
> Use dmam_alloc_coherent() to allocate the MSI address, instead of using
> virt_to_phys().
>
What is the reason for this change? So now PCIE_MSI_VECTOR becomes unused?
- Mani
> Signed-off-by: Jianjun Wang <jianjun.wang@mediatek.com>
> ---
> drivers/pci/controller/pcie-mediatek.c | 24 ++++++++++++++++--------
> 1 file changed, 16 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/pci/controller/pcie-mediatek.c b/drivers/pci/controller/pcie-mediatek.c
> index 66a8f73296fc..2fb9e44369f8 100644
> --- a/drivers/pci/controller/pcie-mediatek.c
> +++ b/drivers/pci/controller/pcie-mediatek.c
> @@ -178,6 +178,7 @@ struct mtk_pcie_soc {
> * @phy: pointer to PHY control block
> * @slot: port slot
> * @irq: GIC irq
> + * @msg_addr: MSI message address
> * @irq_domain: legacy INTx IRQ domain
> * @inner_domain: inner IRQ domain
> * @msi_domain: MSI IRQ domain
> @@ -198,6 +199,7 @@ struct mtk_pcie_port {
> struct phy *phy;
> u32 slot;
> int irq;
> + dma_addr_t msg_addr;
> struct irq_domain *irq_domain;
> struct irq_domain *inner_domain;
> struct irq_domain *msi_domain;
> @@ -394,12 +396,10 @@ static struct pci_ops mtk_pcie_ops_v2 = {
> static void mtk_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
> {
> struct mtk_pcie_port *port = irq_data_get_irq_chip_data(data);
> - phys_addr_t addr;
>
> /* MT2712/MT7622 only support 32-bit MSI addresses */
> - addr = virt_to_phys(port->base + PCIE_MSI_VECTOR);
> msg->address_hi = 0;
> - msg->address_lo = lower_32_bits(addr);
> + msg->address_lo = lower_32_bits(port->msg_addr);
>
> msg->data = data->hwirq;
>
> @@ -494,6 +494,14 @@ static struct msi_domain_info mtk_msi_domain_info = {
> static int mtk_pcie_allocate_msi_domains(struct mtk_pcie_port *port)
> {
> struct fwnode_handle *fwnode = of_node_to_fwnode(port->pcie->dev->of_node);
> + void *msi_vaddr;
> +
> + msi_vaddr = dmam_alloc_coherent(port->pcie->dev, sizeof(dma_addr_t), &port->msg_addr,
> + GFP_KERNEL);
> + if (!msi_vaddr) {
> + dev_err(port->pcie->dev, "failed to alloc and map MSI address\n");
> + return -ENOMEM;
> + }
>
> mutex_init(&port->lock);
>
> @@ -501,6 +509,7 @@ static int mtk_pcie_allocate_msi_domains(struct mtk_pcie_port *port)
> &msi_domain_ops, port);
> if (!port->inner_domain) {
> dev_err(port->pcie->dev, "failed to create IRQ domain\n");
> + dmam_free_coherent(port->pcie->dev, sizeof(dma_addr_t), msi_vaddr, port->msg_addr);
> return -ENOMEM;
> }
>
> @@ -508,6 +517,7 @@ static int mtk_pcie_allocate_msi_domains(struct mtk_pcie_port *port)
> port->inner_domain);
> if (!port->msi_domain) {
> dev_err(port->pcie->dev, "failed to create MSI domain\n");
> + dmam_free_coherent(port->pcie->dev, sizeof(dma_addr_t), msi_vaddr, port->msg_addr);
> irq_domain_remove(port->inner_domain);
> return -ENOMEM;
> }
> @@ -518,10 +528,8 @@ static int mtk_pcie_allocate_msi_domains(struct mtk_pcie_port *port)
> static void mtk_pcie_enable_msi(struct mtk_pcie_port *port)
> {
> u32 val;
> - phys_addr_t msg_addr;
>
> - msg_addr = virt_to_phys(port->base + PCIE_MSI_VECTOR);
> - val = lower_32_bits(msg_addr);
> + val = lower_32_bits(port->msg_addr);
> writel(val, port->base + PCIE_IMSI_ADDR);
>
> val = readl(port->base + PCIE_INT_MASK);
> @@ -588,7 +596,7 @@ static int mtk_pcie_init_irq_domain(struct mtk_pcie_port *port,
> if (IS_ENABLED(CONFIG_PCI_MSI)) {
> ret = mtk_pcie_allocate_msi_domains(port);
> if (ret)
> - return ret;
> + dev_warn(dev, "no MSI supported, only INTx available\n");
> }
>
> return 0;
> @@ -732,7 +740,7 @@ static int mtk_pcie_startup_port_v2(struct mtk_pcie_port *port)
> val &= ~INTX_MASK;
> writel(val, port->base + PCIE_INT_MASK);
>
> - if (IS_ENABLED(CONFIG_PCI_MSI))
> + if (IS_ENABLED(CONFIG_PCI_MSI) && port->msi_domain)
> mtk_pcie_enable_msi(port);
>
> /* Set AHB to PCIe translation windows */
> --
> 2.18.0
>
>
--
மணிவண்ணன் சதாசிவம்
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-06-08 9:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-11 8:52 [PATCH v2 0/3] PCI: mediatek: Allocate MSI address with dmam_alloc_coherent() Jianjun Wang
2023-12-11 8:52 ` [PATCH v2 1/3] " Jianjun Wang
2024-06-08 9:01 ` Manivannan Sadhasivam [this message]
2024-06-09 12:32 ` Marc Zyngier
2024-06-11 17:21 ` Bjorn Helgaas
2023-12-11 8:52 ` [PATCH v2 2/3] PCI: mediatek-gen3: Do not break probe flow when MSI init fails Jianjun Wang
2023-12-11 8:52 ` [PATCH v2 3/3] PCI: mediatek-gen3: Allocate MSI address with dmam_alloc_coherent() Jianjun Wang
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=20240608090152.GB3282@thinkpad \
--to=mani@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bhelgaas@google.com \
--cc=chuanjia.liu@mediatek.com \
--cc=jian.yang@mediatek.com \
--cc=jianguo.zhang@mediatek.com \
--cc=jianjun.wang@mediatek.com \
--cc=jieyy.yang@mediatek.com \
--cc=kw@linux.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=maz@kernel.org \
--cc=qizhong.cheng@mediatek.com \
--cc=robh@kernel.org \
--cc=ryder.lee@mediatek.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 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).