2023-05-26 09:37:34

by Guo Samin

[permalink] [raw]
Subject: [PATCH v3 0/2] Add motorcomm phy pad-driver-strength-cfg support

The motorcomm phy (YT8531) supports the ability to adjust the drive
strength of the rx_clk/rx_data, and the default strength may not be
suitable for all boards. So add configurable options to better match
the boards.(e.g. StarFive VisionFive 2)

The first patch adds a description of dt-bingding, and the second patch adds
YT8531's parsing and settings for pad-driver-strength-cfg.

'Magic numbers' are used because we haven't been able to get real units
from motorcomm yet, but similar usage has been found in
Documentation/devicetree/bindings/net/qca,ar803x.yaml.

qca,clk-out-strength:
description: Clock output driver strength.
$ref: /schemas/types.yaml#/definitions/uint32
enum: [0, 1, 2]


Changes since v2:
Patch 2:
- Readjusted the order of YT8531_RGMII_xxx to below YTPHY_PAD_DRIVE_STRENGTH_REG (by Frank Sae)
- Reversed Christmas tree, sort these longest first, shortest last (by Andrew Lunn)
- Rebased on tag v6.4

Changes since v1:
Patch 1:
- Renamed "rx-xxx-driver-strength" to "motorcomm,rx-xxx-driver-strength" (by Frank Sae)
Patch 2:
- Added default values for rxc/rxd driver strength (by Frank Sea/Andrew Lunn)
- Added range checking when val is in DT (by Frank Sea/Andrew Lunn)

Previous versions:
v1 - https://patchwork.kernel.org/project/netdevbpf/cover/[email protected]
v2 - https://patchwork.kernel.org/project/netdevbpf/cover/[email protected]

Samin Guo (2):
dt-bindings: net: motorcomm: Add pad driver strength cfg
net: phy: motorcomm: Add pad drive strength cfg support

.../bindings/net/motorcomm,yt8xxx.yaml | 12 +++++
drivers/net/phy/motorcomm.c | 46 +++++++++++++++++++
2 files changed, 58 insertions(+)


base-commit: 3201bee3a7171617da7cdbce06c428fb628c9944
--
2.17.1



2023-05-26 09:37:52

by Guo Samin

[permalink] [raw]
Subject: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

The motorcomm phy (YT8531) supports the ability to adjust the drive
strength of the rx_clk/rx_data, the value range of pad driver
strength is 0 to 7.

Signed-off-by: Samin Guo <[email protected]>
---
.../devicetree/bindings/net/motorcomm,yt8xxx.yaml | 12 ++++++++++++
1 file changed, 12 insertions(+)

diff --git a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
index 157e3bbcaf6f..29a1997a1577 100644
--- a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
+++ b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
@@ -52,6 +52,18 @@ properties:
for a timer.
type: boolean

+ motorcomm,rx-clk-driver-strength:
+ description: drive strength of rx_clk pad.
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
+ default: 3
+
+ motorcomm,rx-data-driver-strength:
+ description: drive strength of rx_data/rx_ctl rgmii pad.
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
+ default: 3
+
motorcomm,tx-clk-adj-enabled:
description: |
This configuration is mainly to adapt to VF2 with JH7110 SoC.
--
2.17.1


2023-05-26 19:48:28

by Conor Dooley

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
> The motorcomm phy (YT8531) supports the ability to adjust the drive
> strength of the rx_clk/rx_data, the value range of pad driver
> strength is 0 to 7.
>
> Signed-off-by: Samin Guo <[email protected]>
> ---
> .../devicetree/bindings/net/motorcomm,yt8xxx.yaml | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
> index 157e3bbcaf6f..29a1997a1577 100644
> --- a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
> +++ b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
> @@ -52,6 +52,18 @@ properties:
> for a timer.
> type: boolean
>
> + motorcomm,rx-clk-driver-strength:
> + description: drive strength of rx_clk pad.
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]

I think you should use minimum & maximum instead of these listed out
enums. You have also had this comment since v1 & were reminded of it on
v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"

This information should go into the binding, not sit in a thread on a
mailing list that noone will look at when trying to write a DT :(

Thanks,
Conor.

> + default: 3
> +
> + motorcomm,rx-data-driver-strength:
> + description: drive strength of rx_data/rx_ctl rgmii pad.
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
> + default: 3
> +
> motorcomm,tx-clk-adj-enabled:
> description: |
> This configuration is mainly to adapt to VF2 with JH7110 SoC.
> --
> 2.17.1
>


Attachments:
(No filename) (1.73 kB)
signature.asc (235.00 B)
Download all attachments

2023-05-29 04:22:40

by Guo Samin

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg
From: Conor Dooley <[email protected]>
to: Samin Guo <[email protected]>
data: 2023/5/27

> On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
>> The motorcomm phy (YT8531) supports the ability to adjust the drive
>> strength of the rx_clk/rx_data, the value range of pad driver
>> strength is 0 to 7.
>>
>> Signed-off-by: Samin Guo <[email protected]>
>> ---
>> .../devicetree/bindings/net/motorcomm,yt8xxx.yaml | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>> index 157e3bbcaf6f..29a1997a1577 100644
>> --- a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>> +++ b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>> @@ -52,6 +52,18 @@ properties:
>> for a timer.
>> type: boolean
>>
>> + motorcomm,rx-clk-driver-strength:
>> + description: drive strength of rx_clk pad.
>> + $ref: /schemas/types.yaml#/definitions/uint32
>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>
> I think you should use minimum & maximum instead of these listed out
> enums.

Thanks Conor, This can be improved in the next version.

You have also had this comment since v1 & were reminded of it on
> v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"
>


The good news is that we just got some data about units from Motorcomm.
Maybe I can post the data show of the unit later after I get the complete data.



> This information should go into the binding, not sit in a thread on a
> mailing list that noone will look at when trying to write a DT :(
>
> Thanks,
> Conor.
>

Yes,when we have the complete 'unit' data, it will be placed in DT.

Best regards,
Samin

>> + default: 3
>> +
>> + motorcomm,rx-data-driver-strength:
>> + description: drive strength of rx_data/rx_ctl rgmii pad.
>> + $ref: /schemas/types.yaml#/definitions/uint32
>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>> + default: 3
>> +
>> motorcomm,tx-clk-adj-enabled:
>> description: |
>> This configuration is mainly to adapt to VF2 with JH7110 SoC.
>> --
>> 2.17.1
>>

2023-06-20 03:33:52

by Guo Samin

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg


Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg
From: Guo Samin <[email protected]>
to: Conor Dooley <[email protected]>; Andrew Lunn <[email protected]>
data: 2023/5/29

> Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg
> From: Conor Dooley <[email protected]>
> to: Samin Guo <[email protected]>
> data: 2023/5/27
>
>> On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
>>> The motorcomm phy (YT8531) supports the ability to adjust the drive
>>> strength of the rx_clk/rx_data, the value range of pad driver
>>> strength is 0 to 7.
>>>
>>> Signed-off-by: Samin Guo <[email protected]>
>>> ---
>>> .../devicetree/bindings/net/motorcomm,yt8xxx.yaml | 12 ++++++++++++
>>> 1 file changed, 12 insertions(+)
>>>
>>> diff --git a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>>> index 157e3bbcaf6f..29a1997a1577 100644
>>> --- a/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>>> +++ b/Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
>>> @@ -52,6 +52,18 @@ properties:
>>> for a timer.
>>> type: boolean
>>>
>>> + motorcomm,rx-clk-driver-strength:
>>> + description: drive strength of rx_clk pad.
>>> + $ref: /schemas/types.yaml#/definitions/uint32
>>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>>
>> I think you should use minimum & maximum instead of these listed out
>> enums.
>
> Thanks Conor, This can be improved in the next version.
>
> You have also had this comment since v1 & were reminded of it on
>> v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"
>>
>
>
> The good news is that we just got some data about units from Motorcomm.
> Maybe I can post the data show of the unit later after I get the complete data.
>

Hi Andrew & Conor,

Sorry, haven't updated in a while.
I just got the detailed data of Driver Strength(DS) from Motorcomm , which applies to both rx_clk and rx_data.

|----------------------|
| ds map table |
|----------------------|
| DS(3b) | Current (mA)|
|--------|-------------|
| 000 | 1.20 |
| 001 | 2.10 |
| 010 | 2.70 |
| 011 | 2.91 |
| 100 | 3.11 |
| 101 | 3.60 |
| 110 | 3.97 |
| 111 | 4.35 |
|--------|-------------|

Since these currents are not integer values and have no regularity, it is not very good to use in the drive/dts in my opinion.

Therefore, I tend to continue to use DS(0-7) in dts/driver, and adding a description of the current value corresponding to DS in dt-bindings.

Like This:

+ motorcomm,rx-clk-driver-strength:
+ description: drive strength of rx_clk pad.
+ |----------------------|
+ | rx_clk ds map table |
+ |----------------------|
+ | DS(3b) | Current (mA)|
+ | 000 | 1.20 |
+ | 001 | 2.10 |
+ | 010 | 2.70 |
+ | 011 | 2.91 |
+ | 100 | 3.11 |
+ | 101 | 3.60 |
+ | 110 | 3.97 |
+ | 111 | 4.35 |
+ |--------|-------------|
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
+ default: 3
+
+ motorcomm,rx-data-driver-strength:
+ description: drive strength of rx_data/rx_ctl rgmii pad.
+ |----------------------|
+ | rx_data ds map table |
+ |----------------------|
+ | DS(3b) | Current (mA)|
+ | 000 | 1.20 |
+ | 001 | 2.10 |
+ | 010 | 2.70 |
+ | 011 | 2.91 |
+ | 100 | 3.11 |
+ | 101 | 3.60 |
+ | 110 | 3.97 |
+ | 111 | 4.35 |
+ |--------|-------------|
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
+ default: 3
+


Or use minimum & maximum instead of these listed out enums(Suggested by Conor)

+ motorcomm,rx-clk-driver-strength:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ default: 3
+ minimum: 0
+ maximum: 7
+ description: drive strength of rx_clk pad.
+ |----------------------|
+ | rx_clk ds map table |
+ |----------------------|
+ | DS(3b) | Current (mA)|
+ | 000 | 1.20 |
+ | 001 | 2.10 |
+ | 010 | 2.70 |
+ | 011 | 2.91 |
+ | 100 | 3.11 |
+ | 101 | 3.60 |
+ | 110 | 3.97 |
+ | 111 | 4.35 |
+ |--------|-------------|
+
+ motorcomm,rx-data-driver-strength:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ default: 3
+ minimum: 0
+ maximum: 7
+ description: drive strength of rx_data/rx_ctl rgmii pad.
+ |----------------------|
+ | rx_data ds map table |
+ |----------------------|
+ | DS(3b) | Current (mA)|
+ | 000 | 1.20 |
+ | 001 | 2.10 |
+ | 010 | 2.70 |
+ | 011 | 2.91 |
+ | 100 | 3.11 |
+ | 101 | 3.60 |
+ | 110 | 3.97 |
+ | 111 | 4.35 |
+ |--------|-------------|
+


Looking forward to your suggestions.


Best regards,
Samin

>
>
>> This information should go into the binding, not sit in a thread on a
>> mailing list that noone will look at when trying to write a DT :(
>>
>> Thanks,
>> Conor.
>>
>
> Yes,when we have the complete 'unit' data, it will be placed in DT.
>
> Best regards,
> Samin
>
>>> + default: 3
>>> +
>>> + motorcomm,rx-data-driver-strength:
>>> + description: drive strength of rx_data/rx_ctl rgmii pad.
>>> + $ref: /schemas/types.yaml#/definitions/uint32
>>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>>> + default: 3
>>> +
>>> motorcomm,tx-clk-adj-enabled:
>>> description: |
>>> This configuration is mainly to adapt to VF2 with JH7110 SoC.
>>> --
>>> 2.17.1
>>>

2023-06-20 08:55:04

by Conor Dooley

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

Hey,

On Tue, Jun 20, 2023 at 11:09:52AM +0800, Guo Samin wrote:
> From: Guo Samin <[email protected]>
> > From: Conor Dooley <[email protected]>
> >> On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
> >>> The motorcomm phy (YT8531) supports the ability to adjust the drive
> >>> strength of the rx_clk/rx_data, the value range of pad driver
> >>> strength is 0 to 7.

> >>> + motorcomm,rx-clk-driver-strength:
> >>> + description: drive strength of rx_clk pad.
> >>> + $ref: /schemas/types.yaml#/definitions/uint32
> >>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
> >>
> >> I think you should use minimum & maximum instead of these listed out
> >> enums.

> > You have also had this comment since v1 & were reminded of it on
> >> v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"

> > The good news is that we just got some data about units from Motorcomm.
> > Maybe I can post the data show of the unit later after I get the complete data.

> Sorry, haven't updated in a while.

NW chief.

> I just got the detailed data of Driver Strength(DS) from Motorcomm , which applies to both rx_clk and rx_data.
>
> |----------------------|
> | ds map table |
> |----------------------|
> | DS(3b) | Current (mA)|
> |--------|-------------|
> | 000 | 1.20 |
> | 001 | 2.10 |
> | 010 | 2.70 |
> | 011 | 2.91 |
> | 100 | 3.11 |
> | 101 | 3.60 |
> | 110 | 3.97 |
> | 111 | 4.35 |
> |--------|-------------|
>
> Since these currents are not integer values and have no regularity,
> it is not very good to use in the drive/dts in my opinion.

Who says you have to use mA? What about uA?

> Therefore, I tend to continue to use DS(0-7) in dts/driver, and adding
> a description of the current value corresponding to DS in dt-bindings.

I think this goes against not putting register values into the dts &
that the accurate description of the hardware are the currents.

> Like This:
>
> + motorcomm,rx-clk-driver-strength:
> + description: drive strength of rx_clk pad.

You need "description: |" to preserve the formatting if you add tables,
but I don't think that this is a good idea. Put the values in here that
describe the hardware (IOW the currents) and then you don't need to have
this table.

> + |----------------------|
> + | rx_clk ds map table |
> + |----------------------|
> + | DS(3b) | Current (mA)|
> + | 000 | 1.20 |
> + | 001 | 2.10 |
> + | 010 | 2.70 |
> + | 011 | 2.91 |
> + | 100 | 3.11 |
> + | 101 | 3.60 |
> + | 110 | 3.97 |
> + | 111 | 4.35 |
> + |--------|-------------|
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
> + default: 3
> +

> Or use minimum & maximum instead of these listed out enums

With the actual current values, enum rather than min + max.

Cheers,
Conor.


Attachments:
(No filename) (3.04 kB)
signature.asc (235.00 B)
Download all attachments

2023-06-20 09:12:58

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

On 20/06/2023 10:26, Conor Dooley wrote:
> Hey,
>
> On Tue, Jun 20, 2023 at 11:09:52AM +0800, Guo Samin wrote:
>> From: Guo Samin <[email protected]>
>>> From: Conor Dooley <[email protected]>
>>>> On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
>>>>> The motorcomm phy (YT8531) supports the ability to adjust the drive
>>>>> strength of the rx_clk/rx_data, the value range of pad driver
>>>>> strength is 0 to 7.
>
>>>>> + motorcomm,rx-clk-driver-strength:
>>>>> + description: drive strength of rx_clk pad.
>>>>> + $ref: /schemas/types.yaml#/definitions/uint32
>>>>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>>>>
>>>> I think you should use minimum & maximum instead of these listed out
>>>> enums.
>
>>> You have also had this comment since v1 & were reminded of it on
>>>> v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"
>
>>> The good news is that we just got some data about units from Motorcomm.
>>> Maybe I can post the data show of the unit later after I get the complete data.
>
>> Sorry, haven't updated in a while.
>
> NW chief.
>
>> I just got the detailed data of Driver Strength(DS) from Motorcomm , which applies to both rx_clk and rx_data.
>>
>> |----------------------|
>> | ds map table |
>> |----------------------|
>> | DS(3b) | Current (mA)|
>> |--------|-------------|
>> | 000 | 1.20 |
>> | 001 | 2.10 |
>> | 010 | 2.70 |
>> | 011 | 2.91 |
>> | 100 | 3.11 |
>> | 101 | 3.60 |
>> | 110 | 3.97 |
>> | 111 | 4.35 |
>> |--------|-------------|
>>
>> Since these currents are not integer values and have no regularity,

There is no mA unit in DT schema, so I don't see what by "not integer
values". 1200 uA is an integer.

>> it is not very good to use in the drive/dts in my opinion.
>
> Who says you have to use mA? What about uA?

Yep

>
>> Therefore, I tend to continue to use DS(0-7) in dts/driver, and adding
>> a description of the current value corresponding to DS in dt-bindings.
>
> I think this goes against not putting register values into the dts &
> that the accurate description of the hardware are the currents.

For vendor properties register values are often accepted, but logical
unit is much more readable in the DTS. Also allows further customization
or extending when new variant appears. You cannot do extend a property
easily when it holds a register value, without changing the meaning per
variant.

>
>> Like This:
>>
>> + motorcomm,rx-clk-driver-strength:
>> + description: drive strength of rx_clk pad.
>
> You need "description: |" to preserve the formatting if you add tables,
> but I don't think that this is a good idea. Put the values in here that
> describe the hardware (IOW the currents) and then you don't need to have
> this table.
>
>> + |----------------------|
>> + | rx_clk ds map table |
>> + |----------------------|
>> + | DS(3b) | Current (mA)|
>> + | 000 | 1.20 |
>> + | 001 | 2.10 |
>> + | 010 | 2.70 |
>> + | 011 | 2.91 |
>> + | 100 | 3.11 |
>> + | 101 | 3.60 |
>> + | 110 | 3.97 |
>> + | 111 | 4.35 |
>> + |--------|-------------|
>> + $ref: /schemas/types.yaml#/definitions/uint32
>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>> + default: 3
>> +
>
>> Or use minimum & maximum instead of these listed out enums
>
> With the actual current values, enum rather than min + max.



Best regards,
Krzysztof


2023-06-20 14:27:28

by Andrew Lunn

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

> I just got the detailed data of Driver Strength(DS) from Motorcomm ,
> which applies to both rx_clk and rx_data.
>
> |----------------------|
> | ds map table |
> |----------------------|
> | DS(3b) | Current (mA)|
> |--------|-------------|
> | 000 | 1.20 |
> | 001 | 2.10 |
> | 010 | 2.70 |
> | 011 | 2.91 |
> | 100 | 3.11 |
> | 101 | 3.60 |
> | 110 | 3.97 |
> | 111 | 4.35 |
> |--------|-------------|
>
> Since these currents are not integer values

Integers is not a problem. Simply use uA.

> and have no regularity, it is not very good to use in the drive/dts
> in my opinion.

I think they are fine to use. Add a lookup table, microamps to
register value. Return -EINVAL if the requested value is not in the
table. List the valid values in the schema, so the checker tool might
point out problems.

Andrew

2023-06-21 03:43:03

by Guo Samin

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg



-------- 原始信息 --------
主题: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg
From: Krzysztof Kozlowski <[email protected]>
收件人: Conor Dooley <[email protected]>, Guo Samin <[email protected]>
日期: 2023/6/20

> On 20/06/2023 10:26, Conor Dooley wrote:
>> Hey,
>>
>> On Tue, Jun 20, 2023 at 11:09:52AM +0800, Guo Samin wrote:
>>> From: Guo Samin <[email protected]>
>>>> From: Conor Dooley <[email protected]>
>>>>> On Fri, May 26, 2023 at 05:05:01PM +0800, Samin Guo wrote:
>>>>>> The motorcomm phy (YT8531) supports the ability to adjust the drive
>>>>>> strength of the rx_clk/rx_data, the value range of pad driver
>>>>>> strength is 0 to 7.
>>
>>>>>> + motorcomm,rx-clk-driver-strength:
>>>>>> + description: drive strength of rx_clk pad.
>>>>>> + $ref: /schemas/types.yaml#/definitions/uint32
>>>>>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>>>>>
>>>>> I think you should use minimum & maximum instead of these listed out
>>>>> enums.
>>
>>>> You have also had this comment since v1 & were reminded of it on
>>>>> v2 by Krzysztof: "What do the numbers mean? What are the units? mA?"
>>
>>>> The good news is that we just got some data about units from Motorcomm.
>>>> Maybe I can post the data show of the unit later after I get the complete data.
>>
>>> Sorry, haven't updated in a while.
>>
>> NW chief.
>>
>>> I just got the detailed data of Driver Strength(DS) from Motorcomm , which applies to both rx_clk and rx_data.
>>>
>>> |----------------------|
>>> | ds map table |
>>> |----------------------|
>>> | DS(3b) | Current (mA)|
>>> |--------|-------------|
>>> | 000 | 1.20 |
>>> | 001 | 2.10 |
>>> | 010 | 2.70 |
>>> | 011 | 2.91 |
>>> | 100 | 3.11 |
>>> | 101 | 3.60 |
>>> | 110 | 3.97 |
>>> | 111 | 4.35 |
>>> |--------|-------------|
>>>
>>> Since these currents are not integer values and have no regularity,
>
> There is no mA unit in DT schema, so I don't see what by "not integer
> values". 1200 uA is an integer.
>
>>> it is not very good to use in the drive/dts in my opinion.
>>
>> Who says you have to use mA? What about uA?
>
> Yep

>
>>
>>> Therefore, I tend to continue to use DS(0-7) in dts/driver, and adding
>>> a description of the current value corresponding to DS in dt-bindings.
>>
>> I think this goes against not putting register values into the dts &
>> that the accurate description of the hardware are the currents.
>
> For vendor properties register values are often accepted, but logical
> unit is much more readable in the DTS. Also allows further customization
> or extending when new variant appears. You cannot do extend a property
> easily when it holds a register value, without changing the meaning per
> variant.
>

Hi Conor & Krzysztof,
Thanks for taking the time to review.
Yes, uA can be used to avoid the problem of decimals.

In addition to this, we need to deal with the DS under different IOPAD.
these values were existed at IO 1.8V. When the IO is set to 3.3V, the values will change.

Chip_Config (EXT_0xA001)
|Bit |Symbol |Access |Default |Description |
|5:4 |Cfg_ldo |RW |0x0 |Rgmii ldo voltage and RGMII/MDC/MDIO PAD's level shifter control. Depends on strapping.|
|2'b11: 1.8v 2'b10: 1.8v 2'b01: 2.5v 2'b00: 3.3v |


|----------------------|
| ds map table(1.8V) |
|----------------------|
| DS(3b) | Current (mA)|
| 000 | 1.20 |
| 001 | 2.10 |
| 010 | 2.70 |
| 011 | 2.91 |
| 100 | 3.11 |
| 101 | 3.60 |
| 110 | 3.97 |
| 111 | 4.35 |
|--------|-------------|


|----------------------|
| ds map table(3.3V) |
|----------------------|
| DS(3b) | Current (mA)|
| 000 | 3.07 |
| 001 | 4.08 |
| 010 | 4.37 |
| 011 | 4.68 |
| 100 | 5.02 |
| 101 | 5.45 |
| 110 | 5.74 |
| 111 | 6.14 |
|--------|-------------|


Best regards,
Samin
>>
>>> Like This:
>>>
>>> + motorcomm,rx-clk-driver-strength:
>>> + description: drive strength of rx_clk pad.
>>
>> You need "description: |" to preserve the formatting if you add tables,
>> but I don't think that this is a good idea. Put the values in here that
>> describe the hardware (IOW the currents) and then you don't need to have
>> this table.
>>
>>> + |----------------------|
>>> + | rx_clk ds map table |
>>> + |----------------------|
>>> + | DS(3b) | Current (mA)|
>>> + | 000 | 1.20 |
>>> + | 001 | 2.10 |
>>> + | 010 | 2.70 |
>>> + | 011 | 2.91 |
>>> + | 100 | 3.11 |
>>> + | 101 | 3.60 |
>>> + | 110 | 3.97 |
>>> + | 111 | 4.35 |
>>> + |--------|-------------|
>>> + $ref: /schemas/types.yaml#/definitions/uint32
>>> + enum: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
>>> + default: 3
>>> +
>>
>>> Or use minimum & maximum instead of these listed out enums
>>
>> With the actual current values, enum rather than min + max.
>
>
>
> Best regards,
> Krzysztof
>

2023-06-21 03:46:53

by Guo Samin

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg
From: Andrew Lunn <[email protected]>
to: Guo Samin <[email protected]>
data: 2023/6/20

>> I just got the detailed data of Driver Strength(DS) from Motorcomm ,
>> which applies to both rx_clk and rx_data.
>>
>> |----------------------|
>> | ds map table |
>> |----------------------|
>> | DS(3b) | Current (mA)|
>> |--------|-------------|
>> | 000 | 1.20 |
>> | 001 | 2.10 |
>> | 010 | 2.70 |
>> | 011 | 2.91 |
>> | 100 | 3.11 |
>> | 101 | 3.60 |
>> | 110 | 3.97 |
>> | 111 | 4.35 |
>> |--------|-------------|
>>
>> Since these currents are not integer values
>
> Integers is not a problem. Simply use uA.
>
>> and have no regularity, it is not very good to use in the drive/dts
>> in my opinion.
>
> I think they are fine to use. Add a lookup table, microamps to
> register value. Return -EINVAL if the requested value is not in the
> table. List the valid values in the schema, so the checker tool might
> point out problems.
>
> Andrew

Thanks Andrew,
I'll use a lookup table to try.
Another thing we need to deal with DS under different IO voltages(1.8V/2.5V/3.3V).

The IO voltage can be configured via a hardware pull-up resistor (visionfive 2 is configured to 1.8V by default),
and then the IO voltage can be obtained or set through the register(0xA001)

Chip_Config (EXT_0xA001)
|Bit |Symbol |Access |Default |Description |
|5:4 |Cfg_ldo |RW |0x0 |Rgmii ldo voltage and RGMII/MDC/MDIO PAD's level shifter control. Depends on strapping.|
|2'b11: 1.8v 2'b10: 1.8v 2'b01: 2.5v 2'b00: 3.3v |

|----------------------|
| ds map table(1.8V) |
|----------------------|
| DS(3b) | Current (mA)|
| 000 | 1.20 |
| 001 | 2.10 |
| 010 | 2.70 |
| 011 | 2.91 |
| 100 | 3.11 |
| 101 | 3.60 |
| 110 | 3.97 |
| 111 | 4.35 |
|--------|-------------|


|----------------------|
| ds map table(3.3V) |
|----------------------|
| DS(3b) | Current (mA)|
| 000 | 3.07 |
| 001 | 4.08 |
| 010 | 4.37 |
| 011 | 4.68 |
| 100 | 5.02 |
| 101 | 5.45 |
| 110 | 5.74 |
| 111 | 6.14 |
|--------|-------------|

(The current value of 2.5V is not available to us now)

When we need to deal with current values at different voltages, using register values in drives may be simpler, comparing the current value.
Of course, I will also follow your suggestion and use the current value + lookup table to implement a solution. Thanks!

Best regards,
Samin

2023-06-21 14:48:23

by Andrew Lunn

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] dt-bindings: net: motorcomm: Add pad driver strength cfg

> When we need to deal with current values at different voltages,
> using register values in drives may be simpler, comparing the
> current value.

Register values in DT are only allowed in the worst case if its all
undocumented vendor magic. You have the needed documentation, and its
easy code to write, lookup a value in a table.

Andrew