public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] spi: switch to managed controller allocation (part 1/3)
@ 2026-04-29  9:13 Johan Hovold
  2026-04-29  9:13 ` [PATCH 01/19] spi: at91-usart: switch to managed controller allocation Johan Hovold
                   ` (19 more replies)
  0 siblings, 20 replies; 26+ messages in thread
From: Johan Hovold @ 2026-04-29  9:13 UTC (permalink / raw)
  To: Mark Brown
  Cc: Radu Pirea, Ryan Wanner, William Zhang, Kursad Oney, Jonas Gorski,
	linux-spi, linux-kernel, Johan Hovold

In preparation for fixing the SPI controller API so that it no longer
drops a reference when deregistering (non-managed) controllers (cf.
[1]), this series converts drivers using non-managed registration to use
managed allocation.

This will be followed by a second set of 20 patches, and then a third
set of 12 patches for drivers using managed registration.

That leaves us with 18 drivers using non-managed allocation, which is
few enough to be able to fix the API in tree-wide change.

Johan


[1] https://lore.kernel.org/lkml/20260325145319.1132072-1-johan@kernel.org/


Johan Hovold (19):
  spi: at91-usart: switch to managed controller allocation
  spi: atmel: switch to managed controller allocation
  spi: bcm63xx: switch to managed controller allocation
  spi: bcm63xx-hsspi: switch to managed controller allocation
  spi: cadence: switch to managed controller allocation
  spi: octeon: switch to managed controller allocation
  spi: cavium-thunderx: switch to managed controller allocation
  spi: coldfire-qspi: switch to managed controller allocation
  spi: dln2: switch to managed controller allocation
  spi: ep93xx: switch to managed controller allocation
  spi: fsl: switch to managed controller allocation
  spi: fsl-espi: switch to managed controller allocation
  spi: img-spfi: switch to managed controller allocation
  spi: lantiq-ssc: switch to managed controller allocation
  spi: meson-spicc: switch to managed controller allocation
  spi: mxs: switch to managed controller allocation
  spi: npcm-pspi: switch to managed controller allocation
  spi: omap2-mcspi: switch to managed controller allocation
  spi: orion: switch to managed controller allocation

 drivers/spi/spi-at91-usart.c      | 24 ++++++-----------
 drivers/spi/spi-atmel.c           | 34 +++++++++---------------
 drivers/spi/spi-bcm63xx-hsspi.c   | 17 ++++--------
 drivers/spi/spi-bcm63xx.c         | 23 +++++------------
 drivers/spi/spi-cadence.c         | 28 +++++++-------------
 drivers/spi/spi-cavium-octeon.c   | 17 +++---------
 drivers/spi/spi-cavium-thunderx.c | 32 ++++++-----------------
 drivers/spi/spi-coldfire-qspi.c   | 28 ++++++--------------
 drivers/spi/spi-dln2.c            | 26 +++++++------------
 drivers/spi/spi-ep93xx.c          | 22 +++++-----------
 drivers/spi/spi-fsl-espi.c        | 20 +++++---------
 drivers/spi/spi-fsl-spi.c         | 14 ++--------
 drivers/spi/spi-img-spfi.c        | 40 +++++++++++-----------------
 drivers/spi/spi-lantiq-ssc.c      | 28 ++++++--------------
 drivers/spi/spi-meson-spicc.c     | 43 ++++++++++---------------------
 drivers/spi/spi-mxs.c             | 14 +++-------
 drivers/spi/spi-npcm-pspi.c       | 19 ++++----------
 drivers/spi/spi-omap2-mcspi.c     | 25 +++++++-----------
 drivers/spi/spi-orion.c           | 26 ++++++-------------
 19 files changed, 147 insertions(+), 333 deletions(-)

-- 
2.53.0


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2026-05-05  1:09 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29  9:13 [PATCH 00/19] spi: switch to managed controller allocation (part 1/3) Johan Hovold
2026-04-29  9:13 ` [PATCH 01/19] spi: at91-usart: switch to managed controller allocation Johan Hovold
2026-04-29  9:13 ` [PATCH 02/19] spi: atmel: " Johan Hovold
2026-04-29  9:13 ` [PATCH 03/19] spi: bcm63xx: " Johan Hovold
2026-04-29  9:13 ` [PATCH 04/19] spi: bcm63xx-hsspi: " Johan Hovold
2026-04-29 18:13   ` William Zhang
2026-04-29  9:13 ` [PATCH 05/19] spi: cadence: " Johan Hovold
2026-04-29  9:13 ` [PATCH 06/19] spi: octeon: " Johan Hovold
2026-04-29  9:13 ` [PATCH 07/19] spi: cavium-thunderx: " Johan Hovold
2026-04-29  9:13 ` [PATCH 08/19] spi: coldfire-qspi: " Johan Hovold
2026-04-29  9:13 ` [PATCH 09/19] spi: dln2: " Johan Hovold
2026-04-29  9:13 ` [PATCH 10/19] spi: ep93xx: " Johan Hovold
2026-04-29  9:13 ` [PATCH 11/19] spi: fsl: " Johan Hovold
2026-04-29  9:13 ` [PATCH 12/19] spi: fsl-espi: " Johan Hovold
2026-04-29  9:13 ` [PATCH 13/19] spi: img-spfi: " Johan Hovold
2026-04-29  9:13 ` [PATCH 14/19] spi: lantiq-ssc: " Johan Hovold
2026-04-29  9:13 ` [PATCH 15/19] spi: meson-spicc: " Johan Hovold
2026-04-29  9:13 ` [PATCH 16/19] spi: mxs: " Johan Hovold
2026-04-29  9:13 ` [PATCH 17/19] spi: npcm-pspi: " Johan Hovold
2026-04-29  9:13 ` [PATCH 18/19] spi: omap2-mcspi: " Johan Hovold
2026-04-30  0:30   ` Mark Brown
2026-04-30  7:12     ` Johan Hovold
2026-04-30 10:05       ` Mark Brown
2026-04-30 10:12         ` Johan Hovold
2026-04-29  9:13 ` [PATCH 19/19] spi: orion: " Johan Hovold
2026-05-04 13:09 ` (subset) [PATCH 00/19] spi: switch to managed controller allocation (part 1/3) Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox