From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42223C282C2 for ; Wed, 13 Feb 2019 19:45:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0CA98218D3 for ; Wed, 13 Feb 2019 19:45:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550087150; bh=82ZQdh++ACSa/i2nQkKqXYlYb2Vcf9b7bMyFMDAPAek=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=THC1QojmqzJm4kGcHJNKA++KjukBm38WNSdbF+DAtuWkM+dWJswxz5e779vugg3E8 qSVmpDRq0mu8frpk93bbMWWS9d532ShjfM3YvC8OJGHylX1q24/x2Op/zbUVyJ2Dmu TIiEPBs5cJZTwZtJtTLe+5j3LhNEUWSFTkB9+TSg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730422AbfBMTpt (ORCPT ); Wed, 13 Feb 2019 14:45:49 -0500 Received: from mail.kernel.org ([198.145.29.99]:50032 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729156AbfBMTpt (ORCPT ); Wed, 13 Feb 2019 14:45:49 -0500 Received: from localhost (unknown [64.22.249.253]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 61A7121872; Wed, 13 Feb 2019 19:45:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550087147; bh=82ZQdh++ACSa/i2nQkKqXYlYb2Vcf9b7bMyFMDAPAek=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RNn2aF3lDkwpteJ9KdSiFXPApq1St2XRGBXMTlPw8la0DIdY9kyg2UdR7VLrQNcrL +w9wqUZFcQbZ2w/9DYq6KY//HWvEmxMvrMhgird8iUtiToV/wCHxVVLmykhj7fwMBd BYpmt3e1Rfpppa+8g+Mn4SqJfblGzfYywmyYdS+0= Date: Wed, 13 Feb 2019 13:45:46 -0600 From: Bjorn Helgaas To: sathyanarayanan.kuppuswamy@linux.intel.com Cc: joro@8bytes.org, dwmw2@infradead.org, linux-pci@vger.kernel.org, iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org, ashok.raj@intel.com, jacob.jun.pan@intel.com, keith.busch@intel.com, Jacob Pan Subject: Re: [PATCH v2 1/2] PCI/ATS: Add pci_ats_page_aligned() interface Message-ID: <20190213194546.GJ96272@google.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org On Mon, Feb 11, 2019 at 01:44:34PM -0800, sathyanarayanan.kuppuswamy@linux.intel.com wrote: > From: Kuppuswamy Sathyanarayanan > > Return the Page Aligned Request bit in the ATS Capability Register. > > As per PCIe spec r4.0, sec 10.5.1.2, If Page Aligned Request bit is > set, then it indicates the Untranslated Addresses generated by the > device are alwayis always aligned to a 4096 byte boundary. s/, If/, if the/ s/then it/it/ s/alwayis// > This interface will be used by drivers like IOMMU, if it is required > to check whether the Untranslated Address generated by the device will > be aligned before enabling the ATS service. Maybe something like this? An IOMMU that can only translate page-aligned addresses can only be used with devices that always produce aligned Untranslated Addresses. This interface will be used by drivers for such IOMMUs to determine whether devices can use the ATS service. > Cc: Ashok Raj > Cc: Jacob Pan > Cc: Keith Busch > Suggested-by: Ashok Raj > Signed-off-by: Kuppuswamy Sathyanarayanan With typos addressed (more below), Acked-by: Bjorn Helgaas > --- > drivers/pci/ats.c | 27 +++++++++++++++++++++++++++ > include/linux/pci.h | 2 ++ > include/uapi/linux/pci_regs.h | 1 + > 3 files changed, 30 insertions(+) > > diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c > index 5b78f3b1b918..b3c7f1496081 100644 > --- a/drivers/pci/ats.c > +++ b/drivers/pci/ats.c > @@ -142,6 +142,33 @@ int pci_ats_queue_depth(struct pci_dev *dev) > } > EXPORT_SYMBOL_GPL(pci_ats_queue_depth); > > +/** > + * pci_ats_page_aligned - Return Page Aligned Request bit status. > + * @pdev: the PCI device > + * > + * Returns 1, if Untranslated Addresses generated by the device are > + * always aligned or 0 otherwise. > + * > + * Per PCIe spec r4.0, sec 10.5.1.2, If Page Aligned Request bit is > + * set, it indicates the Untranslated Addresses generated by the > + * device are always aligned to a 4096 byte boundary. s/, If/, if the/ > + */ > +int pci_ats_page_aligned(struct pci_dev *pdev) > +{ > + u16 cap; > + > + if (!pdev->ats_cap) > + return 0; > + > + pci_read_config_word(pdev, pdev->ats_cap + PCI_ATS_CAP, &cap); > + > + if (cap & PCI_ATS_CAP_PAGE_ALIGNED) > + return 1; > + > + return 0; > +} > +EXPORT_SYMBOL_GPL(pci_ats_page_aligned); > + > #ifdef CONFIG_PCI_PRI > /** > * pci_enable_pri - Enable PRI capability > diff --git a/include/linux/pci.h b/include/linux/pci.h > index 65f1d8c2f082..9724a8c0496b 100644 > --- a/include/linux/pci.h > +++ b/include/linux/pci.h > @@ -1524,11 +1524,13 @@ void pci_ats_init(struct pci_dev *dev); > int pci_enable_ats(struct pci_dev *dev, int ps); > void pci_disable_ats(struct pci_dev *dev); > int pci_ats_queue_depth(struct pci_dev *dev); > +int pci_ats_page_aligned(struct pci_dev *dev); > #else > static inline void pci_ats_init(struct pci_dev *d) { } > static inline int pci_enable_ats(struct pci_dev *d, int ps) { return -ENODEV; } > static inline void pci_disable_ats(struct pci_dev *d) { } > static inline int pci_ats_queue_depth(struct pci_dev *d) { return -ENODEV; } > +static inline int pci_ats_page_aligned(struct pci_dev *dev) { return 0; } > #endif > > #ifdef CONFIG_PCIE_PTM > diff --git a/include/uapi/linux/pci_regs.h b/include/uapi/linux/pci_regs.h > index e1e9888c85e6..7973bb02ed4b 100644 > --- a/include/uapi/linux/pci_regs.h > +++ b/include/uapi/linux/pci_regs.h > @@ -866,6 +866,7 @@ > #define PCI_ATS_CAP 0x04 /* ATS Capability Register */ > #define PCI_ATS_CAP_QDEP(x) ((x) & 0x1f) /* Invalidate Queue Depth */ > #define PCI_ATS_MAX_QDEP 32 /* Max Invalidate Queue Depth */ > +#define PCI_ATS_CAP_PAGE_ALIGNED 0x0020 /* Page Aligned Request */ > #define PCI_ATS_CTRL 0x06 /* ATS Control Register */ > #define PCI_ATS_CTRL_ENABLE 0x8000 /* ATS Enable */ > #define PCI_ATS_CTRL_STU(x) ((x) & 0x1f) /* Smallest Translation Unit */ > -- > 2.20.1 >