All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-07  7:23 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  7:23 UTC (permalink / raw)
  To: Russell King, Krzysztof Kozlowski, Alim Akhtar, Linus Walleij,
	Arnd Bergmann, Ard Biesheuvel, linux-arm-kernel, linux-kernel,
	linux-samsung-soc
  Cc: Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
available anymore - out-of-stock on FriendlyArm (one of manufacturers of
boards) and only few specialist stores still offer them for quite a high
price.

The community around these platforms was not very active, so I suspect
no one really uses them anymore. Maintenance takes precious time so
there is little sense in keeping them alive if there are no real users.

Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
possible removal in after 2022 for the first and 2024 for the lattere.
The deprecation message will be as text in Kconfig, build message (not a
warning though) and runtime print error.

If there are any users, they might respond and postpone the removal.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Tomasz Figa <tomasz.figa@gmail.com>

---

Changes since v1:
1. Language: in->for removal.
2. Don't show pragma with COMPILE_TEST.
3. Add Acks.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/Kconfig                  | 7 ++++++-
 arch/arm/mach-s3c/Kconfig.s3c64xx | 7 ++++++-
 arch/arm/mach-s3c/cpu.c           | 1 +
 arch/arm/mach-s3c/init.c          | 2 ++
 arch/arm/mach-s3c/s3c24xx.c       | 7 +++++++
 arch/arm/mach-s3c/s3c64xx.c       | 7 +++++++
 6 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 4814e098f320..22baf93d8be9 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -468,7 +468,7 @@ config ARCH_SA1100
 	  Support for StrongARM 11x0 based boards.
 
 config ARCH_S3C24XX
-	bool "Samsung S3C24XX SoCs"
+	bool "Samsung S3C24XX SoCs (deprecated, see help)"
 	select ATAGS
 	select CLKSRC_SAMSUNG_PWM
 	select GPIO_SAMSUNG
@@ -485,6 +485,11 @@ config ARCH_S3C24XX
 	  (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
 	  Samsung SMDK2410 development board (and derivatives).
 
+	  The platform is deprecated and scheduled for removal. Please reach to
+	  the maintainers of the platform and linux-samsung-soc@vger.kernel.org if
+	  you still use it.
+	  Without such feedback, the platform will be removed after 2022.
+
 config ARCH_OMAP1
 	bool "TI OMAP1"
 	select ARCH_OMAP
diff --git a/arch/arm/mach-s3c/Kconfig.s3c64xx b/arch/arm/mach-s3c/Kconfig.s3c64xx
index af01675d8769..2b27bff4d928 100644
--- a/arch/arm/mach-s3c/Kconfig.s3c64xx
+++ b/arch/arm/mach-s3c/Kconfig.s3c64xx
@@ -4,7 +4,7 @@
 #	Simtec Electronics, Ben Dooks <ben@simtec.co.uk>
 
 menuconfig ARCH_S3C64XX
-	bool "Samsung S3C64XX"
+	bool "Samsung S3C64XX (deprecated, see help)"
 	depends on ARCH_MULTI_V6
 	select ARM_AMBA
 	select ARM_VIC
@@ -24,6 +24,11 @@ menuconfig ARCH_S3C64XX
 	help
 	  Samsung S3C64XX series based systems
 
+	  The platform is deprecated and scheduled for removal. Please reach to
+	  the maintainers of the platform and linux-samsung-soc@vger.kernel.org if
+	  you still use it.
+	  Without such feedback, the platform will be removed after 2024.
+
 if ARCH_S3C64XX
 
 # Configuration options for the S3C6410 CPU
diff --git a/arch/arm/mach-s3c/cpu.c b/arch/arm/mach-s3c/cpu.c
index 6e9772555f0d..0df428f01855 100644
--- a/arch/arm/mach-s3c/cpu.c
+++ b/arch/arm/mach-s3c/cpu.c
@@ -28,4 +28,5 @@ void __init s3c64xx_init_cpu(void)
 	}
 
 	pr_info("Samsung CPU ID: 0x%08lx\n", samsung_cpu_id);
+	pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it.  Without such feedback, the platform will be removed after 2022.\n");
 }
diff --git a/arch/arm/mach-s3c/init.c b/arch/arm/mach-s3c/init.c
index 9d92f03e9bc1..bf513616f55d 100644
--- a/arch/arm/mach-s3c/init.c
+++ b/arch/arm/mach-s3c/init.c
@@ -59,6 +59,8 @@ void __init s3c_init_cpu(unsigned long idcode,
 
 	if (cpu->map_io)
 		cpu->map_io();
+
+	pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it.  Without such feedback, the platform will be removed after 2022.\n");
 }
 
 /* s3c24xx_init_clocks
diff --git a/arch/arm/mach-s3c/s3c24xx.c b/arch/arm/mach-s3c/s3c24xx.c
index 37eaf9480da7..819a95364af9 100644
--- a/arch/arm/mach-s3c/s3c24xx.c
+++ b/arch/arm/mach-s3c/s3c24xx.c
@@ -678,3 +678,10 @@ struct platform_device s3c2410_device_dclk = {
 	},
 };
 #endif
+
+#ifndef CONFIG_COMPILE_TEST
+#pragma message "The platform is deprecated and scheduled for removal. " \
+		"Please reach to the maintainers of the platform " \
+		"and linux-samsung-soc@vger.kernel.org if you still use it." \
+		"Without such feedback, the platform will be removed after 2022."
+#endif
diff --git a/arch/arm/mach-s3c/s3c64xx.c b/arch/arm/mach-s3c/s3c64xx.c
index 4dfb648142f2..178085df6d9d 100644
--- a/arch/arm/mach-s3c/s3c64xx.c
+++ b/arch/arm/mach-s3c/s3c64xx.c
@@ -425,3 +425,10 @@ static int __init s3c64xx_init_irq_eint(void)
 	return 0;
 }
 arch_initcall(s3c64xx_init_irq_eint);
+
+#ifndef CONFIG_COMPILE_TEST
+#pragma message "The platform is deprecated and scheduled for removal. " \
+		"Please reach to the maintainers of the platform " \
+		"and linux-samsung-soc@vger.kernel.org if you still use it." \
+		"Without such feedback, the platform will be removed after 2024."
+#endif
-- 
2.32.0


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

* [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-07  7:23 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  7:23 UTC (permalink / raw)
  To: Russell King, Krzysztof Kozlowski, Alim Akhtar, Linus Walleij,
	Arnd Bergmann, Ard Biesheuvel, linux-arm-kernel, linux-kernel,
	linux-samsung-soc
  Cc: Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
available anymore - out-of-stock on FriendlyArm (one of manufacturers of
boards) and only few specialist stores still offer them for quite a high
price.

The community around these platforms was not very active, so I suspect
no one really uses them anymore. Maintenance takes precious time so
there is little sense in keeping them alive if there are no real users.

Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
possible removal in after 2022 for the first and 2024 for the lattere.
The deprecation message will be as text in Kconfig, build message (not a
warning though) and runtime print error.

If there are any users, they might respond and postpone the removal.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Tomasz Figa <tomasz.figa@gmail.com>

---

Changes since v1:
1. Language: in->for removal.
2. Don't show pragma with COMPILE_TEST.
3. Add Acks.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/Kconfig                  | 7 ++++++-
 arch/arm/mach-s3c/Kconfig.s3c64xx | 7 ++++++-
 arch/arm/mach-s3c/cpu.c           | 1 +
 arch/arm/mach-s3c/init.c          | 2 ++
 arch/arm/mach-s3c/s3c24xx.c       | 7 +++++++
 arch/arm/mach-s3c/s3c64xx.c       | 7 +++++++
 6 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 4814e098f320..22baf93d8be9 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -468,7 +468,7 @@ config ARCH_SA1100
 	  Support for StrongARM 11x0 based boards.
 
 config ARCH_S3C24XX
-	bool "Samsung S3C24XX SoCs"
+	bool "Samsung S3C24XX SoCs (deprecated, see help)"
 	select ATAGS
 	select CLKSRC_SAMSUNG_PWM
 	select GPIO_SAMSUNG
@@ -485,6 +485,11 @@ config ARCH_S3C24XX
 	  (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
 	  Samsung SMDK2410 development board (and derivatives).
 
+	  The platform is deprecated and scheduled for removal. Please reach to
+	  the maintainers of the platform and linux-samsung-soc@vger.kernel.org if
+	  you still use it.
+	  Without such feedback, the platform will be removed after 2022.
+
 config ARCH_OMAP1
 	bool "TI OMAP1"
 	select ARCH_OMAP
diff --git a/arch/arm/mach-s3c/Kconfig.s3c64xx b/arch/arm/mach-s3c/Kconfig.s3c64xx
index af01675d8769..2b27bff4d928 100644
--- a/arch/arm/mach-s3c/Kconfig.s3c64xx
+++ b/arch/arm/mach-s3c/Kconfig.s3c64xx
@@ -4,7 +4,7 @@
 #	Simtec Electronics, Ben Dooks <ben@simtec.co.uk>
 
 menuconfig ARCH_S3C64XX
-	bool "Samsung S3C64XX"
+	bool "Samsung S3C64XX (deprecated, see help)"
 	depends on ARCH_MULTI_V6
 	select ARM_AMBA
 	select ARM_VIC
@@ -24,6 +24,11 @@ menuconfig ARCH_S3C64XX
 	help
 	  Samsung S3C64XX series based systems
 
+	  The platform is deprecated and scheduled for removal. Please reach to
+	  the maintainers of the platform and linux-samsung-soc@vger.kernel.org if
+	  you still use it.
+	  Without such feedback, the platform will be removed after 2024.
+
 if ARCH_S3C64XX
 
 # Configuration options for the S3C6410 CPU
diff --git a/arch/arm/mach-s3c/cpu.c b/arch/arm/mach-s3c/cpu.c
index 6e9772555f0d..0df428f01855 100644
--- a/arch/arm/mach-s3c/cpu.c
+++ b/arch/arm/mach-s3c/cpu.c
@@ -28,4 +28,5 @@ void __init s3c64xx_init_cpu(void)
 	}
 
 	pr_info("Samsung CPU ID: 0x%08lx\n", samsung_cpu_id);
+	pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it.  Without such feedback, the platform will be removed after 2022.\n");
 }
diff --git a/arch/arm/mach-s3c/init.c b/arch/arm/mach-s3c/init.c
index 9d92f03e9bc1..bf513616f55d 100644
--- a/arch/arm/mach-s3c/init.c
+++ b/arch/arm/mach-s3c/init.c
@@ -59,6 +59,8 @@ void __init s3c_init_cpu(unsigned long idcode,
 
 	if (cpu->map_io)
 		cpu->map_io();
+
+	pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it.  Without such feedback, the platform will be removed after 2022.\n");
 }
 
 /* s3c24xx_init_clocks
diff --git a/arch/arm/mach-s3c/s3c24xx.c b/arch/arm/mach-s3c/s3c24xx.c
index 37eaf9480da7..819a95364af9 100644
--- a/arch/arm/mach-s3c/s3c24xx.c
+++ b/arch/arm/mach-s3c/s3c24xx.c
@@ -678,3 +678,10 @@ struct platform_device s3c2410_device_dclk = {
 	},
 };
 #endif
+
+#ifndef CONFIG_COMPILE_TEST
+#pragma message "The platform is deprecated and scheduled for removal. " \
+		"Please reach to the maintainers of the platform " \
+		"and linux-samsung-soc@vger.kernel.org if you still use it." \
+		"Without such feedback, the platform will be removed after 2022."
+#endif
diff --git a/arch/arm/mach-s3c/s3c64xx.c b/arch/arm/mach-s3c/s3c64xx.c
index 4dfb648142f2..178085df6d9d 100644
--- a/arch/arm/mach-s3c/s3c64xx.c
+++ b/arch/arm/mach-s3c/s3c64xx.c
@@ -425,3 +425,10 @@ static int __init s3c64xx_init_irq_eint(void)
 	return 0;
 }
 arch_initcall(s3c64xx_init_irq_eint);
+
+#ifndef CONFIG_COMPILE_TEST
+#pragma message "The platform is deprecated and scheduled for removal. " \
+		"Please reach to the maintainers of the platform " \
+		"and linux-samsung-soc@vger.kernel.org if you still use it." \
+		"Without such feedback, the platform will be removed after 2024."
+#endif
-- 
2.32.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
  2022-04-07  7:23 ` Krzysztof Kozlowski
@ 2022-04-07  7:40   ` Arnd Bergmann
  -1 siblings, 0 replies; 10+ messages in thread
From: Arnd Bergmann @ 2022-04-07  7:40 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Russell King, Alim Akhtar, Linus Walleij, Arnd Bergmann,
	Ard Biesheuvel, Linux ARM, Linux Kernel Mailing List,
	moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On Thu, Apr 7, 2022 at 9:23 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
>
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
>
> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
> possible removal in after 2022 for the first and 2024 for the lattere.
> The deprecation message will be as text in Kconfig, build message (not a
> warning though) and runtime print error.
>
> If there are any users, they might respond and postpone the removal.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Acked-by: Heiko Stuebner <heiko@sntech.de>
> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>

Acked-by: Arnd Bergmann <arnd@arndb.de>

Should I pick it up through the fixes branch for 5.18 if there are no
immediate objections, or do you prefer to just do it as part of your
normal samsung patches for 5.19?

If you have nothing else planned for mach-s3c, I can also add it
to the multiplatform branch that already touches the platform.

        Arnd

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-07  7:40   ` Arnd Bergmann
  0 siblings, 0 replies; 10+ messages in thread
From: Arnd Bergmann @ 2022-04-07  7:40 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Russell King, Alim Akhtar, Linus Walleij, Arnd Bergmann,
	Ard Biesheuvel, Linux ARM, Linux Kernel Mailing List,
	moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On Thu, Apr 7, 2022 at 9:23 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
>
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
>
> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
> possible removal in after 2022 for the first and 2024 for the lattere.
> The deprecation message will be as text in Kconfig, build message (not a
> warning though) and runtime print error.
>
> If there are any users, they might respond and postpone the removal.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Acked-by: Heiko Stuebner <heiko@sntech.de>
> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>

Acked-by: Arnd Bergmann <arnd@arndb.de>

Should I pick it up through the fixes branch for 5.18 if there are no
immediate objections, or do you prefer to just do it as part of your
normal samsung patches for 5.19?

If you have nothing else planned for mach-s3c, I can also add it
to the multiplatform branch that already touches the platform.

        Arnd

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
  2022-04-07  7:40   ` Arnd Bergmann
@ 2022-04-07  8:02     ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  8:02 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Russell King, Alim Akhtar, Linus Walleij, Ard Biesheuvel,
	Linux ARM, Linux Kernel Mailing List,
	moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On 07/04/2022 09:40, Arnd Bergmann wrote:
> On Thu, Apr 7, 2022 at 9:23 AM Krzysztof Kozlowski
> <krzysztof.kozlowski@linaro.org> wrote:
>>
>> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
>> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
>> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
>> boards) and only few specialist stores still offer them for quite a high
>> price.
>>
>> The community around these platforms was not very active, so I suspect
>> no one really uses them anymore. Maintenance takes precious time so
>> there is little sense in keeping them alive if there are no real users.
>>
>> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
>> possible removal in after 2022 for the first and 2024 for the lattere.
>> The deprecation message will be as text in Kconfig, build message (not a
>> warning though) and runtime print error.
>>
>> If there are any users, they might respond and postpone the removal.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> Acked-by: Heiko Stuebner <heiko@sntech.de>
>> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>
> 
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> 
> Should I pick it up through the fixes branch for 5.18 if there are no
> immediate objections, or do you prefer to just do it as part of your
> normal samsung patches for 5.19?
> 
> If you have nothing else planned for mach-s3c, I can also add it
> to the multiplatform branch that already touches the platform.

Feel free to take it as fixes (or s3c multiplatform).

Best regards,
Krzysztof

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-07  8:02     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  8:02 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Russell King, Alim Akhtar, Linus Walleij, Ard Biesheuvel,
	Linux ARM, Linux Kernel Mailing List,
	moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On 07/04/2022 09:40, Arnd Bergmann wrote:
> On Thu, Apr 7, 2022 at 9:23 AM Krzysztof Kozlowski
> <krzysztof.kozlowski@linaro.org> wrote:
>>
>> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
>> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
>> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
>> boards) and only few specialist stores still offer them for quite a high
>> price.
>>
>> The community around these platforms was not very active, so I suspect
>> no one really uses them anymore. Maintenance takes precious time so
>> there is little sense in keeping them alive if there are no real users.
>>
>> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
>> possible removal in after 2022 for the first and 2024 for the lattere.
>> The deprecation message will be as text in Kconfig, build message (not a
>> warning though) and runtime print error.
>>
>> If there are any users, they might respond and postpone the removal.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> Acked-by: Heiko Stuebner <heiko@sntech.de>
>> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>
> 
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> 
> Should I pick it up through the fixes branch for 5.18 if there are no
> immediate objections, or do you prefer to just do it as part of your
> normal samsung patches for 5.19?
> 
> If you have nothing else planned for mach-s3c, I can also add it
> to the multiplatform branch that already touches the platform.

Feel free to take it as fixes (or s3c multiplatform).

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
  2022-04-07  7:23 ` Krzysztof Kozlowski
@ 2022-04-07  8:43   ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  8:43 UTC (permalink / raw)
  To: Russell King, Alim Akhtar, Linus Walleij, Arnd Bergmann,
	Ard Biesheuvel, linux-arm-kernel, linux-kernel,
	linux-samsung-soc
  Cc: Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On 07/04/2022 09:23, Krzysztof Kozlowski wrote:
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
> 
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
> 
> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
> possible removal in after 2022 for the first and 2024 for the lattere.
> The deprecation message will be as text in Kconfig, build message (not a
> warning though) and runtime print error.
> 
> If there are any users, they might respond and postpone the removal.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Acked-by: Heiko Stuebner <heiko@sntech.de>
> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>
> 
> ---
> 
> Changes since v1:
> 1. Language: in->for removal.
> 2. Don't show pragma with COMPILE_TEST.
> 3. Add Acks.
> 

I forgot to add important part in changelog - I moved the s3c64xx
removal to 2024. There was an interest from Mark to keep the platform
running and it is a newer SoC than s3c64xx.


Best regards,
Krzysztof

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-07  8:43   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-07  8:43 UTC (permalink / raw)
  To: Russell King, Alim Akhtar, Linus Walleij, Arnd Bergmann,
	Ard Biesheuvel, linux-arm-kernel, linux-kernel,
	linux-samsung-soc
  Cc: Marek Szyprowski, Sylwester Nawrocki, Olof Johansson,
	Heiko Stuebner, Tomasz Figa

On 07/04/2022 09:23, Krzysztof Kozlowski wrote:
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
> 
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
> 
> Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention
> possible removal in after 2022 for the first and 2024 for the lattere.
> The deprecation message will be as text in Kconfig, build message (not a
> warning though) and runtime print error.
> 
> If there are any users, they might respond and postpone the removal.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Acked-by: Heiko Stuebner <heiko@sntech.de>
> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>
> 
> ---
> 
> Changes since v1:
> 1. Language: in->for removal.
> 2. Don't show pragma with COMPILE_TEST.
> 3. Add Acks.
> 

I forgot to add important part in changelog - I moved the s3c64xx
removal to 2024. There was an interest from Mark to keep the platform
running and it is a newer SoC than s3c64xx.


Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
  2022-04-07  7:23 ` Krzysztof Kozlowski
@ 2022-04-19 10:44   ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-19 10:44 UTC (permalink / raw)
  To: Russell King, Alim Akhtar, Arnd Bergmann, linux-kernel,
	linux-arm-kernel, linux-samsung-soc, Linus Walleij,
	Krzysztof Kozlowski, Ard Biesheuvel
  Cc: Olof Johansson, Tomasz Figa, Marek Szyprowski, Heiko Stuebner,
	Sylwester Nawrocki

On Thu, 7 Apr 2022 09:23:19 +0200, Krzysztof Kozlowski wrote:
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
> 
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
> 
> [...]

Applied, thanks!

[1/1] ARM: s3c: mark as deprecated and schedule removal
      commit: 436ce66003d5020ca02cd096761d3214e9a91d82

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

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

* Re: [PATCH v2] ARM: s3c: mark as deprecated and schedule removal
@ 2022-04-19 10:44   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-19 10:44 UTC (permalink / raw)
  To: Russell King, Alim Akhtar, Arnd Bergmann, linux-kernel,
	linux-arm-kernel, linux-samsung-soc, Linus Walleij,
	Krzysztof Kozlowski, Ard Biesheuvel
  Cc: Olof Johansson, Tomasz Figa, Marek Szyprowski, Heiko Stuebner,
	Sylwester Nawrocki

On Thu, 7 Apr 2022 09:23:19 +0200, Krzysztof Kozlowski wrote:
> The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416
> was introduced in 2008 and S3C6410 in 2009/2010.  They are not widely
> available anymore - out-of-stock on FriendlyArm (one of manufacturers of
> boards) and only few specialist stores still offer them for quite a high
> price.
> 
> The community around these platforms was not very active, so I suspect
> no one really uses them anymore. Maintenance takes precious time so
> there is little sense in keeping them alive if there are no real users.
> 
> [...]

Applied, thanks!

[1/1] ARM: s3c: mark as deprecated and schedule removal
      commit: 436ce66003d5020ca02cd096761d3214e9a91d82

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2022-04-19 10:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-07  7:23 [PATCH v2] ARM: s3c: mark as deprecated and schedule removal Krzysztof Kozlowski
2022-04-07  7:23 ` Krzysztof Kozlowski
2022-04-07  7:40 ` Arnd Bergmann
2022-04-07  7:40   ` Arnd Bergmann
2022-04-07  8:02   ` Krzysztof Kozlowski
2022-04-07  8:02     ` Krzysztof Kozlowski
2022-04-07  8:43 ` Krzysztof Kozlowski
2022-04-07  8:43   ` Krzysztof Kozlowski
2022-04-19 10:44 ` Krzysztof Kozlowski
2022-04-19 10:44   ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.