[GIT PULL] memory: drivers for v6.16

From: Krzysztof Kozlowski
Date: Thu May 08 2025 - 05:36:10 EST


Hi Arnd,

Rest of memory controller drivers. Note: this pull *does not* contain previous
Renesas memctrl drivers, so please pull *both*.

Best regards,
Krzysztof


The following changes since commit 0af2f6be1b4281385b618cb86ad946eded089ac8:

Linux 6.15-rc1 (2025-04-06 13:11:33 -0700)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git tags/memory-controller-drv-6.16

for you to fetch changes up to 02eaee70babd860d76dc23f9165f4496d0ffe77f:

MAINTAINERS: add entry for STM32 OCTO MEMORY MANAGER driver (2025-05-07 11:27:03 +0200)

----------------------------------------------------------------
Memory controller drivers for v6.16

1. Mediatek: Add support for MT6893 MTK SMI.
2. STM32: Add new driver for STM32 Octo Memory Manager (OMM), which
manages muxing between two OSPI busses.
3. Several cleanups and minor improvements (OMAP GPMC, Kconfig entries,
BT1 L2).

----------------------------------------------------------------
AngeloGioacchino Del Regno (2):
dt-bindings: memory: mtk-smi: Add support for MT6893
memory: mtk-smi: Add support for Dimensity 1200 MT6893 SMI

Bartosz Golaszewski (2):
memory: omap-gpmc: use the dedicated define for GPIO direction
memory: omap-gpmc: remove GPIO set() and direction_output() callbacks

Krzysztof Kozlowski (3):
memory: Simplify 'default' choice in Kconfig
memory: tegra: Do not enable by default during compile testing
bus: firewall: Fix missing static inline annotations for stubs

Patrice Chotard (3):
dt-bindings: memory-controllers: Add STM32 Octo Memory Manager controller
memory: Add STM32 Octo Memory Manager driver
MAINTAINERS: add entry for STM32 OCTO MEMORY MANAGER driver

Salah Triki (1):
memory: bt1-l2-ctl: replace scnprintf() with sysfs_emit()

.../memory-controllers/mediatek,smi-common.yaml | 1 +
.../memory-controllers/mediatek,smi-larb.yaml | 1 +
.../memory-controllers/st,stm32mp25-omm.yaml | 226 ++++++++++
MAINTAINERS | 6 +
drivers/memory/Kconfig | 23 +-
drivers/memory/Makefile | 1 +
drivers/memory/bt1-l2-ctl.c | 2 +-
drivers/memory/mtk-smi.c | 52 +++
drivers/memory/omap-gpmc.c | 15 +-
drivers/memory/stm32_omm.c | 476 +++++++++++++++++++++
drivers/memory/tegra/Kconfig | 8 +-
include/linux/bus/stm32_firewall_device.h | 15 +-
12 files changed, 798 insertions(+), 28 deletions(-)
create mode 100644 Documentation/devicetree/bindings/memory-controllers/st,stm32mp25-omm.yaml
create mode 100644 drivers/memory/stm32_omm.c