All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Arnd Bergmann" <arnd@kernel.org>
Cc: devicetree@vger.kernel.org, robh@kernel.org, conor+dt@kernel.org,
	linux-serial@vger.kernel.org, Frank.Li@kernel.org,
	imx@lists.linux.dev
Subject: Re: [PATCH 03/13] ARM: remove riscpc
Date: Tue, 08 Sep 2026 15:52:12 +0000	[thread overview]
Message-ID: <20260908155212.810C61F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260908152808.3928630-4-arnd@kernel.org>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Incomplete removal of the ARCH_RPC platform and ARCH_ACORN config dependency, leaving orphaned device drivers, Makefile/Kconfig references, and dead code.
--

commit 90a4954ac0a5a6d8d3608046095747cf4673b8dd
Author: Arnd Bergmann <arnd@arndb.de>

ARM: remove riscpc

The Acorn Risc PC platform and its associated drivers, configurations,
and board files are being removed as the required gcc-8 compiler and
-march=armv3 option are no longer supported.

>     The main limitation here is the CPU bus that does not allow 16-bit
>     wide data transfers and hence requires the kernel to be built with the
>     -march=armv3 compiler option that was discontinued in gcc-9.

[Severity: Low]
Since this compiler option is the explicitly stated reason for removal in the
commit message, should we also delete the compiler flag from the tree?

arch/arm/Makefile:
    arch-$(CONFIG_CPU_32v3)         :=-march=armv3m

Additionally, the config symbol for this architecture version is now
dead code because its only selector (ARCH_RPC) was removed:

arch/arm/mm/Kconfig:config CPU_32v3
    config CPU_32v3
        bool

> diff --git a/MAINTAINERS b/MAINTAINERS
> index 81872f61b4317..fdd75b73bf293 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
[ ... ]
> -ARM MFM AND FLOPPY DRIVERS
> -M:	Ian Molton <spyro@f2s.com>
> -S:	Maintained
> -F:	arch/arm/include/asm/floppy.h
> -F:	arch/arm/mach-rpc/floppydma.S
> -

[Severity: Low]
Does this leave the floppy header as dead code in the tree? It is removed
from MAINTAINERS here, but the file itself was left in the tree:

arch/arm/include/asm/floppy.h:
    #ifndef __ASM_ARM_FLOPPY_H
    #define __ASM_ARM_FLOPPY_H

> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index c3d6b8abc815f..5770deca136d3 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
[ ... ]
> @@ -429,8 +415,6 @@ source "arch/arm/mach-qcom/Kconfig"
>  
>  source "arch/arm/mach-realtek/Kconfig"
>  
> -source "arch/arm/mach-rpc/Kconfig"
> -
>  source "arch/arm/mach-rockchip/Kconfig"

[Severity: Low]
Are there dangling references to the removed CONFIG_ARCH_RPC?

The Makefile still references it:

arch/arm/Makefile:
    machine-$(CONFIG_ARCH_RPC)              += rpc
    
The machine type registry still contains it:

arch/arm/tools/mach-types:
    riscpc                  ARCH_RPC                RISCPC                  1
    
And the CPU selection still evaluates it:

arch/arm/mm/Kconfig:config CPU_SA110
    select CPU_32v3 if ARCH_RPC
    select CPU_32v4 if !ARCH_RPC

[ ... ]
> @@ -490,9 +474,6 @@ config ARCH_MPS2
>  	  This platform is scheduled for removal in early 2027
>  
>  # Definitions to make life easier
> -config ARCH_ACORN
> -	bool
> -

[Severity: Low]
Does removing ARCH_ACORN leave orphaned device drivers in the tree?

All Acorn SCSI drivers depend on this removed config, leaving the entire
directory as dead code:

drivers/scsi/arm/Kconfig:config SCSI_ACORN
    depends on ARCH_ACORN && SCSI

While these removed configs make the dependent drivers unselectable and thus
don't break the build or introduce runtime issues, it leaves a significant
amount of dead code. I have verified that this dead code is not removed in
subsequent patches in the series.

> diff --git a/arch/arm/include/asm/ecard.h b/arch/arm/include/asm/ecard.h
> deleted file mode 100644
> index 7cbe001bf9ccc..0000000000000
> --- a/arch/arm/include/asm/ecard.h
> +++ /dev/null
> @@ -1,219 +0,0 @@
[ ... ]
> -#ifndef __ASM_ECARD_H
> -#define __ASM_ECARD_H

[Severity: Low]
Does this leave behind unselectable drivers that still include this deleted
header?

One of the remaining Risc PC drivers left in the tree still tries to include
it:

drivers/ata/pata_icside.c:
    #include <asm/ecard.h>

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260908152808.3928630-1-arnd@kernel.org?part=3

  reply	other threads:[~2026-09-08 15:52 UTC|newest]

Thread overview: 124+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-08 15:27 [PATCH 00/13] ARM: deprecated platform removal Arnd Bergmann
2026-09-08 15:27 ` [PATCH 01/13] ARM: remove sa1100 platform Arnd Bergmann
2026-09-08 16:26   ` Guenter Roeck
2026-09-08 17:23   ` Linus Walleij
2026-09-08 19:39   ` Karl Mehltretter
2026-09-08 20:09     ` Arnd Bergmann
2026-09-08 20:36   ` Nicolas Pitre
2026-09-08 21:26     ` David Laight
2026-09-08 21:32     ` Arnd Bergmann
2026-09-09 12:38   ` Alexandre Belloni
2026-09-08 15:27 ` [PATCH 02/13] ARM: remove footbridge Arnd Bergmann
2026-09-08 15:55   ` sashiko-bot
2026-09-08 17:57     ` Arnd Bergmann
2026-09-08 17:27   ` Linus Walleij
2026-09-09 15:09     ` Ralph Siemsen
2026-09-08 15:27 ` [PATCH 03/13] ARM: remove riscpc Arnd Bergmann
2026-09-08 15:52   ` sashiko-bot [this message]
2026-09-08 16:10     ` Arnd Bergmann
2026-09-09  8:04   ` Thomas Zimmermann
2026-09-09 16:42   ` Bart Van Assche
2026-09-09 20:09     ` Arnd Bergmann
2026-09-11  3:44   ` Ethan Nelson-Moore
2026-09-11  9:07     ` Linus Walleij
2026-09-11 13:25       ` Bart Van Assche
2026-09-11 13:37         ` Linus Walleij
2026-09-13  9:43           ` Arnd Bergmann
2026-09-11 14:38       ` Daniel Palmer
2026-09-11 18:14         ` Linus Walleij
2026-09-12  1:29           ` Daniel Palmer
2026-09-13 18:13             ` Linus Walleij
2026-09-11 18:42     ` Karl Mehltretter
2026-09-12  2:08       ` Ethan Nelson-Moore
2026-09-12  3:59         ` Ethan Nelson-Moore
2026-09-08 15:27 ` [PATCH 04/13] ARM: remove legacy pxa board files Arnd Bergmann
2026-09-08 16:01   ` sashiko-bot
2026-09-08 18:06     ` Arnd Bergmann
2026-09-08 17:30   ` Linus Walleij
2026-09-08 18:32   ` Daniel Mack
2026-09-08 15:27 ` [PATCH 05/13] ARM: orion/dove/mv78xx0: remove all " Arnd Bergmann
2026-09-08 15:27   ` Arnd Bergmann
2026-09-08 15:34   ` Mark Brown
2026-09-08 15:34     ` Mark Brown
2026-09-08 16:11   ` sashiko-bot
2026-09-08 16:11     ` sashiko-bot
2026-09-08 18:21     ` Arnd Bergmann
2026-09-08 18:21       ` Arnd Bergmann
2026-09-09 12:42       ` [PATCH 05.2/13] ARM: orion5x: fold plat-orion/pcie.c and hw_pci into pci.c Arnd Bergmann
2026-09-09 12:42         ` Arnd Bergmann
2026-09-08 16:12   ` [PATCH 05/13] ARM: orion/dove/mv78xx0: remove all board files Ulf Hansson
2026-09-08 16:12     ` Ulf Hansson
2026-09-08 16:18   ` Andrew Lunn
2026-09-08 16:18     ` Andrew Lunn
2026-09-08 16:28   ` Guenter Roeck
2026-09-08 16:28     ` Guenter Roeck
2026-09-08 17:33   ` Linus Walleij
2026-09-08 17:33     ` Linus Walleij
2026-09-08 20:14   ` Niklas Cassel
2026-09-08 20:14     ` Niklas Cassel
2026-09-09 12:54   ` Gregory CLEMENT
2026-09-09 12:54     ` Gregory CLEMENT
2026-09-11 10:22   ` Daniel Lezcano
2026-09-11 10:22     ` Daniel Lezcano
2026-09-08 15:27 ` [PATCH 06/13] ARM: omap2: remove omap24xx support Arnd Bergmann
2026-09-08 15:27   ` Arnd Bergmann
2026-09-08 17:18   ` Aaro Koskinen
2026-09-08 17:18     ` Aaro Koskinen
2026-09-08 17:35   ` Linus Walleij
2026-09-08 17:35     ` Linus Walleij
2026-09-08 19:21   ` Karl Mehltretter
2026-09-08 19:21     ` Karl Mehltretter
2026-09-08 19:42     ` Arnd Bergmann
2026-09-08 19:42       ` Arnd Bergmann
2026-09-09  8:06   ` Thomas Zimmermann
2026-09-09  8:06     ` Thomas Zimmermann
2026-09-08 15:27 ` [PATCH 07/13] ARM: imx: remove i.MX31 SoC support Arnd Bergmann
2026-09-08 16:05   ` sashiko-bot
2026-09-08 18:01     ` Arnd Bergmann
2026-09-09  8:24   ` Vladimir Zapolskiy
2026-09-09  8:26   ` Daniel Baluta
2026-09-10 15:11   ` Frank Li
2026-09-08 15:27 ` [PATCH 08/13] ARM: imx: remove nommu support Arnd Bergmann
2026-09-08 15:43   ` sashiko-bot
2026-09-09 20:17   ` Fabio Estevam
2026-09-09 20:21   ` Fabio Estevam
2026-09-10 13:08     ` Jesse T
2026-09-10 16:08     ` Giulio Benetti
2026-09-10 15:14   ` Frank Li
2026-09-08 15:27 ` [PATCH 09/13] ARM: lpc18xx: remove entire platform Arnd Bergmann
2026-09-08 15:41   ` sashiko-bot
2026-09-08 15:43     ` Arnd Bergmann
2026-09-08 17:36   ` Linus Walleij
2026-09-09  8:28   ` Vladimir Zapolskiy
2026-09-08 15:28 ` [PATCH 10/13] ARM: stm32: remove stm32f4/f7/h7 MCU support Arnd Bergmann
2026-09-08 15:43   ` sashiko-bot
2026-09-08 15:54     ` Arnd Bergmann
2026-09-08 17:36   ` Linus Walleij
2026-09-11 15:46   ` Alexandre TORGUE
2026-09-08 15:28 ` [PATCH 11/13] ARM: versatile: remove mps2 support Arnd Bergmann
2026-09-08 15:41   ` Vladimir Murzin
2026-09-08 15:51   ` sashiko-bot
2026-09-08 17:37   ` Linus Walleij
2026-09-08 19:49   ` Sudeep Holla
2026-09-08 19:51     ` Arnd Bergmann
2026-09-08 19:58       ` Sudeep Holla
2026-09-08 19:54     ` Sudeep Holla
2026-09-08 15:28 ` [PATCH 12/13] ARM: at91: remove samv7 support Arnd Bergmann
2026-09-08 15:55   ` sashiko-bot
2026-09-08 16:40     ` Arnd Bergmann
2026-09-08 17:39   ` Linus Walleij
2026-09-08 19:58   ` Sverdlin, Alexander
2026-09-08 21:09   ` Rob Herring
2026-09-08 21:30     ` Arnd Bergmann
2026-09-10 12:25       ` Nicolas Ferre
2026-09-09 12:41   ` Alexandre Belloni
2026-09-10 12:23   ` Nicolas Ferre
2026-09-08 15:28 ` [PATCH 13/13] ARM: axxia: remove entire platform Arnd Bergmann
2026-09-08 15:55   ` sashiko-bot
2026-09-08 17:40   ` Linus Walleij
2026-09-08 18:23   ` Krzysztof Kozlowski
2026-09-08 20:02   ` Sverdlin, Alexander
2026-09-08 16:53 ` [PATCH 00/13] ARM: deprecated platform removal Randy Dunlap
2026-09-08 16:56   ` Randy Dunlap
2026-09-08 18:33   ` Arnd Bergmann
2026-09-08 18:39     ` Randy Dunlap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260908155212.810C61F00A3A@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=Frank.Li@kernel.org \
    --cc=arnd@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=imx@lists.linux.dev \
    --cc=linux-serial@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.