From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Simon Horman <horms@verge.net.au>
Cc: David Miller <davem@davemloft.net>,
Magnus Damm <magnus.damm@gmail.com>,
netdev@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
Subject: Re: [PATCH net-next 1/2] ravb: Add tx and rx clock internal delays mode of APSR
Date: Fri, 27 Jan 2017 20:13:43 +0300 [thread overview]
Message-ID: <77488d7f-b94b-1053-7f55-2a16ee09c3c8@cogentembedded.com> (raw)
In-Reply-To: <20170127165123.GC7336@verge.net.au>
On 01/27/2017 07:51 PM, Simon Horman wrote:
>>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>>
>>> This patch enables tx and rx clock internal delay modes (TDM and RDM).
>>>
>>> This is to address a failure in the case of 1Gbps communication using the
>>> by salvator-x board with the KSZ9031RNX phy. This has been reported to
>>> occur with both the r8a7795 (H3) and r8a7796 (M3-W) SoCs.
>>>
>>> With this change APSR internal delay modes are enabled for
>>> "rgmii-id", "rgmii-rxid" and "rgmii-txid" phy modes as follows:
>>>
>>> phy mode | ASPR delay mode
>>> -----------+----------------
>>> rgmii-id | TDM and RDM
>>> rgmii-rxid | RDM
>>> rgmii-txid | TDM
>>>
>>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
>>>
>>> ---
>>> v1 [Simon Horman]
>>> - Combined patches
>>> - Reworded changelog
>>>
>>> v0 [Kazuya Mizuguchi]
>> [...]
>>> diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
>>> index 89ac1e3f6175..9fb4c04c5885 100644
>>> --- a/drivers/net/ethernet/renesas/ravb_main.c
>>> +++ b/drivers/net/ethernet/renesas/ravb_main.c
[...]
>>> @@ -2016,6 +2039,9 @@ static int ravb_probe(struct platform_device *pdev)
>>> /* Request GTI loading */
>>> ravb_modify(ndev, GCCR, GCCR_LTI, GCCR_LTI);
>>>
>>> + /* Set APSR */
>>> + ravb_set_delay_mode(ndev);
>>> +
>>> /* Allocate descriptor base address table */
>>> priv->desc_bat_size = sizeof(struct ravb_desc) * DBAT_ENTRY_NUM;
>>> priv->desc_bat = dma_alloc_coherent(ndev->dev.parent, priv->desc_bat_size,
>>> @@ -2152,6 +2178,9 @@ static int __maybe_unused ravb_resume(struct device *dev)
>>> /* Request GTI loading */
>>> ravb_modify(ndev, GCCR, GCCR_LTI, GCCR_LTI);
>>>
>>> + /* Set APSR */
>>> + ravb_set_delay_mode(ndev);
>>> +
>>
>> So far the pattern was to first check if gen != 2, then calling a gen3
>> specific function. I'd like to keep it, rather than checking in the function
>> itself.
>
> So you would like something like?
>
> /* Set APSR */
> if (priv->chip_id != RCAR_GEN2)
> ravb_set_delay_mode(ndev);
Yes (except the comment).
>
> That does not seem better to me but I can make it so if that is your
> preference.
Yes, not better code-wise but more consistent.
MBR, Sergei
next prev parent reply other threads:[~2017-01-27 17:13 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-27 11:04 [PATCH net-next 0/2] ravb: Support 1Gbps on R-Car H3 ES1.1+ and R-Car M3-W Simon Horman
2017-01-27 11:04 ` [PATCH net-next 1/2] ravb: Add tx and rx clock internal delays mode of APSR Simon Horman
2017-01-27 12:42 ` Sergei Shtylyov
2017-01-27 16:49 ` Simon Horman
2017-01-27 16:55 ` Sergei Shtylyov
2017-01-27 18:07 ` Simon Horman
2017-01-27 18:11 ` Sergei Shtylyov
2017-01-27 18:21 ` Simon Horman
2017-01-27 13:00 ` Sergei Shtylyov
2017-01-27 16:51 ` Simon Horman
2017-01-27 17:13 ` Sergei Shtylyov [this message]
2017-01-27 11:04 ` [PATCH net-next 2/2] ravb: Support 1Gbps on R-Car H3 ES1.1+ and R-Car M3-W Simon Horman
2017-01-27 12:52 ` Sergei Shtylyov
2017-01-27 12:16 ` [PATCH net-next 0/2] " Geert Uytterhoeven
2017-01-27 16:34 ` Simon Horman
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=77488d7f-b94b-1053-7f55-2a16ee09c3c8@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=davem@davemloft.net \
--cc=horms@verge.net.au \
--cc=kazuya.mizuguchi.ks@renesas.com \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=netdev@vger.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).