Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752691AbbKPWCg (ORCPT ); Mon, 16 Nov 2015 17:02:36 -0500 Received: from mail-gw3-out.broadcom.com ([216.31.210.64]:60979 "EHLO mail-gw3-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751939AbbKPWCc (ORCPT ); Mon, 16 Nov 2015 17:02:32 -0500 X-IronPort-AV: E=Sophos;i="5.20,304,1444719600"; d="scan'208";a="80521093" Subject: Re: [PATCH v8] PCI: Xilinx-NWL-PCIe: Added support for Xilinx NWL PCIe Host Controller To: Marc Zyngier , Bharat Kumar Gogada , , , , , , , , , , , , , , , , References: <1447223619-30945-1-git-send-email-bharatku@xilinx.com> <5649F2D9.7070902@arm.com> CC: , , , , "Bharat Kumar Gogada" , Ravi Kiran Gummaluri From: Ray Jui Message-ID: <564A5255.3020603@broadcom.com> Date: Mon, 16 Nov 2015 14:01:57 -0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <5649F2D9.7070902@arm.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2925 Lines: 81 On 11/16/2015 7:14 AM, Marc Zyngier wrote: > On 11/11/15 06:33, Bharat Kumar Gogada wrote: >> Adding PCIe Root Port driver for Xilinx PCIe NWL bridge IP. >> >> Signed-off-by: Bharat Kumar Gogada >> Signed-off-by: Ravi Kiran Gummaluri >> --- >> Added logic to allocate contiguous hwirq in nwl_irq_domain_alloc function. >> Moved MSI functionality to separate functions. >> Changed error return values. >> --- >> .../devicetree/bindings/pci/xilinx-nwl-pcie.txt | 68 ++ >> drivers/pci/host/Kconfig | 16 +- >> drivers/pci/host/Makefile | 1 + >> drivers/pci/host/pcie-xilinx-nwl.c | 1062 ++++++++++++++++++++ >> 4 files changed, 1144 insertions(+), 3 deletions(-) >> create mode 100644 Documentation/devicetree/bindings/pci/xilinx-nwl-pcie.txt >> create mode 100644 drivers/pci/host/pcie-xilinx-nwl.c >> > > [...] > >> +static int nwl_pcie_enable_msi(struct nwl_pcie *pcie, struct pci_bus *bus) >> +{ >> + struct platform_device *pdev = to_platform_device(pcie->dev); >> + struct nwl_msi *msi = &pcie->msi; >> + unsigned long base; >> + int ret; >> + >> + mutex_init(&msi->lock); >> + >> + /* Check for msii_present bit */ >> + ret = nwl_bridge_readl(pcie, I_MSII_CAPABILITIES) & MSII_PRESENT; >> + if (!ret) { >> + dev_err(pcie->dev, "MSI not present\n"); >> + ret = -EIO; >> + goto err; >> + } >> + >> + /* Enable MSII */ >> + nwl_bridge_writel(pcie, nwl_bridge_readl(pcie, I_MSII_CONTROL) | >> + MSII_ENABLE, I_MSII_CONTROL); >> + >> + /* Enable MSII status */ >> + nwl_bridge_writel(pcie, nwl_bridge_readl(pcie, I_MSII_CONTROL) | >> + MSII_STATUS_ENABLE, I_MSII_CONTROL); >> + >> + /* setup AFI/FPCI range */ >> + msi->pages = __get_free_pages(GFP_KERNEL, 0); >> + base = virt_to_phys((void *)msi->pages); >> + nwl_bridge_writel(pcie, lower_32_bits(base), I_MSII_BASE_LO); >> + nwl_bridge_writel(pcie, upper_32_bits(base), I_MSII_BASE_HI); > > BTW, you still haven't answered my question as to why you need to waste > a page of memory here, and why putting a device address doesn't work. > > As this is (to the best of my knowledge) the only driver doing so, I'd > really like you to explain the rational behind this. Might not be the only driver doing so after I start sending out patches for the iProc MSI support (soon), :) I'm not sure how it works for the Xilinx NWL controller, which Bharat should be able to help to explain. But for the iProc MSI controller, there's no device I/O memory reserved for MSI posted writes in the ASIC. Therefore one needs to reserve host memory for these writes. Ray > > Thanks, > > M. > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/