linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK
@ 2016-12-20 16:04 Masahiro Yamada
  2016-12-20 16:04 ` [PATCH 2/2] arm64: defconfig: enable CONFIG_MTD_NAND and CONFIG_MTD_NAND_DENALI_DT Masahiro Yamada
  2017-01-26  9:37 ` [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
  0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2016-12-20 16:04 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Masahiro Yamada, Arnd Bergmann, Thierry Reding, linux-kernel,
	Kevin Hilman, Krzysztof Kozlowski, Wei Xu, Will Deacon,
	Catalin Marinas, Guodong Xu, Eric Anholt, Riku Voipio

Enable the block layer support for MTD devices.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 869dded..32d73ab 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -143,6 +143,7 @@ CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
 CONFIG_DMA_CMA=y
 CONFIG_MTD=y
+CONFIG_MTD_BLOCK=y
 CONFIG_MTD_M25P80=y
 CONFIG_MTD_SPI_NOR=y
 CONFIG_BLK_DEV_LOOP=y
-- 
2.7.4

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

* [PATCH 2/2] arm64: defconfig: enable CONFIG_MTD_NAND and CONFIG_MTD_NAND_DENALI_DT
  2016-12-20 16:04 [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
@ 2016-12-20 16:04 ` Masahiro Yamada
  2017-01-26  9:37 ` [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
  1 sibling, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2016-12-20 16:04 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Masahiro Yamada, Arnd Bergmann, Thierry Reding, linux-kernel,
	Kevin Hilman, Wei Xu, Will Deacon, Catalin Marinas, Guodong Xu,
	Eric Anholt, Riku Voipio

Enable the NAND framework and the Denali NAND controller driver.
This NAND controller is used on UniPhier SoCs.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm64/configs/defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 32d73ab..0888cab 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -145,6 +145,8 @@ CONFIG_DMA_CMA=y
 CONFIG_MTD=y
 CONFIG_MTD_BLOCK=y
 CONFIG_MTD_M25P80=y
+CONFIG_MTD_NAND=y
+CONFIG_MTD_NAND_DENALI_DT=y
 CONFIG_MTD_SPI_NOR=y
 CONFIG_BLK_DEV_LOOP=y
 CONFIG_BLK_DEV_NBD=m
-- 
2.7.4

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

* Re: [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK
  2016-12-20 16:04 [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
  2016-12-20 16:04 ` [PATCH 2/2] arm64: defconfig: enable CONFIG_MTD_NAND and CONFIG_MTD_NAND_DENALI_DT Masahiro Yamada
@ 2017-01-26  9:37 ` Masahiro Yamada
  2017-01-30  1:36   ` Olof Johansson
  1 sibling, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2017-01-26  9:37 UTC (permalink / raw)
  To: Arnd Bergmann, Olof Johansson, arm
  Cc: Guodong Xu, Eric Anholt, Kevin Hilman, Riku Voipio, Will Deacon,
	Linux Kernel Mailing List, Krzysztof Kozlowski, Masahiro Yamada,
	Wei Xu, Catalin Marinas, Thierry Reding, linux-arm-kernel

Hi Arnd, Olof,

2016-12-21 1:04 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> Enable the block layer support for MTD devices.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Please check this series, and pick it up for ASOC if it looks good.

Thanks,


>
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 869dded..32d73ab 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -143,6 +143,7 @@ CONFIG_DEVTMPFS=y
>  CONFIG_DEVTMPFS_MOUNT=y
>  CONFIG_DMA_CMA=y
>  CONFIG_MTD=y
> +CONFIG_MTD_BLOCK=y
>  CONFIG_MTD_M25P80=y
>  CONFIG_MTD_SPI_NOR=y
>  CONFIG_BLK_DEV_LOOP=y
> --
> 2.7.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel



-- 
Best Regards
Masahiro Yamada

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

* Re: [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK
  2017-01-26  9:37 ` [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
@ 2017-01-30  1:36   ` Olof Johansson
  2017-01-30  2:00     ` Masahiro Yamada
  0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2017-01-30  1:36 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Arnd Bergmann, arm, Guodong Xu, Eric Anholt, Kevin Hilman,
	Riku Voipio, Will Deacon, Linux Kernel Mailing List,
	Krzysztof Kozlowski, Wei Xu, Catalin Marinas, Thierry Reding,
	linux-arm-kernel

On Thu, Jan 26, 2017 at 06:37:16PM +0900, Masahiro Yamada wrote:
> Hi Arnd, Olof,
> 
> 2016-12-21 1:04 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> > Enable the block layer support for MTD devices.
> >
> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> 
> Please check this series, and pick it up for ASOC if it looks good.

Hi,

Please resend it to arm@kernel.org. Getting a reply like this cc:d there is
a bit of hassle in finding the original email and patch, and finding a whole
thread is even worse. So please resend and I'll be happy to apply them!


Thanks,

-Olof

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

* Re: [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK
  2017-01-30  1:36   ` Olof Johansson
@ 2017-01-30  2:00     ` Masahiro Yamada
  0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2017-01-30  2:00 UTC (permalink / raw)
  To: Olof Johansson
  Cc: Arnd Bergmann, arm, Guodong Xu, Eric Anholt, Kevin Hilman,
	Riku Voipio, Will Deacon, Linux Kernel Mailing List,
	Krzysztof Kozlowski, Wei Xu, Catalin Marinas, Thierry Reding,
	linux-arm-kernel

Hi Olof,


2017-01-30 10:36 GMT+09:00 Olof Johansson <olof@lixom.net>:
> On Thu, Jan 26, 2017 at 06:37:16PM +0900, Masahiro Yamada wrote:
>> Hi Arnd, Olof,
>>
>> 2016-12-21 1:04 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
>> > Enable the block layer support for MTD devices.
>> >
>> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
>>
>> Please check this series, and pick it up for ASOC if it looks good.
>
> Hi,
>
> Please resend it to arm@kernel.org.


Done.  I hope the re-sent version is reaching out to you.


> Getting a reply like this cc:d there is
> a bit of hassle in finding the original email and patch, and finding a whole
> thread is even worse. So please resend and I'll be happy to apply them!
>

OK, I will make sure to send to arm@kernel.org next time.

Thanks!


-- 
Best Regards
Masahiro Yamada

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

end of thread, other threads:[~2017-01-30  2:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-20 16:04 [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
2016-12-20 16:04 ` [PATCH 2/2] arm64: defconfig: enable CONFIG_MTD_NAND and CONFIG_MTD_NAND_DENALI_DT Masahiro Yamada
2017-01-26  9:37 ` [PATCH 1/2] arm64: defconfig: enable CONFIG_MTD_BLOCK Masahiro Yamada
2017-01-30  1:36   ` Olof Johansson
2017-01-30  2:00     ` Masahiro Yamada

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