From: Andrew Lunn <andrew@lunn.ch>
To: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Cc: Vivien Didelot <vivien.didelot@savoirfairelinux.com>,
Florian Fainelli <f.fainelli@gmail.com>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <kernel@pengutronix.de>,
Fabio Estevam <fabio.estevam@nxp.com>, Ian Ray <ian.ray@ge.com>,
Nandor Han <nandor.han@ge.com>, Rob Herring <robh+dt@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCHv1 1/6] net: dsa: Support internal phy on 'cpu' port
Date: Wed, 3 Jan 2018 14:21:28 +0100 [thread overview]
Message-ID: <20180103132128.GI15036@lunn.ch> (raw)
In-Reply-To: <20180103122609.5482-2-sebastian.reichel@collabora.co.uk>
On Wed, Jan 03, 2018 at 01:26:04PM +0100, Sebastian Reichel wrote:
> This adds support for enabling the internal phy for a 'cpu' port.
> It has been tested on GE B850v3 and B650v3, which have a built-in
> MV88E6240 switch connected to a PCIe based network card. Without
> this patch the link does not come up and no traffic can be routed
> through the switch.
>
> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
> ---
> net/dsa/port.c | 26 ++++++++++++++++++++++----
> 1 file changed, 22 insertions(+), 4 deletions(-)
>
> diff --git a/net/dsa/port.c b/net/dsa/port.c
> index bb4be2679904..f99c1d34416c 100644
> --- a/net/dsa/port.c
> +++ b/net/dsa/port.c
> @@ -282,6 +282,10 @@ int dsa_port_fixed_link_register_of(struct dsa_port *dp)
> int mode;
> int err;
>
> + mode = of_get_phy_mode(dn);
> + if (mode < 0)
> + mode = PHY_INTERFACE_MODE_NA;
> +
> if (of_phy_is_fixed_link(dn)) {
> err = of_phy_register_fixed_link(dn);
> if (err) {
> @@ -292,10 +296,6 @@ int dsa_port_fixed_link_register_of(struct dsa_port *dp)
> }
>
> phydev = of_phy_find_device(dn);
> -
> - mode = of_get_phy_mode(dn);
> - if (mode < 0)
> - mode = PHY_INTERFACE_MODE_NA;
> phydev->interface = mode;
>
> genphy_config_init(phydev);
> @@ -305,6 +305,24 @@ int dsa_port_fixed_link_register_of(struct dsa_port *dp)
> ds->ops->adjust_link(ds, port, phydev);
>
> put_device(&phydev->mdio.dev);
> + } else if (mode == PHY_INTERFACE_MODE_INTERNAL ||
> + mode == PHY_INTERFACE_MODE_NA) {
Hi Sebastian
I understand what you are trying to do, i've got boards which also
have back-to-back PHYs for the CPU port. These boards however have the
strapping correct, so nothing needs doing in software.
But the way you are doing it is wrong. PHY_INTERFACE_MODE_NA means
something else has already setup the interface mode, leave it alone.
PHY_INTERFACE_MODE_INTERNAL means there is some other sort of bus
between the MAC and the PHY than the normal MII.
What you want to say is that there is a PHY on this port, and that you
want to configure it to a given fixed configuration, probably 1000
Full, with auto-neg turned off. This is something completely different
to a fixed phy, which is used when there is no PHY at all.
What state is the PHY in, if you don't have this patch? Is it powered
down?
Andrew
next prev parent reply other threads:[~2018-01-03 13:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-03 12:26 [PATCHv1 0/6] GEHC Bx50 Switch Support Sebastian Reichel
2018-01-03 12:26 ` [PATCHv1 1/6] net: dsa: Support internal phy on 'cpu' port Sebastian Reichel
2018-01-03 13:21 ` Andrew Lunn [this message]
2018-01-03 15:07 ` Sebastian Reichel
2018-01-03 12:26 ` [PATCHv1 2/6] net: dsa: mv88e6xxx: add 88E6240 DT compatible Sebastian Reichel
2018-01-03 12:55 ` Andrew Lunn
2018-01-03 12:26 ` [PATCHv1 3/6] ARM: dts: imx6q-bx50v3: Add internal switch Sebastian Reichel
2018-01-03 14:48 ` Sergei Shtylyov
2018-01-03 15:24 ` Sebastian Reichel
2018-01-03 12:26 ` [PATCHv1 4/6] ARM: dts: imx6q-b850v3: Add switch port configuration Sebastian Reichel
2018-01-03 12:26 ` [PATCHv1 5/6] ARM: dts: imx6q-b650v3: " Sebastian Reichel
2018-01-03 12:26 ` [PATCHv1 6/6] ARM: dts: imx6q-b450v3: " Sebastian Reichel
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=20180103132128.GI15036@lunn.ch \
--to=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=fabio.estevam@nxp.com \
--cc=ian.ray@ge.com \
--cc=kernel@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=nandor.han@ge.com \
--cc=netdev@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=sebastian.reichel@collabora.co.uk \
--cc=shawnguo@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