[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130801102416.GF26614@pengutronix.de>
Date: Thu, 1 Aug 2013 12:24:16 +0200
From: Sascha Hauer <s.hauer@...gutronix.de>
To: Sean Cross <xobs@...agi.com>
Cc: Duan Fugang-B38611 <B38611@...escale.com>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
David Miller <davem@...emloft.net>,
"stephen@...workplumber.org" <stephen@...workplumber.org>,
Steven Rostedt <rostedt@...dmis.org>
Subject: Re: [PATCH v2] net/phy: micrel: Add OF configuration support
On Thu, Aug 01, 2013 at 05:06:13PM +0800, Sean Cross wrote:
> > Given that this patch adds a devicetree binding which I think we now
> > agree that this introduces an ABI I think this needs more thought. Some
> > questions:
> >
> > - Does binding this also work for MII controllers external to the MAC?
> > Several Marvell SoCs have this situation. MDIO is a bus. With the
> > binding above you assume that all devices on the bus use the same
> > settings
>
> I'm not quite sure what you mean here. The board I'm testing on is
> based on an i.MX6q, which has a gigabit MAC and uses a Micrel PHY
> connected via MDIO. I assumed (perhaps inaccurately) that phy_write()
> would pick the correct PHY. The example binding is for a single
> Ethernet device, named "enet". If a board had two Ethernet devices,
> enet1 and enet2, each could have its own micrel definitions. For
> example:
>
> &enet1 {
> micrel,clk-control-pad-skew = <0xf0f0>;
> micrel,rx-data-pad-skew = <0x0000>;
> micrel,tx-data-pad-skew = <0xffff>;
> status = "okay";
> };
>
> &enet2 {
> micrel,clk-control-pad-skew = <0x0000>;
> micrel,rx-data-pad-skew = <0x0000>;
> micrel,tx-data-pad-skew = <0x0000>;
> status = "okay";
> };
Here each enet controller has its own mdio bus, but look for example at
Marvell armada-370-db.dts:
mdio {
phy0: ethernet-phy@0 {
reg = <0>;
};
phy1: ethernet-phy@1 {
reg = <1>;
};
};
ethernet@...00 {
status = "okay";
phy = <&phy0>;
phy-mode = "rgmii-id";
};
ethernet@...00 {
status = "okay";
phy = <&phy1>;
phy-mode = "rgmii-id";
};
Here two ethernet controllers share a single mdio bus. This at least
requires the binding in the phy node, not the ethernet node.
> > - You directly put the register contents into dt. This assumes that all
> > micrel phys have a compatible register layout. This may be the case
> > now, but what's with future phys?
>
> This is a very valid point. I assumed that most Micrel PHYs had
> similar register sets, but upon closer inspection it seems as though
> the KSZ9021RN is unique in this regard. I should come up with a new
> function ksz9021_config_init that does this only for that one PHY, and
> rename the devicetree doc to reflect that.
> > - The pad skew settings are needed for other phys aswell. It might
> > be
> > worth introducing a binding which could work for say Artheros phys
> > aswell.
>
> I can't comment on other phys, as I'm not familiar with them. How
> would such a system work? This certainly seems like the most
> open-ended of the questions.
I think we would need the delay for the different lines in ps, not in
hardware register specific values. This would have the additional
benefit that we don't have to hardcode the exact phy type.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists