Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756164AbdLGPvc (ORCPT ); Thu, 7 Dec 2017 10:51:32 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:38629 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755696AbdLGPvP (ORCPT ); Thu, 7 Dec 2017 10:51:15 -0500 X-Google-Smtp-Source: AGs4zMYUXN5lOdhCRODAlHN5+E03J8TPHeomRnzcbr0Lgl5QU0htL1Ps+QGCiinFhvqBlD37gjBXmw== Message-ID: <1512661873.7042.9.camel@baylibre.com> Subject: Re: [PATCH net-next v2 3/8] net: phy: meson-gxl: add read and write helpers for bank registers From: Jerome Brunet To: Andrew Lunn Cc: Florian Fainelli , Kevin Hilman , netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org Date: Thu, 07 Dec 2017 16:51:13 +0100 In-Reply-To: <20171207154610.GG24750@lunn.ch> References: <20171207142715.32578-1-jbrunet@baylibre.com> <20171207142715.32578-4-jbrunet@baylibre.com> <20171207154610.GG24750@lunn.ch> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.26.2 (3.26.2-1.fc27) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1665 Lines: 45 On Thu, 2017-12-07 at 16:46 +0100, Andrew Lunn wrote: > On Thu, Dec 07, 2017 at 03:27:10PM +0100, Jerome Brunet wrote: > > Add read and write helpers to manipulate banked registers on this PHY > > This helps clarify the settings applied to these registers in the init > > function and upcoming changes. > > > > Signed-off-by: Jerome Brunet > > --- > > drivers/net/phy/meson-gxl.c | 103 ++++++++++++++++++++++++++++------------- > > --- > > 1 file changed, 67 insertions(+), 36 deletions(-) > > > > diff --git a/drivers/net/phy/meson-gxl.c b/drivers/net/phy/meson-gxl.c > > index d82aa8cea401..05054770aefb 100644 > > --- a/drivers/net/phy/meson-gxl.c > > +++ b/drivers/net/phy/meson-gxl.c > > @@ -45,11 +45,13 @@ > > #define FR_PLL_DIV0 0x1c > > #define FR_PLL_DIV1 0x1d > > > > -static int meson_gxl_config_init(struct phy_device *phydev) > > +static int meson_gxl_open_banks(struct phy_device *phydev) > > Hi Jerome > > Does the word bank come from the datasheet? Most of the phy drives use > page instead. > > Also, we have discovered a race condition which affects drivers using > pages, which can lead to corruption of registers. At some point, i > expect we will be adding helpers to access paged registers, which do > the right thing with respect to locks. > > So it would be nice if you used the work page, not bank. Banks actually comes from the datasheet, Yes. I don't mind renaming it but I would be making things up. As you wish ? Does the usual pages comes with this weird toggle thing to open the access ? Would we able to use these generic helpers with our this kind of quirks ? > > Thanks > > Andrew