Hi Linus, Here's the pull-request with the MMC and MEMSTICK updates for v6.7. Details about the highlights are as usual found in the signed tag. Please pull this in! Kind regards Ulf Hansson The following changes since commit 84ee19bffc9306128cd0f1c650e89767079efeff: mmc: core: Capture correct oemid-bits for eMMC cards (2023-09-27 12:17:04 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git tags/mmc-v6.7 for you to fetch changes up to 5428a40a308f220dbbffda66cb01b212f88e9a06: mmc: Merge branch fixes into next (2023-10-27 12:00:35 +0200) ---------------------------------------------------------------- MMC core: - Enable host caps to be modified via debugfs to test speed-modes - Improve random I/O writes for 4k buffers for hsq enabled hosts MMC host: - atmel-mci/sdhci-of-at91: Aubin Constans takes over as maintainer - dw_mmc-starfive: Re-work tuning support - meson-gx: Fix bogus IRQ when using CMD_CFG_ERROR - mmci: Use peripheral flow control for the STM32 variant - renesas,sdhi: Add support for the RZ/G3S variant - sdhci-esdhc-imx: Optimize the manual tuning logic - sdhci-msm: Add support for the SM8650 variant - sdhci-npcm: Add driver to support the Nuvoton NPCM BMC variant - sdhci-pci-gli: Add workaround to allow GL9750 to enter ASPM L1.2 ---------------------------------------------------------------- Andy Shevchenko (3): mmc: sdhci-pci: Switch to use acpi_evaluate_dsm_typed() mmc: sdhci-pltfm: Drop unnecessary error messages in sdhci_pltfm_init() mmc: sdhci-pltfm: Make driver OF independent Aubin Constans (1): MAINTAINERS: mmc: take over as maintainer of MCI & SDHCI MICROCHIP DRIVERS Balamanikandan Gunasundar (1): mmc: atmel-mci: Add description for struct member Ben Wolsieffer (1): mmc: mmci: use peripheral flow control for STM32 Claudiu Beznea (1): dt-bindings: mmc: renesas,sdhi: Document RZ/G3S support Haibo Chen (1): mmc: sdhci-esdhc-imx: optimize the manual tuing logic to get the best timing Julia Lawall (1): mmc: atmel-mci: add missing of_node_put Justin Stitt (1): mmc: vub300: replace deprecated strncpy with strscpy Kees Cook (1): memstick: jmb38x_ms: Annotate struct jmb38x_ms with __counted_by Krzysztof Kozlowski (1): dt-bindings: mmc: sdhci-msm: allow flexible order of optional clocks Lad Prabhakar (1): mmc: host: Kconfig: Make MMC_SDHI_INTERNAL_DMAC config option dependant on ARCH_RENESAS Neil Armstrong (1): dt-bindings: mmc: sdhci-msm: document the SM8650 SDHCI Controller Rob Herring (1): mmc: jz4740: Use device_get_match_data() Rong Chen (1): mmc: meson-gx: Remove setting of CMD_CFG_ERROR Tomer Maimon (2): dt-bindings: mmc: npcm,sdhci: Document NPCM SDHCI controller mmc: sdhci-npcm: Add NPCM SDHCI driver Ulf Hansson (3): mmc: Merge branch fixes into next mmc: Merge branch fixes into next mmc: Merge branch fixes into next Victor Shih (1): mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 Vincent Whitchurch (2): mmc: core: Always reselect card type mmc: debugfs: Allow host caps to be modified Wenchao Chen (2): mmc: core: Allow dynamical updates of the number of requests for hsq mmc: hsq: Improve random I/O write performance for 4k buffers William Qiu (2): dt-bindings: mmc: starfive: Remove properties from required mmc: starfive: Change tuning implementation .../devicetree/bindings/mmc/npcm,sdhci.yaml | 45 +++++++ .../devicetree/bindings/mmc/renesas,sdhi.yaml | 2 + .../devicetree/bindings/mmc/sdhci-msm.yaml | 9 +- .../bindings/mmc/starfive,jh7110-mmc.yaml | 2 - MAINTAINERS | 5 +- drivers/memstick/host/jmb38x_ms.c | 2 +- drivers/mmc/core/debugfs.c | 51 +++++++- drivers/mmc/core/mmc.c | 7 +- drivers/mmc/core/queue.c | 6 +- drivers/mmc/host/Kconfig | 12 +- drivers/mmc/host/Makefile | 1 + drivers/mmc/host/atmel-mci.c | 9 +- drivers/mmc/host/dw_mmc-starfive.c | 137 ++++++--------------- drivers/mmc/host/jz4740_mmc.c | 15 +-- drivers/mmc/host/meson-gx-mmc.c | 1 - drivers/mmc/host/mmc_hsq.c | 22 ++++ drivers/mmc/host/mmc_hsq.h | 11 ++ drivers/mmc/host/mmci.c | 3 +- drivers/mmc/host/mmci.h | 2 + drivers/mmc/host/sdhci-esdhc-imx.c | 52 +++++--- drivers/mmc/host/sdhci-npcm.c | 94 ++++++++++++++ drivers/mmc/host/sdhci-pci-core.c | 5 +- drivers/mmc/host/sdhci-pci-gli.c | 14 +++ drivers/mmc/host/sdhci-pltfm.c | 38 ++---- drivers/mmc/host/vub300.c | 22 ++-- include/linux/mmc/host.h | 1 + 26 files changed, 384 insertions(+), 184 deletions(-) create mode 100644 Documentation/devicetree/bindings/mmc/npcm,sdhci.yaml create mode 100644 drivers/mmc/host/sdhci-npcm.c