From: Srinath Mannam <srinath.mannam@broadcom.com>
To: Rob Herring <robh+dt@kernel.org>, Joerg Roedel <joro@8bytes.org>,
Bjorn Helgaas <bhelgaas@google.com>,
Mark Rutland <mark.rutland@arm.com>,
Frank Rowand <frowand.list@gmail.com>
Cc: iommu@lists.linux-foundation.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
bcm-kernel-feedback-list@broadcom.com,
Srinath Mannam <srinath.mannam@broadcom.com>,
Anup Patel <anup.patel@broadcom.com>,
Oza Pawandeep <oza.oza@broadcom.com>
Subject: [RFC PATCH 1/2] dt-bindings: pci: Add drop mask property for MSI and IOMMU
Date: Fri, 7 Jul 2017 12:39:58 +0530 [thread overview]
Message-ID: <1499411399-25103-2-git-send-email-srinath.mannam@broadcom.com> (raw)
In-Reply-To: <1499411399-25103-1-git-send-email-srinath.mannam@broadcom.com>
This patch adds info about optional DT properties
iommu-map-drop-mask and msi-map-drop-mask.
A drop mask represents the bits which will be
removed/dropped by system from Requester ID before
mapping it to msi ID or stream ID.
Signed-off-by: Anup Patel <anup.patel@broadcom.com>
Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com>
Signed-off-by: Srinath Mannam <srinath.mannam@broadcom.com>
Reviewed-by: Ray Jui <ray.jui@broadcom.com>
Reviewed-by: Scott Branden <scott.branden@broadcom.com>
---
.../devicetree/bindings/pci/pci-iommu.txt | 31 ++++++++++++++++++++
Documentation/devicetree/bindings/pci/pci-msi.txt | 33 ++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/Documentation/devicetree/bindings/pci/pci-iommu.txt b/Documentation/devicetree/bindings/pci/pci-iommu.txt
index 0def586..499cb27 100644
--- a/Documentation/devicetree/bindings/pci/pci-iommu.txt
+++ b/Documentation/devicetree/bindings/pci/pci-iommu.txt
@@ -44,6 +44,9 @@ Optional properties
- iommu-map-mask: A mask to be applied to each Requester ID prior to being
mapped to an IOMMU specifier per the iommu-map property.
+- iommu-map-drop-mask: A drop mask represents the bits which will be
+ removed/dropped by system from Requester ID before mapping it to
+ stream ID.
Example (1)
===========
@@ -169,3 +172,31 @@ Example (4)
<0x8000 &iommu_b 0x0000 0x8000>;
};
};
+
+Example (5)
+===========
+
+/ {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ iommu: iommu@a {
+ reg = <0xa 0x1>;
+ compatible = "vendor,some-iommu";
+ #iommu-cells = <1>;
+ };
+
+ pci: pci@f {
+ reg = <0xf 0x1>;
+ compatible = "vendor,pcie-root-complex";
+ device_type = "pci";
+
+ /*
+ * The sideband data provided to the IOMMU is a 10bit
+ * data derived from the RID by dropping 4 MSBs
+ * of device number and 2 MSBs of function number.
+ */
+ iommu-map = <0x0 &iommu 0x0 0x1024>;
+ iommu-map-drop-mask = <0xff09>;
+ };
+};
diff --git a/Documentation/devicetree/bindings/pci/pci-msi.txt b/Documentation/devicetree/bindings/pci/pci-msi.txt
index 9b3cc81..1de3f39 100644
--- a/Documentation/devicetree/bindings/pci/pci-msi.txt
+++ b/Documentation/devicetree/bindings/pci/pci-msi.txt
@@ -49,6 +49,10 @@ Optional properties
- msi-map-mask: A mask to be applied to each Requester ID prior to being mapped
to an msi-specifier per the msi-map property.
+- msi-map-drop-mask: A drop mask represents the bits which will be
+ removed/dropped by system from Requester ID before mapping it to
+ msi ID.
+
- msi-parent: Describes the MSI parent of the root complex itself. Where
the root complex and MSI controller do not pass sideband data with MSI
writes, this property may be used to describe the MSI controller(s)
@@ -218,3 +222,32 @@ Example (5)
<0x0000 &msi_b 0x0000 0x10000>;
};
};
+
+Example (6)
+===========
+
+/ {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ msi: msi-controller@a {
+ reg = <0xa 0x1>;
+ compatible = "vendor,some-controller";
+ msi-controller;
+ #msi-cells = <1>;
+ };
+
+ pci: pci@f {
+ reg = <0xf 0x1>;
+ compatible = "vendor,pcie-root-complex";
+ device_type = "pci";
+
+ /*
+ * The sideband data provided to the MSI controller is
+ * a 10bit data derived from the RID by dropping
+ * 4 MSBs of device number and 2 MSBs of function number.
+ */
+ msi-map = <0x0 &msi_a 0x0 0x100>,
+ msi-map-drop-mask = <0xff09>
+ };
+};
--
2.7.4
next prev parent reply other threads:[~2017-07-07 7:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-07 7:09 [RFC PATCH 0/2] Add sideband data extraction Srinath Mannam
2017-07-07 7:09 ` Srinath Mannam [this message]
2017-07-07 13:30 ` [RFC PATCH 1/2] dt-bindings: pci: Add drop mask property for MSI and IOMMU Mark Rutland
2017-07-07 14:55 ` Robin Murphy
2017-07-07 15:22 ` Scott Branden
2017-07-07 15:42 ` Robin Murphy
2017-07-07 15:47 ` Mark Rutland
2017-07-07 7:09 ` [RFC PATCH 2/2] pcie: sideband data by dropping RID bits Srinath Mannam
2017-07-07 13:33 ` Mark Rutland
2017-07-07 13:21 ` [RFC PATCH 0/2] Add sideband data extraction Mark Rutland
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=1499411399-25103-2-git-send-email-srinath.mannam@broadcom.com \
--to=srinath.mannam@broadcom.com \
--cc=anup.patel@broadcom.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=bhelgaas@google.com \
--cc=devicetree@vger.kernel.org \
--cc=frowand.list@gmail.com \
--cc=iommu@lists.linux-foundation.org \
--cc=joro@8bytes.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=oza.oza@broadcom.com \
--cc=robh+dt@kernel.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
all inboxes | Powered by JetHome®