Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755279AbcDMSoA (ORCPT ); Wed, 13 Apr 2016 14:44:00 -0400 Received: from mail-pf0-f195.google.com ([209.85.192.195]:33540 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753756AbcDMSnz (ORCPT ); Wed, 13 Apr 2016 14:43:55 -0400 Subject: Re: [RESEND PATCH net-next] phy: keep the BCMR_LOOPBACK bit while setup forced mode To: Weidong Wang , David Miller References: <570E3488.9060403@huawei.com> Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, andrew@lunn.ch From: Florian Fainelli Message-ID: <570E92ED.9020603@gmail.com> Date: Wed, 13 Apr 2016 11:41:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: <570E3488.9060403@huawei.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1182 Lines: 40 On 13/04/16 04:59, Weidong Wang wrote: > When tested the PHY SGMII Loopback,: > 1.set the LOOPBACK bit, > 2.set the autoneg to AUTONEG_DISABLE, it calls the > genphy_setup_forced which will clear the bit. > > So just keep the LOOPBACK bit while setup forced mode. Humm, it makes sense why we want this one, but maybe we want other bits to be preserved too, like MII_ISOLATE for instance? Or maybe we should have a separate way to put the PHY into loopback mode which is deterministic and takes care of forcing the link at the same time? > > Signed-off-by: Weidong Wang > --- > drivers/net/phy/phy_device.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c > index e551f3a..8da4b80 100644 > --- a/drivers/net/phy/phy_device.c > +++ b/drivers/net/phy/phy_device.c > @@ -1124,7 +1124,9 @@ static int genphy_config_advert(struct phy_device *phydev) > int genphy_setup_forced(struct phy_device *phydev) > { > int ctl = 0; > + int val = phy_read(phydev, MII_BMCR); > > + ctl |= val & BMCR_LOOPBACK; > phydev->pause = 0; > phydev->asym_pause = 0; > > -- 2.7.0 > -- Florian