linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] arm64: defconfig: Enable SPI NAND flashes
@ 2025-01-16  3:51 Santhosh Kumar K
  2025-01-30  6:23 ` Santhosh Kumar K
  0 siblings, 1 reply; 4+ messages in thread
From: Santhosh Kumar K @ 2025-01-16  3:51 UTC (permalink / raw)
  To: catalin.marinas, will
  Cc: linux-arm-kernel, linux-kernel, krzk, vigneshr, p-mantena, s-k6

Add support for SPI NAND flashes on ARM64 boards/EVMs such as:

1. W35N01JW on AM62x LP SK, AM62A7 SK, J721S2 EVM, J784S4 EVM,
   J722S EVM, J742S2 EVM
2. W25N01JW on AM62Lx EVM

by enabling the MTD_SPI_NAND config as a module.

Signed-off-by: Santhosh Kumar K <s-k6@ti.com>
---

Changes in v2:
 - Fix commit message
 - Rebase on next
 - Link to v1: https://lore.kernel.org/linux-arm-kernel/20250102120043.1404843-1-s-k6@ti.com/
 
Repo: https://github.com/santhosh21/linux/tree/uL_next
Test results: https://gist.github.com/santhosh21/71ab6646dccc238a0b3c47c0382f219a

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

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index e729948b7d69..35f312a39e38 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -283,6 +283,7 @@ CONFIG_MTD_NAND_BRCMNAND=m
 CONFIG_MTD_NAND_FSL_IFC=y
 CONFIG_MTD_NAND_QCOM=y
 CONFIG_MTD_SPI_NOR=y
+CONFIG_MTD_SPI_NAND=m
 CONFIG_MTD_UBI=m
 CONFIG_MTD_HYPERBUS=m
 CONFIG_HBMC_AM654=m
-- 
2.34.1



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

* Re: [PATCH v2] arm64: defconfig: Enable SPI NAND flashes
  2025-01-16  3:51 [PATCH v2] arm64: defconfig: Enable SPI NAND flashes Santhosh Kumar K
@ 2025-01-30  6:23 ` Santhosh Kumar K
  2025-01-30  6:28   ` Vignesh Raghavendra
  2025-01-30 11:37   ` Catalin Marinas
  0 siblings, 2 replies; 4+ messages in thread
From: Santhosh Kumar K @ 2025-01-30  6:23 UTC (permalink / raw)
  To: catalin.marinas, will
  Cc: linux-arm-kernel, linux-kernel, krzk, vigneshr, p-mantena, s-k6

Hi, all,

On 16/01/25 09:21, Santhosh Kumar K wrote:
> Add support for SPI NAND flashes on ARM64 boards/EVMs such as:
> 
> 1. W35N01JW on AM62x LP SK, AM62A7 SK, J721S2 EVM, J784S4 EVM,
>     J722S EVM, J742S2 EVM
> 2. W25N01JW on AM62Lx EVM
> 
> by enabling the MTD_SPI_NAND config as a module.
> 
> Signed-off-by: Santhosh Kumar K <s-k6@ti.com>
> ---

Gentle ping.

Regards,
Santhosh.

> 
> Changes in v2:
>   - Fix commit message
>   - Rebase on next
>   - Link to v1: https://lore.kernel.org/linux-arm-kernel/20250102120043.1404843-1-s-k6@ti.com/
>   
> Repo: https://github.com/santhosh21/linux/tree/uL_next
> Test results: https://gist.github.com/santhosh21/71ab6646dccc238a0b3c47c0382f219a
> 
> ---
>   arch/arm64/configs/defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index e729948b7d69..35f312a39e38 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -283,6 +283,7 @@ CONFIG_MTD_NAND_BRCMNAND=m
>   CONFIG_MTD_NAND_FSL_IFC=y
>   CONFIG_MTD_NAND_QCOM=y
>   CONFIG_MTD_SPI_NOR=y
> +CONFIG_MTD_SPI_NAND=m
>   CONFIG_MTD_UBI=m
>   CONFIG_MTD_HYPERBUS=m
>   CONFIG_HBMC_AM654=m


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

* Re: [PATCH v2] arm64: defconfig: Enable SPI NAND flashes
  2025-01-30  6:23 ` Santhosh Kumar K
@ 2025-01-30  6:28   ` Vignesh Raghavendra
  2025-01-30 11:37   ` Catalin Marinas
  1 sibling, 0 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2025-01-30  6:28 UTC (permalink / raw)
  To: Santhosh Kumar K, catalin.marinas, will
  Cc: linux-arm-kernel, linux-kernel, krzk, p-mantena



On 30/01/25 11:53, Santhosh Kumar K wrote:
> Hi, all,
> 
> On 16/01/25 09:21, Santhosh Kumar K wrote:
>> Add support for SPI NAND flashes on ARM64 boards/EVMs such as:
>>
>> 1. W35N01JW on AM62x LP SK, AM62A7 SK, J721S2 EVM, J784S4 EVM,
>>     J722S EVM, J742S2 EVM
>> 2. W25N01JW on AM62Lx EVM
>>
>> by enabling the MTD_SPI_NAND config as a module.
>>
>> Signed-off-by: Santhosh Kumar K <s-k6@ti.com>
>> ---
> 
> Gentle ping.
> 

This would need to wait till 6.14-rc1 comes out.

-- 
Regards
Vignesh
https://ti.com/opensource



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

* Re: [PATCH v2] arm64: defconfig: Enable SPI NAND flashes
  2025-01-30  6:23 ` Santhosh Kumar K
  2025-01-30  6:28   ` Vignesh Raghavendra
@ 2025-01-30 11:37   ` Catalin Marinas
  1 sibling, 0 replies; 4+ messages in thread
From: Catalin Marinas @ 2025-01-30 11:37 UTC (permalink / raw)
  To: Santhosh Kumar K
  Cc: will, linux-arm-kernel, linux-kernel, krzk, vigneshr, p-mantena,
	Arnd Bergmann

On Thu, Jan 30, 2025 at 11:53:58AM +0530, Santhosh Kumar K wrote:
> On 16/01/25 09:21, Santhosh Kumar K wrote:
> > Add support for SPI NAND flashes on ARM64 boards/EVMs such as:
> > 
> > 1. W35N01JW on AM62x LP SK, AM62A7 SK, J721S2 EVM, J784S4 EVM,
> >     J722S EVM, J742S2 EVM
> > 2. W25N01JW on AM62Lx EVM
> > 
> > by enabling the MTD_SPI_NAND config as a module.
> > 
> > Signed-off-by: Santhosh Kumar K <s-k6@ti.com>
> > ---
> 
> Gentle ping.

It's usually Arnd or specific SoC maintainers picking up defconfig
changes (the arm64 maintainers just go for the Kconfig directly ;)).

-- 
Catalin


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

end of thread, other threads:[~2025-01-30 11:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-16  3:51 [PATCH v2] arm64: defconfig: Enable SPI NAND flashes Santhosh Kumar K
2025-01-30  6:23 ` Santhosh Kumar K
2025-01-30  6:28   ` Vignesh Raghavendra
2025-01-30 11:37   ` Catalin Marinas

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