* [PATCH 1/2] spi: s3c64xx: Drop S3C2443
@ 2025-08-30 13:26 Krzysztof Kozlowski
2025-08-30 13:26 ` [PATCH 2/2] spi: dt-bindings: samsung: " Krzysztof Kozlowski
0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2025-08-30 13:26 UTC (permalink / raw)
To: Andi Shyti, Tudor Ambarus, Mark Brown, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Alim Akhtar, linux-spi,
linux-samsung-soc, devicetree, linux-kernel, linux-arm-kernel
Cc: Krzysztof Kozlowski
Samsung S3C24xx family of SoCs was removed the Linux kernel in the
commit 61b7f8920b17 ("ARM: s3c: remove all s3c24xx support"), in January
2023. There are no in-kernel users of remaining S3C24xx compatibles or
platform data ID.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
drivers/spi/spi-s3c64xx.c | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index 3a00f9e480c5..aab36c779c06 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -1506,16 +1506,6 @@ static const struct dev_pm_ops s3c64xx_spi_pm = {
s3c64xx_spi_runtime_resume, NULL)
};
-static const struct s3c64xx_spi_port_config s3c2443_spi_port_config = {
- /* fifo_lvl_mask is deprecated. Use {rx, tx}_fifomask instead. */
- .fifo_lvl_mask = { 0x7f },
- /* rx_lvl_offset is deprecated. Use {rx, tx}_fifomask instead. */
- .rx_lvl_offset = 13,
- .tx_st_done = 21,
- .clk_div = 2,
- .high_speed = true,
-};
-
static const struct s3c64xx_spi_port_config s3c6410_spi_port_config = {
/* fifo_lvl_mask is deprecated. Use {rx, tx}_fifomask instead. */
.fifo_lvl_mask = { 0x7f, 0x7F },
@@ -1627,9 +1617,6 @@ static const struct s3c64xx_spi_port_config gs101_spi_port_config = {
static const struct platform_device_id s3c64xx_spi_driver_ids[] = {
{
- .name = "s3c2443-spi",
- .driver_data = (kernel_ulong_t)&s3c2443_spi_port_config,
- }, {
.name = "s3c6410-spi",
.driver_data = (kernel_ulong_t)&s3c6410_spi_port_config,
},
@@ -1641,9 +1628,6 @@ static const struct of_device_id s3c64xx_spi_dt_match[] = {
{ .compatible = "google,gs101-spi",
.data = &gs101_spi_port_config,
},
- { .compatible = "samsung,s3c2443-spi",
- .data = &s3c2443_spi_port_config,
- },
{ .compatible = "samsung,s3c6410-spi",
.data = &s3c6410_spi_port_config,
},
--
2.48.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] spi: dt-bindings: samsung: Drop S3C2443
2025-08-30 13:26 [PATCH 1/2] spi: s3c64xx: Drop S3C2443 Krzysztof Kozlowski
@ 2025-08-30 13:26 ` Krzysztof Kozlowski
2025-09-01 20:16 ` Rob Herring (Arm)
0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2025-08-30 13:26 UTC (permalink / raw)
To: Andi Shyti, Tudor Ambarus, Mark Brown, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Alim Akhtar, linux-spi,
linux-samsung-soc, devicetree, linux-kernel, linux-arm-kernel
Cc: Krzysztof Kozlowski
Samsung S3C24xx family of SoCs was removed the Linux kernel in the
commit 61b7f8920b17 ("ARM: s3c: remove all s3c24xx support"), in January
2023. There are no in-kernel users of remaining S3C24xx compatibles.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
Documentation/devicetree/bindings/spi/samsung,spi.yaml | 1 -
1 file changed, 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/spi/samsung,spi.yaml b/Documentation/devicetree/bindings/spi/samsung,spi.yaml
index fe298d47b1a9..1ce8b2770a4a 100644
--- a/Documentation/devicetree/bindings/spi/samsung,spi.yaml
+++ b/Documentation/devicetree/bindings/spi/samsung,spi.yaml
@@ -18,7 +18,6 @@ properties:
oneOf:
- enum:
- google,gs101-spi
- - samsung,s3c2443-spi # for S3C2443, S3C2416 and S3C2450
- samsung,s3c6410-spi
- samsung,s5pv210-spi # for S5PV210 and S5PC110
- samsung,exynos4210-spi
--
2.48.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] spi: dt-bindings: samsung: Drop S3C2443
2025-08-30 13:26 ` [PATCH 2/2] spi: dt-bindings: samsung: " Krzysztof Kozlowski
@ 2025-09-01 20:16 ` Rob Herring (Arm)
0 siblings, 0 replies; 3+ messages in thread
From: Rob Herring (Arm) @ 2025-09-01 20:16 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Andi Shyti, linux-arm-kernel, Krzysztof Kozlowski, linux-spi,
Conor Dooley, linux-kernel, linux-samsung-soc, devicetree,
Tudor Ambarus, Alim Akhtar, Mark Brown
On Sat, 30 Aug 2025 15:26:07 +0200, Krzysztof Kozlowski wrote:
> Samsung S3C24xx family of SoCs was removed the Linux kernel in the
> commit 61b7f8920b17 ("ARM: s3c: remove all s3c24xx support"), in January
> 2023. There are no in-kernel users of remaining S3C24xx compatibles.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> Documentation/devicetree/bindings/spi/samsung,spi.yaml | 1 -
> 1 file changed, 1 deletion(-)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-09-01 20:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-30 13:26 [PATCH 1/2] spi: s3c64xx: Drop S3C2443 Krzysztof Kozlowski
2025-08-30 13:26 ` [PATCH 2/2] spi: dt-bindings: samsung: " Krzysztof Kozlowski
2025-09-01 20:16 ` Rob Herring (Arm)
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).