Re: [U-Boot] [PATCH] net: fec_mxc: fix PHY initialization bug with CONFIG_DM_ETH

2017-06-29 Thread Stefano Babic
On 27/06/2017 15:23, Lothar Waßmann wrote: > When CONFIG_DM_ETH is set, the FEC ethernet controller is reset after > the PHY has been set up and initialzed. This breaks the communication > with the PHY and results in an inoperable ethernet interface. > > Do the initialization with CONFIG_DM_ETH in

Re: [U-Boot] [PATCH] net: fec_mxc: fix PHY initialization bug with CONFIG_DM_ETH

2017-06-27 Thread Joe Hershberger
On Tue, Jun 27, 2017 at 8:23 AM, Lothar Waßmann wrote: > When CONFIG_DM_ETH is set, the FEC ethernet controller is reset after > the PHY has been set up and initialzed. This breaks the communication > with the PHY and results in an inoperable ethernet interface. > > Do the initialization with CON

[U-Boot] [PATCH] net: fec_mxc: fix PHY initialization bug with CONFIG_DM_ETH

2017-06-27 Thread Lothar Waßmann
When CONFIG_DM_ETH is set, the FEC ethernet controller is reset after the PHY has been set up and initialzed. This breaks the communication with the PHY and results in an inoperable ethernet interface. Do the initialization with CONFIG_DM_ETH in the same order as with legacy ETH support to fix thi