From: <Daire.McNamara@microchip.com>
To: <robh+dt@kernel.org>
Cc: <Cyril.Jean@microchip.com>, <linux-riscv@lists.infradead.org>,
<kw@linux.com>, <Conor.Dooley@microchip.com>,
<david.abdurachmanov@gmail.com>, <devicetree@vger.kernel.org>,
<lpieralisi@kernel.org>, <aou@eecs.berkeley.edu>,
<palmer@dabbelt.com>, <paul.walmsley@sifive.com>,
<linux-pci@vger.kernel.org>, <Padmarao.Begari@microchip.com>,
<krzysztof.kozlowski+dt@linaro.org>, <bhelgaas@google.com>,
<heinrich.schuchardt@canonical.com>
Subject: Re: [PATCH v1 1/4] dt-bindings: PCI: microchip: add fabric address translation properties
Date: Mon, 5 Sep 2022 14:54:07 +0000 [thread overview]
Message-ID: <173950d1b76e13c1476f196afc0e804e93d6e602.camel@microchip.com> (raw)
In-Reply-To: <CAL_Jsq+5pKyOL8eu5YhQy9pLATd_gG_D71sR8bUp1GA6kif=nA@mail.gmail.com>
On Fri, 2022-09-02 at 11:28 -0500, Rob Herring wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
> On Fri, Sep 2, 2022 at 9:22 AM <daire.mcnamara@microchip.com> wrote:
> > From: Conor Dooley <conor.dooley@microchip.com>
> >
> > On PolarFire SoC both in- & out-bound address translations occur in two
> > stages. The specific translations are tightly coupled to the FPGA
> > designs and supplement the {dma-,}ranges properties. The first stage of
> > the translation is done by the FPGA fabric & the second by the root
> > port.
> > Add two properties so that the translation tables in the root port's
> > bridge layer can be configured to account for the translation done by
> > the FPGA fabric.
>
> I'm skeptical that ranges/dma-ranges can't handle what you need.
> Anything in this area is going to need justification 'ranges doesn't
> work because x, y, z...'.
>
> > Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
> > Signed-off-by: Daire McNamara <daire.mcnamara@microchip.com>
> > ---
> > .../bindings/pci/microchip,pcie-host.yaml | 107 ++++++++++++++++++
> > 1 file changed, 107 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/pci/microchip,pcie-host.yaml b/Documentation/devicetree/bindings/pci/microchip,pcie-host.yaml
> > index 23d95c65acff..29bb1fe99a2e 100644
> > --- a/Documentation/devicetree/bindings/pci/microchip,pcie-host.yaml
> > +++ b/Documentation/devicetree/bindings/pci/microchip,pcie-host.yaml
> > @@ -71,6 +71,113 @@ properties:
> > minItems: 1
> > maxItems: 6
> >
> > + microchip,outbound-fabric-translation-ranges:
> > + $ref: /schemas/types.yaml#/definitions/uint32-matrix
> > + minItems: 1
> > + maxItems: 32
> > + description: |
> > + The CPU-to-PCIe (outbound) address translation takes place in two stages.
> > + Depending on the FPGA bitstream, the outbound address translation tables
> > + in the PCIe root port's bridge layer will need to be configured to account
> > + for only its part of the overall outbound address translation.
> > +
> > + The first stage of outbound address translation occurs between the CPU address
> > + and an intermediate "FPGA address". The second stage of outbound address
> > + translation occurs between this FPGA address and the PCIe address. Use this
> > + property, in conjunction with the ranges property, to divide the overall
> > + address translation into these two stages so that the PCIe address
> > + translation tables can be correctly configured.
>
> Sounds like you need 2 levels of ranges/dma-ranges.
>
> / {
> fpga-bus {
> ranges = ...
> dma-ranges = ...
> pcie@... {
> ranges = ...
> dma-ranges = ...
> };
> };
> };
Thanks a million for looking at this! Very much appreciated.
So, this is what I tried. I've cut down the dts I used to what I think is the minimum
fragment to discuss the issue I'm facing.
So, I replaced this stanza:
pcie: pcie@3000000000 {
...
reg = <0x30 0x0 0x0 0x8000000>, <0x0 0x43000000 0x0 0x10000>;
reg-names = "cfg", "apb";
ranges = <0x0000000 0x0 0x0000000 0x30 0x0000000 0x0 0x8000000>,
<0x3000000 0x0 0x8000000 0x30 0x8000000 0x0 0x80000000>;
...
};
with this two-level stanza:
fpga_bus: fpga-bus {
#address-cells = <2>;
#size-cells = <2>;
ranges = <0 0 0x30 0 0x40 0>;
compatible = "simple-bus";
...
pcie: pcie@0 {
reg = <0x0 0x0 0x0 0x8000000>, <0x0 0x43000000 0x0 0x10000>;
reg-names = "cfg", "apb";
ranges = <0x0000000 0x0 0x0000000 0 0x0000000 0x0 0x8000000>,
<0x3000000 0x0 0x8000000 0 0x8000000 0x0 0x80000000>;
...
};
};
and I ran into two problems:
1) the ranges presented to the driver via resource_list_for_each_entry(entry, &bridge->windows)
were unchanged. The start and end of both resources were still in 0x30'0000'0000 space,
not 0x0000'0000 as I'd hoped. The two levels of range had been amalgamated before
presentation to the rootport driver, so my initial problem was unchanged ...
2) a new issue cropped up. While the 'cfg' register property is in 0x30'0000'0000 space,
the 'abp' interface is actually delivered over a separate FIC and is in a 0x4000'0000
memory space. In the two-level stanza, it was now being provided to the rootport
driver at a base of 0x30'4000'0000 which is incorrect. This is very typical for
designers to route abp over a different FIC to axi.
I hope I'm making the issues clear.
Any suggestions welcome!
>
> > +
> > + If this property is present, one entry is required per range. This is so
> > + FPGA designers can choose to route different address ranges through different
> > + Fabric Interface Controllers and other logic as they see fit.
> > +
> > + If this property is not present, the entire address translation
> > + in any ranges property is attempted by the root port driver via its outbound
> > + address translation tables.
> > +
> > + Each element in this property has three components. The first is a
> > + PCIe address, the second is an FPGA address, and the third is a size.
> > + These properties may be 32 or 64 bit values.
> > +
> > + In operation, the driver will expect a one-to-one correspondance between
> > + range properties and this property. For each pair of range and
> > + outbound-fabric-translation-range properties, the root port driver will
> > + subtract the FPGA address in this property from the CPU address in the
> > + corresponding range property and use the remainder to program its
> > + outbound address translation tables.
> > +
> > + For each range, take its PCIe address and size - these are the PCIe
> > + address & size for the element. The FPGA address is derived from a given
> > + FPGA fabric design and is the address delivered by that FPGA fabric
> > + design to the Core Complex. For a trivial configuration, it is likely to be the
> > + lower 32 bits of the PCIe address in the range property and the upper
> > + bits of the base address of the Fabric Interface Controller the design uses.
> > + Otherwise, it is tightly coupled with the data path configured in the
> > + FPGA fabric between the root port and the Core Complex.
> > +
> > + For more information on the tables, see Section 1.3.3,
> > + "PCIe/AXI4 Address Translation" of the PolarFire SoC PCIe User Guide:
> > + https://www.microsemi.com/document-portal/doc_download/1245812-polarfire-fpga-and-polarfire-soc-fpga-pci-express-user-guide
> > +
> > + items:
> > + minItems: 3
> > + maxItems: 6
> > +
> > + microchip,inbound-fabric-translation-ranges:
> > + $ref: /schemas/types.yaml#/definitions/uint32-matrix
> > + minItems: 1
> > + maxItems: 32
> > + description: |
> > + The PCIe-to-CPU (inbound) address translation takes place in two stages.
> > + Depending on the FPGA bitstream, the inbound address translation tables
> > + in the PCIe root port's bridge layer will need to be configured to account
> > + for only its part of the overall inbound address translation.
> > +
> > + The first stage of address translation occurs between the PCIe address and
> > + an intermediate FPGA address. The second stage of address translation
> > + occurs between the FPGA address and the CPU address. Use this property
> > + in conjunction with the dma-ranges property to divide the address
> > + translation into these two stages.
> > +
> > + If this property is present, one entry is required per dma-range. This is so
> > + FPGA designers can choose to route different address ranges through different
> > + Fabric Interface Controllers and other logic as they see fit.
> > +
> > + If this property is not present, the entire address translation
> > + in any dma-ranges property is attempted by the root port driver via its
> > + inbound address translation tables.
> > +
> > + Each element in this property has three components. The first is a
> > + PCIe address, the second is an FPGA address, and the third is a size.
> > + These properties may be 32 or 64 bit values.
> > +
> > + In operation, the driver will expect a one-to-one correspondance between
> > + dma-range properties and this property. For each pair of dma-range and
> > + inbound-fabric-translation-range properties, the root port driver will
> > + subtract the FPGA address in this property from the CPU address in the
> > + corresponding dma-range property and use the remainder to program its
> > + inbound address translation tables.
> > +
> > + From each dma-range, take its PCIe address and size - these are the PCIe
> > + address & size for the element. The FPGA address is derived from a given
> > + FPGA fabric design and is the address delivered by that FPGA fabric
> > + design to the Core Complex. For a trivial configuration, this property
> > + is unlikely to be required (i.e. no fabric translation on the inbound
> > + interface). Otherwise, it is tightly coupled with the inbound data path
> > + configured in the FPGA fabric between the root port and the Core Complex.
> > + It is expected that more than one translation range may be added to
> > + an FPGA fabric design, e.g. to deliver data to cached or non-cached
> > + DDR.
> > +
> > + For more information on the tables, see Section 1.3.3,
> > + "PCIe/AXI4 Address Translation" of the PolarFire SoC PCIe User Guide:
> > + https://www.microsemi.com/document-portal/doc_download/1245812-polarfire-fpga-and-polarfire-soc-fpga-pci-express-user-guide
> > +
> > + items:
> > + minItems: 4
> > + maxItems: 7
> > +
> > msi-controller:
> > description: Identifies the node as an MSI controller.
> >
> > --
> > 2.25.1
> >
next prev parent reply other threads:[~2022-09-05 14:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-02 14:21 [PATCH v1 0/4] PCI: microchip: apportion address translation between rootport and FPGA daire.mcnamara
2022-09-02 14:21 ` [PATCH v1 1/4] dt-bindings: PCI: microchip: add fabric address translation properties daire.mcnamara
2022-09-02 16:28 ` Rob Herring
2022-09-02 16:51 ` Daire.McNamara
2022-09-05 14:54 ` Daire.McNamara [this message]
2022-09-08 20:57 ` Rob Herring
2022-09-02 14:22 ` [PATCH v1 2/4] riscv: dts: " daire.mcnamara
2022-09-02 14:29 ` Conor.Dooley
2022-09-02 14:22 ` [PATCH v1 3/4] PCI: " daire.mcnamara
2022-09-02 16:49 ` Bjorn Helgaas
2022-09-02 16:54 ` Daire.McNamara
2022-09-02 14:22 ` [PATCH v1 4/4] of: PCI: tidy up logging of ranges containing configuration space type daire.mcnamara
2022-09-08 20:59 ` Rob Herring
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=173950d1b76e13c1476f196afc0e804e93d6e602.camel@microchip.com \
--to=daire.mcnamara@microchip.com \
--cc=Conor.Dooley@microchip.com \
--cc=Cyril.Jean@microchip.com \
--cc=Padmarao.Begari@microchip.com \
--cc=aou@eecs.berkeley.edu \
--cc=bhelgaas@google.com \
--cc=david.abdurachmanov@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=heinrich.schuchardt@canonical.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=kw@linux.com \
--cc=linux-pci@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=lpieralisi@kernel.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.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;
as well as URLs for NNTP newsgroup(s).