[GIT PULL 3/4] ARM: SoC code changes for 6.8

From: Arnd Bergmann
Date: Thu Jan 11 2024 - 11:22:15 EST


The following changes since commit 2cc14f52aeb78ce3f29677c2de1f06c0e91471ab:

Linux 6.7-rc3 (2023-11-26 19:59:33 -0800)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/soc-arm-6.8

for you to fetch changes up to 40974ee421b4d1fc74ac733d86899ce1b83d8f65:

ARM: davinci: always select CONFIG_CPU_ARM926T (2024-01-09 08:25:47 +0100)

----------------------------------------------------------------
ARM: SoC code changes for 6.8

There are two notable changes this time:

- Andrew Davis adds a arch/arm/Kconfig.platforms file to simplify
the platforms that have no code except their Kconfig file

- Linux Walleij removes support for the ARM11MPCore CPU in
the versatile/realview platform. Since this is the last
remaining one after removing ox820, some core code can go
as well.

The other changes are minor cleanups and bugfixes.

----------------------------------------------------------------
Andrew Davis (8):
ARM: Kconfig: move platform selection into its own Kconfig file
ARM: mach-asm9260: Move ASM9260 support into Kconfig.platforms
ARM: mach-rda: Move RDA Micro support into Kconfig.platforms
ARM: mach-uniphier: Move Socionext UniPhier support into Kconfig.platforms
ARM: mach-moxart: Move MOXA ART support into Kconfig.platforms
ARM: mach-airoha: Rework support and directory structure
ARM: mach-sunplus: Rework support and directory structure
ARM: mach-nspire: Rework support and directory structure

Arnd Bergmann (5):
Merge tag 'omap-for-v6.8/maintainers-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into soc/arm
Merge tag 'at91-soc-6.8' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux into soc/arm
Merge tag 'imx-soc-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into soc/arm
Merge tag 'mvebu-arm-6.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu into soc/arm
ARM: davinci: always select CONFIG_CPU_ARM926T

Duje Mihanović (1):
soc: pxa: ssp: fix casts

Fabio Estevam (1):
ARM: mxs: Do not search for "fsl,clkctrl"

Krzysztof Kozlowski (1):
ARM: MAINTAINERS: drop empty entries for removed boards

Linus Walleij (2):
ARM: Delete ARM11MPCore (ARM11 ARMv6K SMP) support
ARM: Delete ARM11MPCore perf leftovers

Lukas Bulwahn (2):
MAINTAINERS: add omap bus drivers to OMAP2+ SUPPORT
MAINTAINERS: add Marvell MBus driver to Marvell EBU SoCs support

Martin Kaiser (1):
ARM: debug: fix DEBUG_UNCOMPRESS help for !MULTIPLATFORM

Rob Herring (1):
ARM: imx: Use device_get_match_data()

Thomas Perrot (1):
ARM: at91: pm: set soc_pm.data.mode in at91_pm_secure_init()

MAINTAINERS | 24 +---
arch/arm/Kconfig | 90 +-------------
arch/arm/Kconfig.debug | 11 +-
arch/arm/Kconfig.platforms | 183 +++++++++++++++++++++++++++++
arch/arm/Makefile | 4 -
arch/arm/kernel/perf_event_v6.c | 128 --------------------
arch/arm/mach-airoha/Makefile | 2 -
arch/arm/mach-airoha/airoha.c | 16 ---
arch/arm/mach-asm9260/Kconfig | 9 --
arch/arm/mach-at91/pm.c | 3 +
arch/arm/mach-davinci/Kconfig | 1 +
arch/arm/mach-imx/mmdc.c | 9 +-
arch/arm/mach-moxart/Kconfig | 28 -----
arch/arm/mach-moxart/Makefile | 4 -
arch/arm/mach-moxart/moxart.c | 6 -
arch/arm/mach-mxs/mach-mxs.c | 4 +-
arch/arm/mach-nspire/Kconfig | 15 ---
arch/arm/mach-nspire/Makefile | 2 -
arch/arm/mach-nspire/nspire.c | 18 ---
arch/arm/mach-rda/Kconfig | 8 --
arch/arm/mach-sunplus/Kconfig | 27 -----
arch/arm/mach-sunplus/Makefile | 8 --
arch/arm/mach-sunplus/sp7021.c | 16 ---
arch/arm/mach-uniphier/Kconfig | 15 ---
arch/arm/mach-versatile/Kconfig | 17 ---
arch/arm/mach-versatile/platsmp-realview.c | 6 +-
arch/arm/mach-versatile/realview.c | 1 -
arch/arm/mm/Kconfig | 18 ---
arch/arm/mm/cache-v6.S | 31 -----
drivers/soc/pxa/ssp.c | 4 +-
30 files changed, 206 insertions(+), 502 deletions(-)
create mode 100644 arch/arm/Kconfig.platforms
delete mode 100644 arch/arm/mach-airoha/Makefile
delete mode 100644 arch/arm/mach-airoha/airoha.c
delete mode 100644 arch/arm/mach-asm9260/Kconfig
delete mode 100644 arch/arm/mach-moxart/Kconfig
delete mode 100644 arch/arm/mach-moxart/Makefile
delete mode 100644 arch/arm/mach-moxart/moxart.c
delete mode 100644 arch/arm/mach-nspire/Kconfig
delete mode 100644 arch/arm/mach-nspire/Makefile
delete mode 100644 arch/arm/mach-nspire/nspire.c
delete mode 100644 arch/arm/mach-rda/Kconfig
delete mode 100644 arch/arm/mach-sunplus/Kconfig
delete mode 100644 arch/arm/mach-sunplus/Makefile
delete mode 100644 arch/arm/mach-sunplus/sp7021.c
delete mode 100644 arch/arm/mach-uniphier/Kconfig