public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [EXT] Re: [PATCH v2 1/5] spl: dm: disable SPI DM flash for non-DM SPL
Date: Mon, 3 Jun 2019 09:56:12 -0400	[thread overview]
Message-ID: <20190603135612.GC7705@bill-the-cat> (raw)
In-Reply-To: <AM6PR04MB4357ECF2CF5573B111F383D497140@AM6PR04MB4357.eurprd04.prod.outlook.com>

On Mon, Jun 03, 2019 at 04:18:29AM +0000, Chuanhua Han wrote:
> 
> 
> > -----Original Message-----
> > From: Tom Rini <trini@konsulko.com>
> > Sent: 2019年5月31日 3:43
> > To: Chuanhua Han <chuanhua.han@nxp.com>
> > Cc: jagan at openedev.com; wd at denx.de; Shengzhou Liu
> > <shengzhou.liu@nxp.com>; Ruchika Gupta <ruchika.gupta@nxp.com>; Pan
> > Jiafei <Jiafei.Pan@freescale.com>; u-boot at lists.denx.de; Jiafei Pan
> > <jiafei.pan@nxp.com>; Yinbo Zhu <yinbo.zhu@nxp.com>
> > Subject: Re: [EXT] Re: [U-Boot] [PATCH v2 1/5] spl: dm: disable SPI DM flash for
> > non-DM SPL
> > 
> > On Thu, May 30, 2019 at 10:45:10AM +0000, Chuanhua Han wrote:
> > >
> > >
> > > > -----Original Message-----
> > > > From: Tom Rini <trini@konsulko.com>
> > > > Sent: 2019年5月24日 22:24
> > > > To: Chuanhua Han <chuanhua.han@nxp.com>
> > > > Cc: jagan at openedev.com; wd at denx.de; Shengzhou Liu
> > > > <shengzhou.liu@nxp.com>; Ruchika Gupta <ruchika.gupta@nxp.com>; Pan
> > > > Jiafei <Jiafei.Pan@freescale.com>; u-boot at lists.denx.de; Jiafei Pan
> > > > <jiafei.pan@nxp.com>; Yinbo Zhu <yinbo.zhu@nxp.com>
> > > > Subject: [EXT] Re: [U-Boot] [PATCH v2 1/5] spl: dm: disable SPI DM
> > > > flash for non-DM SPL
> > > >
> > > > On Fri, May 24, 2019 at 12:40:53PM +0800, Chuanhua Han wrote:
> > > >
> > > > > This patch solves the problem that spiboot cannot be performed in
> > > > > non-DM SPL.
> > > > >
> > > > > Signed-off-by: Pan Jiafei <Jiafei.Pan@freescale.com>
> > > > > Signed-off-by: Chuanhua Han <chuanhua.han@nxp.com>
> > > > > ---
> > > > > Changes in v2:
> > > > > 	- No change.
> > > > >
> > > > >  include/config_uncmd_spl.h | 1 +
> > > > >  1 file changed, 1 insertion(+)
> > > > >
> > > > > diff --git a/include/config_uncmd_spl.h
> > > > > b/include/config_uncmd_spl.h index c2f9735ce7..da94b3d9df 100644
> > > > > --- a/include/config_uncmd_spl.h
> > > > > +++ b/include/config_uncmd_spl.h
> > > > > @@ -15,6 +15,7 @@
> > > > >  #undef CONFIG_DM_GPIO
> > > > >  #undef CONFIG_DM_I2C
> > > > >  #undef CONFIG_DM_SPI
> > > > > +#undef CONFIG_DM_SPI_FLASH
> > > > >  #endif
> > > > >
> > > > >  #undef CONFIG_DM_WARN
> > > >
> > > > Long term, this shows places where we need CONFIG_SPL_DM_xxx and
> > > > code should be using CONFIG_IS_ENABLED(DM_xxx).  Please update at
> > > > least the DM_SPI_FLASH case you're finding to behave like that, thanks!
> > > I don't understand you very much. Are you saying to modify the spi-flash
> > related code?
> > 
> > Correct.  include/config_uncmd_spl.h should be removed as there should,
> > long term, be no cases of code in SPL that we can / should exclude not
> > guarded by CONFIG_SPL_xxx instead.
> Do you mean include/config_uncmd_spl.h will be deleted in the future?
> Why did you start adding this file?

The file config_uncmd_spl.h predates the CONFIG_IS_ENABLED() macro and
whats left in that file should have code in question migrated to use
CONFIG_IS_ENABLED(xxx) and as needed new CONFIG_SPL_xxx symbols added,
in case some places _do_ need it.

I'm not asking you to do this migrated, but I don't want to see more
technical debt added here.  We can solve the problem you're seeing
around CONFIG_DM_SPI_FLASH in another easier to maintain manner.
Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190603/b0408f8a/attachment.sig>

      reply	other threads:[~2019-06-03 13:56 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-24  4:40 [U-Boot] [PATCH v2 1/5] spl: dm: disable SPI DM flash for non-DM SPL Chuanhua Han
2019-05-24  4:40 ` [U-Boot] [PATCH v2 2/5] dm: spi: Convert Freescale ESPI driver to driver model Chuanhua Han
2019-06-22 19:09   ` Simon Glass
2019-06-23 10:38     ` [U-Boot] [EXT] " Chuanhua Han
2019-06-24  3:59     ` Chuanhua Han
2019-05-24  4:40 ` [U-Boot] [PATCH v2 3/5] powerpc: dts: t2080: add espi controller node support Chuanhua Han
2019-05-24  4:40 ` [U-Boot] [PATCH v2 4/5] powerpc: dts: t2080qds: add espi slave nodes support Chuanhua Han
2019-05-24  4:40 ` [U-Boot] [PATCH v2 5/5] configs: enable espi device module in T2080QDS Chuanhua Han
2019-05-24 14:24 ` [U-Boot] [PATCH v2 1/5] spl: dm: disable SPI DM flash for non-DM SPL Tom Rini
2019-05-30 10:45   ` [U-Boot] [EXT] " Chuanhua Han
2019-05-30 19:43     ` Tom Rini
2019-05-31  2:49       ` Chuanhua Han
2019-06-03 13:54         ` Tom Rini
2019-06-03  4:18       ` Chuanhua Han
2019-06-03 13:56         ` Tom Rini [this message]

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=20190603135612.GC7705@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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