From: Kurt Kanzenbach <kurt@linutronix.de>
To: Florian Fainelli <f.fainelli@gmail.com>,
Andrew Lunn <andrew@lunn.ch>,
Vivien Didelot <vivien.didelot@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
netdev@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
devicetree@vger.kernel.org,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Richard Cochran <richardcochran@gmail.com>,
Kamil Alkhouri <kamil.alkhouri@hs-offenburg.de>,
ilias.apalodimas@linaro.org, Vladimir Oltean <olteanv@gmail.com>
Subject: Re: [PATCH v1 8/8] dt-bindings: net: dsa: Add documentation for Hellcreek switches
Date: Mon, 13 Jul 2020 08:45:33 +0200 [thread overview]
Message-ID: <87mu43ncaa.fsf@kurt> (raw)
In-Reply-To: <92b7dca3-f56d-ecb1-59c2-0981c2b99dad@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3505 bytes --]
On Sat Jul 11 2020, Florian Fainelli wrote:
> On 7/10/2020 4:36 AM, Kurt Kanzenbach wrote:
>> Add basic documentation and example.
>>
>> Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>
>> ---
>> .../bindings/net/dsa/hellcreek.yaml | 132 ++++++++++++++++++
>> 1 file changed, 132 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/net/dsa/hellcreek.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/net/dsa/hellcreek.yaml b/Documentation/devicetree/bindings/net/dsa/hellcreek.yaml
>> new file mode 100644
>> index 000000000000..bb8ccc1762c8
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/net/dsa/hellcreek.yaml
>> @@ -0,0 +1,132 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/net/dsa/hellcreek.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Hirschmann Hellcreek TSN Switch Device Tree Bindings
>> +
>> +allOf:
>> + - $ref: dsa.yaml#
>> +
>> +maintainers:
>> + - Andrew Lunn <andrew@lunn.ch>
>> + - Florian Fainelli <f.fainelli@gmail.com>
>> + - Vivien Didelot <vivien.didelot@gmail.com>
>
> Don't you want to add yourself here as well?
Sure.
>
>> +
>> +description:
>> + The Hellcreek TSN Switch IP is a 802.1Q Ethernet compliant switch. It supports
>> + the Pricision Time Protocol, Hardware Timestamping as well the Time Aware
s/Pricision/Precision/g;
>> + Shaper.
>> +
>> +properties:
>> + compatible:
>> + oneOf:
>> + - const: hirschmann,hellcreek
>> +
>> + reg:
>> + description:
>> + The physical base address and size of TSN and PTP memory base
>
> You need to indicate how many of these cells are required.
Yes.
>
>> +
>> + reg-names:
>> + description:
>> + Names of the physical base addresses
>
> Likewise.
>
>> +
>> + '#address-cells':
>> + const: 1
>> +
>> + '#size-cells':
>> + const: 1
>
> Humm, not sure about those, you do not expose a memory mapped interface
> bus from this switch to another sub node.
True. That might be even different for other SoCs.
>
>> +
>> + leds:
>> + type: object
>> + properties:
>> + '#address-cells':
>> + const: 1
>> + '#size-cells':
>> + const: 0
>> +
>> + patternProperties:
>> + "^led@[0-9]+$":
>> + type: object
>> + description: Hellcreek leds
>> +
>> + properties:
>> + reg:
>> + items:
>> + - enum: [0, 1]
>> + description: Led number
>> +
>> + label:
>> + description: Label associated with this led
>> + $ref: /schemas/types.yaml#/definitions/string
>> +
>> + default-state:
>> + items:
>> + enum: ["on", "off", "keep"]
>> + description: Default state for the led
>> + $ref: /schemas/types.yaml#/definitions/string
>> +
>> + required:
>> + - reg
>
> Can you reference an existing LED binding by any chance?
Yes, we should reference leds/common.yaml somehow. Looking at
leds-gpio.yaml for example, it should be possible like this:
patternProperties:
"^led@[0-9]+$":
type: object
description: Hellcreek leds
$ref: ../../leds/common.yaml#
[...]
But, how to express that only label and default-state should be used?
Thanks,
Kurt
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
next prev parent reply other threads:[~2020-07-13 6:45 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-10 11:36 [PATCH v1 0/8] Hirschmann Hellcreek DSA driver Kurt Kanzenbach
2020-07-10 11:36 ` [PATCH v1 1/8] net: dsa: Add tag handling for Hirschmann Hellcreek switches Kurt Kanzenbach
2020-07-12 2:57 ` Florian Fainelli
2020-07-10 11:36 ` [PATCH v1 2/8] net: dsa: Add DSA driver " Kurt Kanzenbach
2020-07-11 20:33 ` Florian Fainelli
2020-07-13 6:30 ` Kurt Kanzenbach
2020-07-16 8:29 ` Vladimir Oltean
2020-07-16 9:23 ` Kurt Kanzenbach
2020-07-16 9:39 ` Vladimir Oltean
2020-07-16 10:06 ` Kurt Kanzenbach
2020-07-10 11:36 ` [PATCH v1 3/8] net: dsa: hellcreek: Add PTP clock support Kurt Kanzenbach
2020-07-11 20:30 ` Richard Cochran
2020-07-11 20:38 ` Florian Fainelli
2020-07-13 6:34 ` Kurt Kanzenbach
2020-07-10 11:36 ` [PATCH v1 4/8] net: dsa: hellcreek: Add support for hardware timestamping Kurt Kanzenbach
2020-07-11 20:38 ` Richard Cochran
2020-07-13 6:35 ` Kurt Kanzenbach
2020-07-13 9:57 ` Vladimir Oltean
2020-07-13 10:57 ` Kurt Kanzenbach
2020-07-13 14:01 ` Richard Cochran
2020-07-13 14:12 ` Vladimir Oltean
2020-07-13 15:38 ` Richard Cochran
2020-07-10 11:36 ` [PATCH v1 5/8] net: dsa: hellcreek: Add TAPRIO offloading support Kurt Kanzenbach
2020-07-10 11:36 ` [PATCH v1 6/8] net: dsa: hellcreek: Add PTP status LEDs Kurt Kanzenbach
2020-07-10 11:36 ` [PATCH v1 7/8] dt-bindings: Add vendor prefix for Hirschmann Kurt Kanzenbach
2020-07-11 20:11 ` Florian Fainelli
2020-07-20 22:49 ` Rob Herring
2020-07-10 11:36 ` [PATCH v1 8/8] dt-bindings: net: dsa: Add documentation for Hellcreek switches Kurt Kanzenbach
2020-07-11 20:18 ` Florian Fainelli
2020-07-13 6:45 ` Kurt Kanzenbach [this message]
2020-07-13 14:44 ` 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=87mu43ncaa.fsf@kurt \
--to=kurt@linutronix.de \
--cc=andrew@lunn.ch \
--cc=bigeasy@linutronix.de \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=ilias.apalodimas@linaro.org \
--cc=kamil.alkhouri@hs-offenburg.de \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=richardcochran@gmail.com \
--cc=robh+dt@kernel.org \
--cc=vivien.didelot@gmail.com \
/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