From: Frank Li <Frank.li@nxp.com>
To: Rob Herring <robh@kernel.org>
Cc: conor@kernel.org, bhelgaas@google.com, conor+dt@kernel.org,
devicetree@vger.kernel.org, helgaas@kernel.org,
imx@lists.linux.dev, krzysztof.kozlowski+dt@linaro.org,
kw@linux.com, linux-kernel@vger.kernel.org,
linux-pci@vger.kernel.org, lpieralisi@kernel.org
Subject: Re: [PATCH v6 3/3] dt-bindings: pci: layerscape-pci-ep: Add snps,dw-pcie-ep.yaml reference
Date: Tue, 5 Mar 2024 10:30:27 -0500 [thread overview]
Message-ID: <Zec6k0NRu9U6N932@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20240305143719.GA3310214-robh@kernel.org>
On Tue, Mar 05, 2024 at 08:37:19AM -0600, Rob Herring wrote:
> On Mon, Mar 04, 2024 at 02:08:41PM -0500, Frank Li wrote:
> > On Mon, Mar 04, 2024 at 12:20:49PM -0600, Rob Herring wrote:
> > > On Fri, Mar 01, 2024 at 11:27:41AM -0500, Frank Li wrote:
> > > > Add snps,dw-pcie-ep.yaml.
> > > >
> > > > Remove context that exist in snps,dw-pcie-ep.yaml.
> > > >
> > > > Add an example for pcie-ep.
> > > >
> > > > Signed-off-by: Frank Li <Frank.Li@nxp.com>
> > > > ---
> > > > .../bindings/pci/fsl,layerscape-pcie-ep.yaml | 54 ++++++++++---------
> > > > 1 file changed, 29 insertions(+), 25 deletions(-)
> > > >
> > > > diff --git a/Documentation/devicetree/bindings/pci/fsl,layerscape-pcie-ep.yaml b/Documentation/devicetree/bindings/pci/fsl,layerscape-pcie-ep.yaml
> > > > index cf517e4e46a33..07965683beece 100644
> > > > --- a/Documentation/devicetree/bindings/pci/fsl,layerscape-pcie-ep.yaml
> > > > +++ b/Documentation/devicetree/bindings/pci/fsl,layerscape-pcie-ep.yaml
> > > > @@ -10,8 +10,7 @@ maintainers:
> > > > - Frank Li <Frank.Li@nxp.com>
> > > >
> > > > description:
> > > > - This PCIe RC controller is based on the Synopsys DesignWare PCIe IP
> > > > - and thus inherits all the common properties defined in snps,dw-pcie.yaml.
> > > > + This PCIe RC controller is based on the Synopsys DesignWare PCIe IP.
> > > >
> > > > This controller derives its clocks from the Reset Configuration Word (RCW)
> > > > which is used to describe the PLL settings at the time of chip-reset.
> > > > @@ -35,31 +34,18 @@ properties:
> > > > - const: fsl,ls-pcie-ep
> > > >
> > > > reg:
> > > > - description: base addresses and lengths of the PCIe controller register blocks.
> > > > + maxItems: 2
> > > > +
> > > > + reg-names:
> > > > + maxItems: 2
> > > >
> > > > interrupts:
> > > > - description: A list of interrupt outputs of the controller. Must contain an
> > > > - entry for each entry in the interrupt-names property.
> > > > + minItems: 1
> > > > + maxItems: 3
> > > >
> > > > interrupt-names:
> > > > minItems: 1
> > > > maxItems: 3
> > > > - description: It could include the following entries.
> > > > - items:
> > > > - oneOf:
> > > > - - description:
> > > > - Used for interrupt line which reports AER events when
> > > > - non MSI/MSI-X/INTx mode is used.
> > > > - const: aer
> > > > - - description:
> > > > - Used for interrupt line which reports PME events when
> > > > - non MSI/MSI-X/INTx mode is used.
> > > > - const: pme
> > > > - - description:
> > > > - Used for SoCs(like ls2080a, lx2160a, ls2080a, ls2088a, ls1088a)
> > > > - which has a single interrupt line for miscellaneous controller
> > > > - events(could include AER and PME events).
> > > > - const: intr
> > > >
> > > > fsl,pcie-scfg:
> > > > $ref: /schemas/types.yaml#/definitions/phandle
> > > > @@ -68,10 +54,7 @@ properties:
> > > > The second entry is the physical PCIe controller index starting from '0'.
> > > > This is used to get SCFG PEXN registers
> > > >
> > > > - dma-coherent:
> > > > - description: Indicates that the hardware IP block can ensure the coherency
> > > > - of the data transferred from/to the IP block. This can avoid the software
> > > > - cache flush/invalid actions, and improve the performance significantly
> > > > + dma-coherent: true
> > > >
> > > > big-endian:
> > > > $ref: /schemas/types.yaml#/definitions/flag
> > > > @@ -85,3 +68,24 @@ required:
> > > > - reg
> > > > - interrupt-names
> > > >
> > > > +allOf:
> > > > + - $ref: /schemas/pci/snps,dw-pcie-ep.yaml#
> > > > +
> > > > +examples:
> > > > + - |
> > > > + #include <dt-bindings/interrupt-controller/arm-gic.h>
> > > > +
> > > > + soc {
> > > > + #address-cells = <2>;
> > > > + #size-cells = <2>;
> > > > +
> > > > + pcie-ep@3400000 {
> > > > + compatible = "fsl,ls1028a-pcie-ep", "fsl,ls-pcie-ep";
> > > > + reg = <0x00 0x03400000 0x0 0x00100000
> > > > + 0x80 0x00000000 0x8 0x00000000>;
> > > > + reg-names = "dbi", "addr_space";
> > > > + interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>; /* PME interrupt */
> > >
> > > PME or...
> > >
> > > > + interrupt-names = "app";
> > >
> > > app? You seem to just be changing the names to make the example happy.
> > > What do the dts files have? You need to make those pass.
> >
> > It's on my plan.
> >
> > First need change 'regs' to 'dbi'.
> >
> > https://lore.kernel.org/linux-pci/20240229194559.709182-1-Frank.Li@nxp.com/
> >
> > After that, I can update all dts.
>
> No!
>
> I'm saying you shouldn't be changing the dts files. That's an ABI
> which you are likely breaking. You should adjust the binding so the dts
> files pass. The exception is if you know the change is safe and not
> going to break the ABI or the dts is just been wrong all along (e.g.
> missing a compatible the OS doesn't rely on).
The problem is that I have not method to make dts check without warning.
If using snps,dw-pcie-ep.yaml/snps,dw-pcie.yaml, it always complain 'regs'
and 'pme'.
If update snps,dw-pcie-ep-.yaml/snps,dw-pcie.yaml, there are two name
'regs' and 'dbi' will be the same thing. it should be bad.
If don't included snps,dw-pcie-ep-.yaml/snps,dw-pcie.yaml, I have to
duplicate most parts, which already in these files.
If you have good method, let me know.
Frank
>
> Rob
prev parent reply other threads:[~2024-03-05 15:30 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-01 16:27 [PATCH v6 0/3] dt-bindings: pci: layerscape-pci: Convert to yaml format Frank Li
2024-03-01 16:27 ` [PATCH v6 1/3] " Frank Li
2024-03-04 17:32 ` Rob Herring
2024-03-04 17:47 ` Frank Li
2024-03-05 14:46 ` Rob Herring
2024-03-05 15:25 ` Frank Li
2024-03-11 3:08 ` Frank Li
2024-03-01 16:27 ` [PATCH v6 2/3] dt-bindings: pci: layerscape-pci: Add snps,dw-pcie.yaml reference Frank Li
2024-03-04 18:17 ` Rob Herring
2024-03-04 19:10 ` Frank Li
2024-03-01 16:27 ` [PATCH v6 3/3] dt-bindings: pci: layerscape-pci-ep: Add snps,dw-pcie-ep.yaml reference Frank Li
2024-03-04 18:20 ` Rob Herring
2024-03-04 19:08 ` Frank Li
2024-03-05 14:37 ` Rob Herring
2024-03-05 15:30 ` Frank Li [this message]
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=Zec6k0NRu9U6N932@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=helgaas@kernel.org \
--cc=imx@lists.linux.dev \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=kw@linux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=robh@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