From: Simon Horman <simon.horman@netronome.com>
To: Jiaxun Yang <jiaxun.yang@flygoat.com>
Cc: linux-mips@vger.kernel.org, davem@davemloft.net,
robh+dt@kernel.org, mark.rutland@arm.com, axboe@kernel.dk,
peppe.cavallaro@st.com, alexandre.torgue@st.com,
joabreu@synopsys.com, bhelgaas@google.com,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-ide@vger.kernel.org, linux-pci@vger.kernel.org
Subject: Re: [PATCH 4/5] dt-bindings: net: document loongson.pci-gmac
Date: Thu, 31 Oct 2019 21:42:03 +0100 [thread overview]
Message-ID: <20191031204202.GB30739@netronome.com> (raw)
In-Reply-To: <a93eedb9-8863-3802-a563-fe4955d846c3@flygoat.com>
On Thu, Oct 31, 2019 at 06:57:16PM +0800, Jiaxun Yang wrote:
>
> 在 2019/10/31 下午4:35, Simon Horman 写道:
> > Hi Jiaxun,
> >
> > thanks for your patch.
> >
> > On Wed, Oct 30, 2019 at 09:53:46PM +0800, Jiaxun Yang wrote:
> > > This binding will provide extra information for PCI enabled
> > > device.
> > >
> > > Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
> > Please verify the bindings using dtbs_check as described in
> > Documentation/devicetree/writing-schema.rst
> >
> > > ---
> > > .../net/wireless/loongson,pci-gmac.yaml | 71 +++++++++++++++++++
> > > 1 file changed, 71 insertions(+)
> > > create mode 100644 Documentation/devicetree/bindings/net/wireless/loongson,pci-gmac.yaml
> > >
> > > diff --git a/Documentation/devicetree/bindings/net/wireless/loongson,pci-gmac.yaml b/Documentation/devicetree/bindings/net/wireless/loongson,pci-gmac.yaml
> > > new file mode 100644
> > > index 000000000000..5f764bd46735
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/net/wireless/loongson,pci-gmac.yaml
> > > @@ -0,0 +1,71 @@
> > > +# SPDX-License-Identifier: GPL-2.0
> > > +%YAML 1.2
> > > +---
> > > +$id: http://devicetree.org/schemas/net/allwinner,sun7i-a20-gmac.yaml#
> > The id does not match the filename of the schema.
> >
> > i.e. the above should be:
> >
> > $id: http://devicetree.org/schemas/net/wireless/loongson,pci-gmac.yaml#
> >
> > > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > > +
> > > +title: Loongson PCI GMAC Device Tree Bindings
> > > +
> > > +allOf:
> > > + - $ref: "snps,dwmac.yaml#"
> > snps,dwmac.yaml# is in the parent directory relative to loongson,pci-gmac.yaml.
> > So I think the above needs to be:
> >
> > $ref: "../snps,dwmac.yaml#"
> >
> > > +
> > > +maintainers:
> > > + - Jiaxun Yang <jiaxun.yang@flygoat.com>
> > > +
> > > +properties:
> > > + compatible:
> > > + const: loongson,pci-gmac
> > > +
> > > + reg:
> > > + maxItems: 1
> > > +
> > > + interrupts:
> > > + minItems: 1
> > > + maxItems: 3
> > > + items:
> > > + - description: Combined signal for various interrupt events
> > > + - description: The interrupt to manage the remote wake-up packet detection
> > > + - description: The interrupt that occurs when Rx exits the LPI state
> > > +
> > > + interrupt-names:
> > > + minItems: 1
> > > + maxItems: 3
> > > + items:
> > > + - const: macirq
> > > + - const: eth_wake_irq
> > > + - const: eth_lpi
> > > +
> > > + clocks:
> > > + items:
> > > + - description: GMAC main clock
> > > +
> > > + clock-names:
> > > + items:
> > > + - const: stmmaceth
> > > +
> > > +required:
> > > + - compatible
> > > + - reg
> > > + - interrupts
> > > + - interrupt-names
> > > + - clocks
> > > + - clock-names
> > > + - phy-mode
> > > +
> > > +examples:
> > > + - |
> > > + gmac: ethernet@ {
> > I would have expected a bus address here, f.e.:
> >
> > gmac: ethernet@0x00001800
> >
> > > + compatible = "loongson,pci-irq";
> > > + reg = <0x00001800 0 0 0 0>;
> > I think there is one to many cell in the above, perhaps it should be.
> >
> > reg = <0x00001800 0 0 0>;
> >
> > Also, I would expect the registers to be wider than 0, i.e. no registers.
>
> Hi Simon,
>
> Thanks for your suggestions above, will fix in v1.
>
> Here, the reg domain is a standard 5-cell representing a PCI device,
>
> See: Documentation/devicetree/bindings/pci/pci.txt and IEEE Std 1275-1994,<https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/pci/pci.txt>
>
> Should I add some description?
Thanks, sorry for missing that.
As that is the case I think you need something like the following
as an example that compiles.
examples:
- |
pcie@0 {
reg = <0 0 0 0>;
#size-cells = <2>;
#address-cells = <3>;
ranges = <0 0 0 0 0 0>;
device_type = "pci";
gmac: ethernet@1800 {
compatible = "loongson,pci-irq";
reg = <0x00001800 0 0 0 0>;
interrupts = <12>, <13>;
interrupt-names = "macirq", "eth_lpi";
clocks = <&clk_pch_gmac>;
clock-names = "stmmaceth";
phy-mode = "rgmii";
};
};
next prev parent reply other threads:[~2019-10-31 20:42 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-30 13:53 [PATCH 0/5] PCI Devices for Loongson PCH Jiaxun Yang
2019-10-30 13:53 ` [PATCH 1/5] PCI: pci_ids: Add Loongson IDs Jiaxun Yang
2019-10-30 20:40 ` Bjorn Helgaas
2019-10-30 13:53 ` [PATCH 2/5] net: stmmac: Split devicetree parse Jiaxun Yang
2019-11-01 12:18 ` Andrew Murray
2019-11-01 22:43 ` kbuild test robot
2019-10-30 13:53 ` [PATCH 3/5] net: stmmac: pci: Add Loongson GMAC Jiaxun Yang
2019-10-30 20:36 ` Bjorn Helgaas
2019-10-30 13:53 ` [PATCH 4/5] dt-bindings: net: document loongson.pci-gmac Jiaxun Yang
2019-10-31 8:35 ` Simon Horman
2019-10-31 10:57 ` Jiaxun Yang
2019-10-31 20:42 ` Simon Horman [this message]
2019-10-30 13:53 ` [PATCH 5/5] libata/ahci: Apply non-standard BAR fix for Loongson Jiaxun Yang
2019-10-31 10:39 ` John Garry
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=20191031204202.GB30739@netronome.com \
--to=simon.horman@netronome.com \
--cc=alexandre.torgue@st.com \
--cc=axboe@kernel.dk \
--cc=bhelgaas@google.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=jiaxun.yang@flygoat.com \
--cc=joabreu@synopsys.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=netdev@vger.kernel.org \
--cc=peppe.cavallaro@st.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).