mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Sebastian Reichel <sebastian.reichel@collabora.com>
Cc: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Alexandre Torgue <alexandre.torgue@foss.st.com>,
	Giuseppe Cavallaro <peppe.cavallaro@st.com>,
	Jose Abreu <joabreu@synopsys.com>,
	netdev@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, kernel@collabora.com
Subject: Re: [PATCH 1/1] dt-bindings: net: snps,dwmac: Document queue config subnodes
Date: Mon, 24 Oct 2022 19:29:09 -0400	[thread overview]
Message-ID: <3aa78c08-6d19-8480-cf31-2de41642b100@linaro.org> (raw)
In-Reply-To: <aa146042-2130-9fc3-adcd-c6d701084b4a@linaro.org>

On 24/10/2022 19:28, Krzysztof Kozlowski wrote:
> On 24/10/2022 18:28, Sebastian Reichel wrote:
>> Hi,
>>
>> On Sat, Oct 22, 2022 at 12:05:15PM -0400, Krzysztof Kozlowski wrote:
>>> On 21/10/2022 13:10, Sebastian Reichel wrote:
>>>> The queue configuration is referenced by snps,mtl-rx-config and
>>>> snps,mtl-tx-config. Most in-tree DTs put the referenced object
>>>> as child node of the dwmac node.
>>>>
>>>> This adds proper description for this setup, which has the
>>>> advantage of properly making sure only known properties are
>>>> used.
>>>>
>>>> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
>>>> ---
>>>> [...]
>>>
>>> Please update the DTS example with all this.
>>
>> ok
> 
> BTW, I also found:
> 
> https://lore.kernel.org/linux-devicetree/20201214091616.13545-5-Sergey.Semin@baikalelectronics.ru/
>>
>>>
>>>>  
>>>>    snps,mtl-tx-config:
>>>>      $ref: /schemas/types.yaml#/definitions/phandle
>>>>      description:
>>>> -      Multiple TX Queues parameters. Phandle to a node that can
>>>> -      contain the following properties
>>>> -        * snps,tx-queues-to-use, number of TX queues to be used in the
>>>> -          driver
>>>> -        * Choose one of these TX scheduling algorithms
>>>> -          * snps,tx-sched-wrr, Weighted Round Robin
>>>> -          * snps,tx-sched-wfq, Weighted Fair Queuing
>>>> -          * snps,tx-sched-dwrr, Deficit Weighted Round Robin
>>>> -          * snps,tx-sched-sp, Strict priority
>>>> -        * For each TX queue
>>>> -          * snps,weight, TX queue weight (if using a DCB weight
>>>> -            algorithm)
>>>> -          * Choose one of these modes
>>>> -            * snps,dcb-algorithm, TX queue will be working in DCB
>>>> -            * snps,avb-algorithm, TX queue will be working in AVB
>>>> -              [Attention] Queue 0 is reserved for legacy traffic
>>>> -                          and so no AVB is available in this queue.
>>>> -          * Configure Credit Base Shaper (if AVB Mode selected)
>>>> -            * snps,send_slope, enable Low Power Interface
>>>> -            * snps,idle_slope, unlock on WoL
>>>> -            * snps,high_credit, max write outstanding req. limit
>>>> -            * snps,low_credit, max read outstanding req. limit
>>>> -          * snps,priority, bitmask of the priorities assigned to the queue.
>>>> -            When a PFC frame is received with priorities matching the bitmask,
>>>> -            the queue is blocked from transmitting for the pause time specified
>>>> -            in the PFC frame.
>>>> +      Multiple TX Queues parameters. Phandle to a node that
>>>> +      implements the 'tx-queues-config' object described in
>>>> +      this binding.
>>>> +
>>>> +  tx-queues-config:
>>>> +    type: object
>>>> +    properties:
>>>> +      snps,tx-queues-to-use:
>>>> +        $ref: /schemas/types.yaml#/definitions/uint32
>>>> +        description: number of TX queues to be used in the driver
>>>> +      snps,tx-sched-wrr:
>>>> +        type: boolean
>>>> +        description: Weighted Round Robin
>>>> +      snps,tx-sched-wfq:
>>>> +        type: boolean
>>>> +        description: Weighted Fair Queuing
>>>> +      snps,tx-sched-dwrr:
>>>> +        type: boolean
>>>> +        description: Deficit Weighted Round Robin
>>>> +      snps,tx-sched-sp:
>>>> +        type: boolean
>>>> +        description: Strict priority
>>>> +    patternProperties:
>>>> +      "^queue[0-9]$":
>>>> +        description: Each subnode represents a queue.
>>>> +        type: object
>>>> +        properties:
>>>> +          snps,weight:
>>>> +            $ref: /schemas/types.yaml#/definitions/uint32
>>>> +            description: TX queue weight (if using a DCB weight algorithm)
>>>> +          snps,dcb-algorithm:
>>>> +            type: boolean
>>>> +            description: TX queue will be working in DCB
>>>> +          snps,avb-algorithm:
>>>
>>> Is DCB and AVB compatible with each other? If not, then this should be
>>> rather enum (with a string for algorithm name).
>>>
>>> This applies also to other fields which are mutually exclusive.
>>
>> Yes and I agree it is ugly. But this is not a new binding, but just
>> properly describing the existing binding. It's not my fault :)
> 
> I understand (and did not think it's your fault), but you are
> redesigning them. Existing DTS will have to be updated. If this is
> already implemented by some other DTS, then well... they did not follow
> bindings, so it's their fault. :)
> 
> What I want to say, why refactoring it if the new format is still poor?
>>
>>>> +            type: boolean
>>>> +            description:
>>>> +              TX queue will be working in AVB.
>>>> +              Queue 0 is reserved for legacy traffic and so no AVB is
>>>> +              available in this queue.
>>>> +          snps,send_slope:
>>>
>>> Use hyphens, no underscores.
>>> (This is already an incompatible change in bindings, so we can fix up
>>> the naming)
>>
>> No, this is not an incompatible change in the bindings. It's 100%
>> compatible. What this patch does is removing the text description
>> for 'snps,mtl-tx-config' and instead documenting the node in YAML
>> syntax. 'snps,mtl-tx-config' does not specify where this node should
>> be, so many DTS files do this:
> 
> Old binding did not document "tx-queues-config". Old binding had
> "snps,mtl-tx-config" which was a phandle, so this is an ABI break of
> bindings.

Bah, not ABI break, just change in bindings, of course :)

Best regards,
Krzysztof


  reply	other threads:[~2022-10-25  0:50 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-21 17:10 Sebastian Reichel
2022-10-22 16:05 ` Krzysztof Kozlowski
2022-10-24 18:53   ` Rob Herring
2022-10-24 20:47     ` Krzysztof Kozlowski
2022-10-24 22:28   ` Sebastian Reichel
2022-10-24 23:28     ` Krzysztof Kozlowski
2022-10-24 23:29       ` Krzysztof Kozlowski [this message]
2022-10-25 14:17       ` Sebastian Reichel
2022-10-26 14:32         ` Krzysztof Kozlowski
2022-10-26 14:34 ` Krzysztof Kozlowski

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=3aa78c08-6d19-8480-cf31-2de41642b100@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=alexandre.torgue@foss.st.com \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=edumazet@google.com \
    --cc=joabreu@synopsys.com \
    --cc=kernel@collabora.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=peppe.cavallaro@st.com \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.reichel@collabora.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

Powered by JetHome