linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
@ 2017-02-13  6:46 Alison Wang
  2017-02-13  6:46 ` [PATCH v3 2/2] mtd: nand: " Alison Wang
  2017-02-13  7:34 ` [PATCH v3 1/2] mtd: ifc: " Boris Brezillon
  0 siblings, 2 replies; 7+ messages in thread
From: Alison Wang @ 2017-02-13  6:46 UTC (permalink / raw)
  To: boris.brezillon, marek.vasut, cyrille.pitchen, linux-kernel,
	linux-arm-kernel, linux-mtd, dwmw2, computersforpeace
  Cc: alison.wang

As Freescale/NXP IFC controller is available on LS1021A, the dependency
for LS1021A is added.

LS1021A is an earlier product and is not compatible with later
LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.

Signed-off-by: Alison Wang <alison.wang@nxp.com>
---
Changes in v3:
- Update the commit message.

Changes in v2:
- New patch

 drivers/memory/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
index ec80e35..fff8345 100644
--- a/drivers/memory/Kconfig
+++ b/drivers/memory/Kconfig
@@ -115,7 +115,7 @@ config FSL_CORENET_CF
 
 config FSL_IFC
 	bool
-	depends on FSL_SOC || ARCH_LAYERSCAPE
+	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
 
 config JZ4780_NEMC
 	bool "Ingenic JZ4780 SoC NEMC driver"
-- 
2.1.0.27.g96db324

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v3 2/2] mtd: nand: Update dependency of IFC for LS1021A
  2017-02-13  6:46 [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A Alison Wang
@ 2017-02-13  6:46 ` Alison Wang
  2017-02-13  7:34 ` [PATCH v3 1/2] mtd: ifc: " Boris Brezillon
  1 sibling, 0 replies; 7+ messages in thread
From: Alison Wang @ 2017-02-13  6:46 UTC (permalink / raw)
  To: boris.brezillon, marek.vasut, cyrille.pitchen, linux-kernel,
	linux-arm-kernel, linux-mtd, dwmw2, computersforpeace
  Cc: alison.wang

As NAND support for Freescale/NXP IFC controller is available on
LS1021A, the dependency for LS1021A is added.

LS1021A is an earlier product and is not compatible with later
LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.

Signed-off-by: Alison Wang <alison.wang@nxp.com>
---
Changes in v3:
- Update the commit message.

Changes in v2:
- None

 drivers/mtd/nand/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index 353a9dd..85e3860 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -441,7 +441,7 @@ config MTD_NAND_FSL_ELBC
 
 config MTD_NAND_FSL_IFC
 	tristate "NAND support for Freescale IFC controller"
-	depends on FSL_SOC || ARCH_LAYERSCAPE
+	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
 	select FSL_IFC
 	select MEMORY
 	help
-- 
2.1.0.27.g96db324

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
  2017-02-13  6:46 [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A Alison Wang
  2017-02-13  6:46 ` [PATCH v3 2/2] mtd: nand: " Alison Wang
@ 2017-02-13  7:34 ` Boris Brezillon
  2017-02-13  7:39   ` Alison Wang
  1 sibling, 1 reply; 7+ messages in thread
From: Boris Brezillon @ 2017-02-13  7:34 UTC (permalink / raw)
  To: Alison Wang
  Cc: marek.vasut, cyrille.pitchen, linux-kernel, linux-arm-kernel,
	linux-mtd, dwmw2, computersforpeace, alison.wang

Hi Alison,

The subject prefix is still wrong, should be 'memory: ifc: '.

On Mon, 13 Feb 2017 14:46:55 +0800
Alison Wang <b18965@freescale.com> wrote:

> As Freescale/NXP IFC controller is available on LS1021A, the dependency
> for LS1021A is added.
> 
> LS1021A is an earlier product and is not compatible with later
> LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.
> 
> Signed-off-by: Alison Wang <alison.wang@nxp.com>
> ---
> Changes in v3:
> - Update the commit message.
> 
> Changes in v2:
> - New patch
> 
>  drivers/memory/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
> index ec80e35..fff8345 100644
> --- a/drivers/memory/Kconfig
> +++ b/drivers/memory/Kconfig
> @@ -115,7 +115,7 @@ config FSL_CORENET_CF
>  
>  config FSL_IFC
>  	bool
> -	depends on FSL_SOC || ARCH_LAYERSCAPE
> +	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
>  
>  config JZ4780_NEMC
>  	bool "Ingenic JZ4780 SoC NEMC driver"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
  2017-02-13  7:34 ` [PATCH v3 1/2] mtd: ifc: " Boris Brezillon
@ 2017-02-13  7:39   ` Alison Wang
  2017-02-13  7:55     ` Boris Brezillon
  0 siblings, 1 reply; 7+ messages in thread
From: Alison Wang @ 2017-02-13  7:39 UTC (permalink / raw)
  To: Boris Brezillon, Alison Wang
  Cc: marek.vasut, cyrille.pitchen, linux-kernel, linux-arm-kernel,
	linux-mtd, dwmw2, computersforpeace

Hi, Boris,

	Sorry, I forgot to change them. Should I resend them or you help to fix that when applying?


Best Regards,
Alison Wang

> 
> Hi Alison,
> 
> The subject prefix is still wrong, should be 'memory: ifc: '.
> 
> On Mon, 13 Feb 2017 14:46:55 +0800
> Alison Wang <b18965@freescale.com> wrote:
> 
> > As Freescale/NXP IFC controller is available on LS1021A, the
> > dependency for LS1021A is added.
> >
> > LS1021A is an earlier product and is not compatible with later
> > LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.
> >
> > Signed-off-by: Alison Wang <alison.wang@nxp.com>
> > ---
> > Changes in v3:
> > - Update the commit message.
> >
> > Changes in v2:
> > - New patch
> >
> >  drivers/memory/Kconfig | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig index
> > ec80e35..fff8345 100644
> > --- a/drivers/memory/Kconfig
> > +++ b/drivers/memory/Kconfig
> > @@ -115,7 +115,7 @@ config FSL_CORENET_CF
> >
> >  config FSL_IFC
> >  	bool
> > -	depends on FSL_SOC || ARCH_LAYERSCAPE
> > +	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
> >
> >  config JZ4780_NEMC
> >  	bool "Ingenic JZ4780 SoC NEMC driver"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
  2017-02-13  7:39   ` Alison Wang
@ 2017-02-13  7:55     ` Boris Brezillon
  2017-02-13  8:01       ` Alison Wang
  0 siblings, 1 reply; 7+ messages in thread
From: Boris Brezillon @ 2017-02-13  7:55 UTC (permalink / raw)
  To: Alison Wang
  Cc: Alison Wang, marek.vasut, cyrille.pitchen, linux-kernel,
	linux-arm-kernel, linux-mtd, dwmw2, computersforpeace

On Mon, 13 Feb 2017 07:39:41 +0000
Alison Wang <alison.wang@nxp.com> wrote:

> Hi, Boris,
> 
> 	Sorry, I forgot to change them. Should I resend them or you help to fix that when applying?

I can fix that when applying, no need to resend.
Note that you missed 4.11 (already sent my PR to Brian), I'll queue it
for 4.12.

Regards,

Boris

> 
> 
> Best Regards,
> Alison Wang
> 
> > 
> > Hi Alison,
> > 
> > The subject prefix is still wrong, should be 'memory: ifc: '.
> > 
> > On Mon, 13 Feb 2017 14:46:55 +0800
> > Alison Wang <b18965@freescale.com> wrote:
> >   
> > > As Freescale/NXP IFC controller is available on LS1021A, the
> > > dependency for LS1021A is added.
> > >
> > > LS1021A is an earlier product and is not compatible with later
> > > LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.
> > >
> > > Signed-off-by: Alison Wang <alison.wang@nxp.com>
> > > ---
> > > Changes in v3:
> > > - Update the commit message.
> > >
> > > Changes in v2:
> > > - New patch
> > >
> > >  drivers/memory/Kconfig | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig index
> > > ec80e35..fff8345 100644
> > > --- a/drivers/memory/Kconfig
> > > +++ b/drivers/memory/Kconfig
> > > @@ -115,7 +115,7 @@ config FSL_CORENET_CF
> > >
> > >  config FSL_IFC
> > >  	bool
> > > -	depends on FSL_SOC || ARCH_LAYERSCAPE
> > > +	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
> > >
> > >  config JZ4780_NEMC
> > >  	bool "Ingenic JZ4780 SoC NEMC driver"  
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
  2017-02-13  7:55     ` Boris Brezillon
@ 2017-02-13  8:01       ` Alison Wang
  2017-03-16  9:31         ` Boris Brezillon
  0 siblings, 1 reply; 7+ messages in thread
From: Alison Wang @ 2017-02-13  8:01 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: Alison Wang, marek.vasut, cyrille.pitchen, linux-kernel,
	linux-arm-kernel, linux-mtd, dwmw2, computersforpeace

> On Mon, 13 Feb 2017 07:39:41 +0000
> Alison Wang <alison.wang@nxp.com> wrote:
> 
> > Hi, Boris,
> >
> > 	Sorry, I forgot to change them. Should I resend them or you help
> to fix that when applying?
> 
> I can fix that when applying, no need to resend.
> Note that you missed 4.11 (already sent my PR to Brian), I'll queue it
> for 4.12.
> 
[Alison Wang] Ok, I see. Thanks a lot.


Best Regards,
Alison Wang
> 
> 
> >
> >
> > Best Regards,
> > Alison Wang
> >
> > >
> > > Hi Alison,
> > >
> > > The subject prefix is still wrong, should be 'memory: ifc: '.
> > >
> > > On Mon, 13 Feb 2017 14:46:55 +0800
> > > Alison Wang <b18965@freescale.com> wrote:
> > >
> > > > As Freescale/NXP IFC controller is available on LS1021A, the
> > > > dependency for LS1021A is added.
> > > >
> > > > LS1021A is an earlier product and is not compatible with later
> > > > LayerScape architecture. So ARCH_LAYERSCAPE can't cover LS1021A.
> > > >
> > > > Signed-off-by: Alison Wang <alison.wang@nxp.com>
> > > > ---
> > > > Changes in v3:
> > > > - Update the commit message.
> > > >
> > > > Changes in v2:
> > > > - New patch
> > > >
> > > >  drivers/memory/Kconfig | 2 +-
> > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
> index
> > > > ec80e35..fff8345 100644
> > > > --- a/drivers/memory/Kconfig
> > > > +++ b/drivers/memory/Kconfig
> > > > @@ -115,7 +115,7 @@ config FSL_CORENET_CF
> > > >
> > > >  config FSL_IFC
> > > >  	bool
> > > > -	depends on FSL_SOC || ARCH_LAYERSCAPE
> > > > +	depends on FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A
> > > >
> > > >  config JZ4780_NEMC
> > > >  	bool "Ingenic JZ4780 SoC NEMC driver"
> >

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A
  2017-02-13  8:01       ` Alison Wang
@ 2017-03-16  9:31         ` Boris Brezillon
  0 siblings, 0 replies; 7+ messages in thread
From: Boris Brezillon @ 2017-03-16  9:31 UTC (permalink / raw)
  To: Alison Wang
  Cc: Alison Wang, marek.vasut, cyrille.pitchen, linux-kernel,
	linux-arm-kernel, linux-mtd, dwmw2, computersforpeace

On Mon, 13 Feb 2017 08:01:17 +0000
Alison Wang <alison.wang@nxp.com> wrote:

> > On Mon, 13 Feb 2017 07:39:41 +0000
> > Alison Wang <alison.wang@nxp.com> wrote:
> >   
> > > Hi, Boris,
> > >
> > > 	Sorry, I forgot to change them. Should I resend them or you help  
> > to fix that when applying?
> > 
> > I can fix that when applying, no need to resend.
> > Note that you missed 4.11 (already sent my PR to Brian), I'll queue it
> > for 4.12.
> >   
> [Alison Wang] Ok, I see. Thanks a lot.

Applied both.

Thanks,

Boris

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-03-16  9:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-13  6:46 [PATCH v3 1/2] mtd: ifc: Update dependency of IFC for LS1021A Alison Wang
2017-02-13  6:46 ` [PATCH v3 2/2] mtd: nand: " Alison Wang
2017-02-13  7:34 ` [PATCH v3 1/2] mtd: ifc: " Boris Brezillon
2017-02-13  7:39   ` Alison Wang
2017-02-13  7:55     ` Boris Brezillon
2017-02-13  8:01       ` Alison Wang
2017-03-16  9:31         ` Boris Brezillon

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).