From: "Michal Vokáč" <vokac.m@gmail.com>
To: Andrew Lunn <andrew@lunn.ch>
Cc: netdev@vger.kernel.org,
Vivien Didelot <vivien.didelot@savoirfairelinux.com>,
Florian Fainelli <f.fainelli@gmail.com>
Subject: Re: i.MX6S/DL and QCA8334 switch using DSA driver - CPU port not working
Date: Fri, 27 Apr 2018 10:49:34 +0200 [thread overview]
Message-ID: <48c029f1-1632-573f-c628-86b4972d668c@gmail.com> (raw)
In-Reply-To: <20180426140629.GB15370@lunn.ch>
On 26.4.2018 16:06, Andrew Lunn wrote:
> On Thu, Apr 26, 2018 at 03:37:33PM +0200, Michal Vokáč wrote:
>>
>> - Linux 4.9.84 (Freescale 4.9-1.0.x-imx branch)
>
> Hi Michal
>
> Please use mainline, not the freescale fork. For DSA, there is nothing
> you need in the freescale fork. Once it works with mainline, you can
> then figure out what needs to be done to make the fork work.
Hi Andrew,
Thanks for such a quick reply!
OK, good point, I will go this way - mainline first, fork then.
>> The Freescale branch does not introduce any changes to the DSA nor to the QCA8K
>> drivers from mainline.
>
> Does it have
> fbbeefdd2104 ("net: fec: Allow reception of frames bigger than 1522 bytes")
Yes, this one was backported to 4.9.74 and is in the freescale branch too.
>> To make the bridge work I need to enable forwarding across all the switch ports
>> at setup.
>>
>> --- a/drivers/net/dsa/qca8k.c
>> +++ b/drivers/net/dsa/qca8k.c
>> @@ -578,12 +578,12 @@ qca8k_setup(struct dsa_switch *ds)
>> if (ds->enabled_port_mask & BIT(i))
>> qca8k_port_set_status(priv, i, 0);
>> - /* Forward all unknown frames to CPU port for Linux processing */
>> + /* Forward all unknown frames to all pors */
>> qca8k_write(priv, QCA8K_REG_GLOBAL_FW_CTRL1,
>> BIT(0) << QCA8K_GLOBAL_FW_CTRL1_IGMP_DP_S |
>> - BIT(0) << QCA8K_GLOBAL_FW_CTRL1_BC_DP_S |
>> - BIT(0) << QCA8K_GLOBAL_FW_CTRL1_MC_DP_S |
>> - BIT(0) << QCA8K_GLOBAL_FW_CTRL1_UC_DP_S);
>> + 0x7f << QCA8K_GLOBAL_FW_CTRL1_BC_DP_S |
>> + 0x7f << QCA8K_GLOBAL_FW_CTRL1_MC_DP_S |
>> + 0x7f << QCA8K_GLOBAL_FW_CTRL1_UC_DP_S);
>> /* Setup connection between CPU port & user ports */
>> for (i = 0; i < DSA_MAX_PORTS; i++) {
>> --
>
> This is probably because you don't have a working CPU port. If that
> worked, all unknown frames would be passed to the software bridge. It
> would then either flood them out all ports, or if it knows the
> destination MAC address, out one specific port. The should be enough
> to make the destination reply, at which point the switch learns the
> MAC address, and it is no longer unknown.
>
> So lets leave this alone for the moment.
First attempt - pure mainline 4.9.84 without my patch.
CPU port not working, bridge not working.
>> But I am still not able to make work the CPU port though.
>>
>> # udhcpc -i eth2
>> Sending discover...
>> [FOREVER]
>>
>> The same for eth1, eth2 and br0.
>>
>> I suspect the problem may be at different levels:
>>
>> - The RGMII interface is not properly configured
>> -- at the CPU side, or
>> -- at the switch chip side.
>> - Some setup that I have not done needs to be done (in userspace).
>
> Your user space setup look O.K.
>
> Try playing with RGMII delays. Set the phy-mode to rgmii-id.
OK, I will try some combinations and also to tune the numbers in the driver.
That part is actually quite confusing to me. phy-mode can be set for the fec
and for the port. For the fec I am now using rgmii as that is what we were
using before and it worked. Though from my understanding of the ethernet
binding doc it totally make sense to use rgmii-id for the fec.
I tried that and it did not help.
Using rgmii-id for the port is not valid as the qca8k driver does not support
that mode. It only supports rgmii and sgmii. I think this is actually not
correct. When phy-mode is set to rgmii for port the qca8k driver configures
internal delays in the switch. So it behaves like rgmii-id I think.
Should not it be:
--- a/drivers/net/dsa/qca8k.c
+++ b/drivers/net/dsa/qca8k.c
@@ -474,7 +474,7 @@ qca8k_set_pad_ctrl(struct qca8k_priv *priv, int port, int mode)
* PHY or MAC.
*/
switch (mode) {
- case PHY_INTERFACE_MODE_RGMII:
+ case PHY_INTERFACE_MODE_RGMII_ID:
qca8k_write(priv, reg,
QCA8K_PORT_PAD_RGMII_EN |
QCA8K_PORT_PAD_RGMII_TX_DELAY(3) |
next prev parent reply other threads:[~2018-04-27 8:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <037faf3c-8e8f-a696-8312-d1380c3b8656@gmail.com>
2018-04-26 13:37 ` i.MX6S/DL and QCA8334 switch using DSA driver - CPU port not working Michal Vokáč
2018-04-26 14:06 ` Andrew Lunn
2018-04-27 8:49 ` Michal Vokáč [this message]
2018-04-30 13:20 ` Andrew Lunn
2018-05-04 8:45 ` Michal Vokáč
2018-05-04 13:30 ` Andrew Lunn
2018-05-10 13:49 ` Michal Vokáč
2018-05-10 14:29 ` Andrew Lunn
2018-05-15 14:25 ` Michal Vokáč
2018-05-15 16:08 ` Andrew Lunn
2018-05-15 16:17 ` Florian Fainelli
2018-05-16 12:50 ` Michal Vokáč
2018-05-16 13:17 ` Andrew Lunn
2018-05-16 13:32 ` Michal Vokáč
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=48c029f1-1632-573f-c628-86b4972d668c@gmail.com \
--to=vokac.m@gmail.com \
--cc=andrew@lunn.ch \
--cc=f.fainelli@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=vivien.didelot@savoirfairelinux.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;
as well as URLs for NNTP newsgroup(s).