devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Alice Guo <alice.guo@nxp.com>
Cc: "robh+dt@kernel.org" <robh+dt@kernel.org>,
	"shawnguo@kernel.org" <shawnguo@kernel.org>,
	"s.hauer@pengutronix.de" <s.hauer@pengutronix.de>,
	dl-linux-imx <linux-imx@nxp.com>, Peng Fan <peng.fan@nxp.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [EXT] Re: [PATCH v2 4/4] soc: imx8m: change to use platform driver
Date: Fri, 6 Nov 2020 21:07:53 +0100	[thread overview]
Message-ID: <20201106200753.GA332342@kozik-lap> (raw)
In-Reply-To: <DB8PR04MB70652AFEF3A44361F5EE1E9DE2ED0@DB8PR04MB7065.eurprd04.prod.outlook.com>

On Fri, Nov 06, 2020 at 10:35:35AM +0000, Alice Guo wrote:
> 
> 
> > -----Original Message-----
> > From: Krzysztof Kozlowski <krzk@kernel.org>
> > Sent: 2020年11月5日 17:06
> > To: Alice Guo <alice.guo@nxp.com>
> > Cc: robh+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
> > dl-linux-imx <linux-imx@nxp.com>; Peng Fan <peng.fan@nxp.com>;
> > devicetree@vger.kernel.org; linux-kernel@vger.kernel.org;
> > linux-arm-kernel@lists.infradead.org
> > Subject: [EXT] Re: [PATCH v2 4/4] soc: imx8m: change to use platform driver
> > 
> > Caution: EXT Email
> > 
> > On Thu, Nov 05, 2020 at 03:26:29PM +0800, Alice Guo wrote:
> > > Directly reading ocotp register depends on that bootloader enables
> > > ocotp clk, which is not always effective, so change to use nvmem API.
> > > Using nvmem API requires to support driver defer probe and thus change
> > > soc-imx8m.c to use platform driver.
> > >
> > > The other reason is that directly reading ocotp register causes kexec
> > > kernel hang because the 1st kernel running will disable unused clks
> > > after kernel boots up, and then ocotp clk will be disabled even if
> > > bootloader enables it. When kexec kernel, ocotp clk needs to be
> > > enabled before reading ocotp registers, and nvmem API with platform
> > > driver supported can accomplish this.
> > >
> > > Signed-off-by: Alice Guo <alice.guo@nxp.com>
> > > ---
> > >  drivers/soc/imx/soc-imx8m.c | 75
> > > +++++++++++++++++++++----------------
> > >  1 file changed, 42 insertions(+), 33 deletions(-)
> > >
> > > diff --git a/drivers/soc/imx/soc-imx8m.c b/drivers/soc/imx/soc-imx8m.c
> > > index cc57a384d74d..83f3297509be 100644
> > > --- a/drivers/soc/imx/soc-imx8m.c
> > > +++ b/drivers/soc/imx/soc-imx8m.c
> > > @@ -5,6 +5,8 @@
> > >
> > >  #include <linux/init.h>
> > >  #include <linux/io.h>
> > > +#include <linux/module.h>
> > > +#include <linux/nvmem-consumer.h>
> > >  #include <linux/of_address.h>
> > >  #include <linux/slab.h>
> > >  #include <linux/sys_soc.h>
> > > @@ -29,7 +31,7 @@
> > >
> > >  struct imx8_soc_data {
> > >       char *name;
> > > -     u32 (*soc_revision)(void);
> > > +     u32 (*soc_revision)(struct device *dev);
> > >  };
> > >
> > >  static u64 soc_uid;
> > > @@ -50,12 +52,15 @@ static u32 imx8mq_soc_revision_from_atf(void)
> > >  static inline u32 imx8mq_soc_revision_from_atf(void) { return 0; };
> > > #endif
> > >
> > > -static u32 __init imx8mq_soc_revision(void)
> > > +static u32 __init imx8mm_soc_uid(struct device *dev);
> > > +
> > > +static u32 __init imx8mq_soc_revision(struct device *dev)
> > >  {
> > >       struct device_node *np;
> > >       void __iomem *ocotp_base;
> > >       u32 magic;
> > >       u32 rev;
> > > +     int ret = 0;
> > >
> > >       np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-ocotp");
> > >       if (!np)
> > > @@ -75,9 +80,9 @@ static u32 __init imx8mq_soc_revision(void)
> > >                       rev = REV_B1;
> > >       }
> > >
> > > -     soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
> > > -     soc_uid <<= 32;
> > > -     soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
> > > +     ret = imx8mm_soc_uid(dev);
> > > +     if (ret)
> > > +             return ret;
> > >
> > >       iounmap(ocotp_base);
> > >       of_node_put(np);
> > > @@ -85,33 +90,20 @@ static u32 __init imx8mq_soc_revision(void)
> > >       return rev;
> > >  }
> > >
> > > -static void __init imx8mm_soc_uid(void)
> > > +static u32 __init imx8mm_soc_uid(struct device *dev)
> > >  {
> > > -     void __iomem *ocotp_base;
> > > -     struct device_node *np;
> > > -     u32 offset = of_machine_is_compatible("fsl,imx8mp") ?
> > > -                  IMX8MP_OCOTP_UID_OFFSET : 0;
> > > -
> > > -     np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-ocotp");
> > > -     if (!np)
> > > -             return;
> > > -
> > > -     ocotp_base = of_iomap(np, 0);
> > > -     WARN_ON(!ocotp_base);
> > > -
> > > -     soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH + offset);
> > > -     soc_uid <<= 32;
> > > -     soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW + offset);
> > > +     int ret = 0;
> > >
> > > -     iounmap(ocotp_base);
> > > -     of_node_put(np);
> > > +     ret = nvmem_cell_read_u64(dev, "soc_unique_id", &soc_uid);
> > > +     return ret;
> > >  }
> > >
> > > -static u32 __init imx8mm_soc_revision(void)
> > > +static u32 __init imx8mm_soc_revision(struct device *dev)
> > >  {
> > >       struct device_node *np;
> > >       void __iomem *anatop_base;
> > >       u32 rev;
> > > +     int ret;
> > >
> > >       np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-anatop");
> > >       if (!np)
> > > @@ -125,7 +117,9 @@ static u32 __init imx8mm_soc_revision(void)
> > >       iounmap(anatop_base);
> > >       of_node_put(np);
> > >
> > > -     imx8mm_soc_uid();
> > > +     ret = imx8mm_soc_uid(dev);
> > > +     if (ret)
> > > +             return ret;
> > 
> > I think this breaks old existing DTBs. If applied on separate branch than DTS
> > patches, it will cause bisect regressions. Regardless of it, all out-of-tree
> > (customer DTBs) will start failing here as well.
> > 
> > Best regards,
> > Krzysztof
> > 
> > 
> [Alice Guo] Compatible with old existing DTBs, I did not find a good solution. I want to use soc device to match this driver. Do you have some suggestions? Thank you.

How the change above (returning imx8mm_soc_uid error value) and few
others similar are related to topic mentioned in commit msg?

The patch should implement only one thing (one feature or fix one bug)
and then it is easier to manage ABI breakage.

For the ABI breakage, the usual solution is to support old DTBs.

Best regards,
Krzysztof

  reply	other threads:[~2020-11-06 20:08 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-05  7:26 [PATCH v2 1/4] dt-bindings: soc: imx8m: add DT Binding doc for soc unique ID Alice Guo
2020-11-05  7:26 ` [PATCH v2 2/4] arm64: dts: imx8m: add compatible string to .dtsi file Alice Guo
2020-11-05  7:26 ` [PATCH v2 3/4] arm64: dts: imx8m: add nvmem-cell related stuff Alice Guo
2020-11-05  7:26 ` [PATCH v2 4/4] soc: imx8m: change to use platform driver Alice Guo
2020-11-05  9:06   ` Krzysztof Kozlowski
2020-11-06 10:35     ` [EXT] " Alice Guo
2020-11-06 20:07       ` Krzysztof Kozlowski [this message]
2020-11-05  8:25 ` [PATCH v2 1/4] dt-bindings: soc: imx8m: add DT Binding doc for soc unique ID Krzysztof Kozlowski
2020-11-05 12:19   ` [EXT] " Alice Guo
2020-11-05 12:24     ` Krzysztof Kozlowski
2020-11-09 19:10 ` Rob Herring
2020-11-10  5:25   ` Peng Fan

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=20201106200753.GA332342@kozik-lap \
    --to=krzk@kernel.org \
    --cc=alice.guo@nxp.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peng.fan@nxp.com \
    --cc=robh+dt@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).