The following changes since commit f2661062f16b2de5d7b6a5c42a9a5c96326b8454: Linux 6.10-rc5 (2024-06-23 17:08:54 -0400) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git tags/spi-fix-v6.10-rc7 for you to fetch changes up to c8bd922d924bb4ab6c6c488310157d1a27996f31: spi: mux: set ctlr->bits_per_word_mask (2024-07-09 17:42:33 +0100) ---------------------------------------------------------------- spi: Fixes for v6.10 This pull request fixes two regressions that have been bubbling along for a large part of this release. One is a revert of the multi mode support for the OMAP SPI controller, this introduced regressions on a number of systems and while there has been progress on fixing those we've not got something that works for everyone yet so let's just drop the change for now. The other is a series of fixes from David Lechner for his recent message optimisation work, this interacted badly with spi-mux which is altogether too clever with recursive use of the bus and creates situations that hadn't been considered. There are also a couple of small driver specific fixes, including one more patch from David for sleep duration calculations in the AXI driver. ---------------------------------------------------------------- Bastien Curutchet (1): spi: davinci: Unset POWERDOWN bit when releasing resources David Lechner (4): spi: axi-spi-engine: fix sleep calculation spi: don't unoptimize message in spi_async() spi: add defer_optimize_message controller flag spi: mux: set ctlr->bits_per_word_mask Mark Brown (1): spi: omap2-mcspi: Revert multi mode support Uwe Kleine-König (1): spi: imx: Don't expect DMA for i.MX{25,35,50,51,53} cspi devices drivers/spi/spi-axi-spi-engine.c | 26 ++++++++++++++++++-------- drivers/spi/spi-davinci.c | 6 ++++++ drivers/spi/spi-imx.c | 2 +- drivers/spi/spi-mux.c | 2 ++ drivers/spi/spi-omap2-mcspi.c | 15 +-------------- drivers/spi/spi.c | 20 +++++++++++++++++--- include/linux/spi/spi.h | 4 ++++ 7 files changed, 49 insertions(+), 26 deletions(-)