Linux SOC development
 help / color / mirror / Atom feed
From: "Arnd Bergmann" <arnd@arndb.de>
To: "Linus Torvalds" <torvalds@linux-foundation.org>
Cc: soc@kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL 3/4] ARM: SoC code changes for 6.8
Date: Thu, 11 Jan 2024 17:19:50 +0100	[thread overview]
Message-ID: <ab382a86-641b-477d-b6da-7398c600395b@app.fastmail.com> (raw)
In-Reply-To: <1c120ba6-3c94-4d94-8497-afb6c5063d3c@app.fastmail.com>

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

  parent reply	other threads:[~2024-01-11 16:20 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-11 16:09 [GIT PULL 0/4] ARM: SoC updates for 6.8 Arnd Bergmann
2024-01-11 16:16 ` [GIT PULL 1/4] SoC: DT changes " Arnd Bergmann
2024-01-11 20:20   ` pr-tracker-bot
2024-01-11 16:18 ` [GIT PULL 2/4] SoC: driver updates " Arnd Bergmann
2024-01-11 20:20   ` pr-tracker-bot
2024-01-11 16:19 ` Arnd Bergmann [this message]
2024-01-11 20:20   ` [GIT PULL 3/4] ARM: SoC code changes " pr-tracker-bot
2024-01-11 16:20 ` [GIT PULL 4/4] ARM: SoC defconfig updates " Arnd Bergmann
2024-01-11 20:20   ` pr-tracker-bot

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=ab382a86-641b-477d-b6da-7398c600395b@app.fastmail.com \
    --to=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=soc@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox