From: Jose Abreu <Jose.Abreu@synopsys.com>
To: Florian Fainelli <f.fainelli@gmail.com>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>
Cc: "David S. Miller" <davem@davemloft.net>,
Joao Pinto <Joao.Pinto@synopsys.com>,
Giuseppe Cavallaro <peppe.cavallaro@st.com>,
Alexandre Torgue <alexandre.torgue@st.com>,
Rob Herring <robh+dt@kernel.org>
Subject: Re: [PATCH net-next 2/2] bindings: net: stmmac: Add documentation for TSN parameters
Date: Thu, 26 Oct 2017 08:54:06 +0100 [thread overview]
Message-ID: <23152048-09fe-2950-e1ff-8cf90ca3f465@synopsys.com> (raw)
In-Reply-To: <c2a4a435-0b0b-4fa3-a69a-280f6d0c6427@gmail.com>
Hi Florian,
On 25-10-2017 20:34, Florian Fainelli wrote:
> On 10/25/2017 07:04 AM, Jose Abreu wrote:
>> This adds the documentation for TSN feature EST and FP.
>>
>> Signed-off-by: Jose Abreu <joabreu@synopsys.com>
>> Cc: David S. Miller <davem@davemloft.net>
>> Cc: Joao Pinto <jpinto@synopsys.com>
>> Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com>
>> Cc: Alexandre Torgue <alexandre.torgue@st.com>
>> Cc: Rob Herring <robh+dt@kernel.org>
>> ---
>> Documentation/devicetree/bindings/net/stmmac.txt | 20 ++++++++++++++++++++
>> 1 file changed, 20 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/net/stmmac.txt b/Documentation/devicetree/bindings/net/stmmac.txt
>> index c3a7be6..6359df6 100644
>> --- a/Documentation/devicetree/bindings/net/stmmac.txt
>> +++ b/Documentation/devicetree/bindings/net/stmmac.txt
>> @@ -114,6 +114,16 @@ Optional properties:
>> - snps,high_credit: max write outstanding req. limit
>> - snps,low_credit: max read outstanding req. limit
>> - snps,priority: TX queue priority (Range: 0x0 to 0xF)
>> +- TSN parameters: below the list of all the parameters to configure TSN
>> + features (only applicable for IP version >= 5.00)
>> + - snps,est: Enable EST algorithm
>> + - If EST enabled provide these parameters:
>> + - snps,btr: Array size of 2 with BTR value for EST algorithm
>> + - snps,ctr: Array size of 2 with CTR value for EST algorithm
>> + - snps,ter: TER value for EST algorithm
>> + - snps,gcl: Variable size array with GCL table entries.
>> + - snps,fp: Enable FP feature. This needs EST enabled.
> You are using Device Tree as a configuration interface, that does not
> sound right at all.
>
>> +
>> Examples:
>>
>> stmmac_axi_setup: stmmac-axi-config {
>> @@ -151,6 +161,15 @@ Examples:
>> };
>> };
>>
>> + tsn_setup: tsn-config {
>> + snps,est;
>> + snps,btr = <0x00000000 0x00000001>;
>> + snps,ctr = <0x00000000 0x10000000>;
>> + snps,ter = <0x00000000>;
>> + snps,gcl = <0x00000001 0x00000002 0x00000003>;
>> + snps,fp;
>> + };
>> +
>> gmac0: ethernet@e0800000 {
>> compatible = "st,spear600-gmac";
>> reg = <0xe0800000 0x8000>;
>> @@ -176,4 +195,5 @@ Examples:
>> };
>> snps,mtl-rx-config = <&mtl_rx_setup>;
>> snps,mtl-tx-config = <&mtl_tx_setup>;
>> + snps,tsn-config = <&tsn_setup>;
> Yes, this is definitively using Device Tree as a configuration
> interface, don't do that please.
I understand your concern here and I know DT bindings should only
describe the HW but note that this is already done in
mtl-rx-config and mtl-tx-config.
These parameters may also need to change in runtime depending on
the scheduled traffic. Unfortunately, net subsystem does not yet
support TSN so this will have to wait and for now we will use
fixed parameters.
Anyway, what do you suggest here instead? Platform data?
Best regards,
Jose Miguel Abreu
next prev parent reply other threads:[~2017-10-26 7:54 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-25 14:02 [PATCH net-next 0/2] net: stmmac: Support DWMAC5 and TSN Jose Abreu
2017-10-25 14:04 ` [PATCH net-next 1/2] net: stmmac: Add support for DWMAC5 with TSN features Jose Abreu
2017-10-25 14:04 ` [PATCH net-next 2/2] bindings: net: stmmac: Add documentation for TSN parameters Jose Abreu
2017-10-25 19:34 ` Florian Fainelli
2017-10-26 7:54 ` Jose Abreu [this message]
2017-10-26 9:03 ` Andrew Lunn
2017-10-26 9:19 ` Jose Abreu
2017-10-26 10:08 ` Jose Abreu
2017-10-26 16:23 ` Jesus Sanchez-Palencia
2017-10-27 8:53 ` Jose Abreu
2017-10-26 21:56 ` Andrew Lunn
2017-10-27 9:05 ` Jose Abreu
2017-10-27 12:29 ` Giuseppe CAVALLARO
2017-10-27 13:50 ` Jose Abreu
2017-10-27 15:45 ` Richard Cochran
2017-10-26 16:28 ` [PATCH net-next 0/2] net: stmmac: Support DWMAC5 and TSN Jesus Sanchez-Palencia
2017-10-27 8:46 ` Jose Abreu
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=23152048-09fe-2950-e1ff-8cf90ca3f465@synopsys.com \
--to=jose.abreu@synopsys.com \
--cc=Joao.Pinto@synopsys.com \
--cc=alexandre.torgue@st.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--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
Powered by JetHome