mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] SOC FSL for 6.20
@ 2026-01-31  7:38 Christophe Leroy (CS GROUP)
  0 siblings, 0 replies; 5+ messages in thread
From: Christophe Leroy (CS GROUP) @ 2026-01-31  7:38 UTC (permalink / raw)
  To: soc, Arnd Bergmann; +Cc: linux-kernel, Ioana Ciornei

Hi Arnd,

Please pull the following Freescale Soc Drivers changes for 6.20

Documentation is acked by Conor Dooley and changes to fsl-mc bus are 
reviewed or acked by Ioana Ciornei.

Thanks
Christophe

The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8:

   Linux 6.19-rc1 (2025-12-14 16:05:07 +1200)

are available in the Git repository at:

   https://git.kernel.org/pub/scm/linux/kernel/git/chleroy/linux 
tags/soc_fsl-6.20-1

for you to fetch changes up to 52f527d0916bcdd7621a0c9e7e599b133294d495:

   bus: fsl-mc: fix an error handling in fsl_mc_device_add() (2026-01-28 
13:35:48 +0100)

----------------------------------------------------------------
FSL SOC Changes for 6.20

Freescale Management Complex:
- Convert fsl-mc bus to bus callbacks
- Fix a use-after-free
- Drop redundant error messages
- Fix ressources release on some error path

Freescale QUICC Engine:
- Add an interrupt controller for IO Ports
- Use scoped for-each OF child loop

----------------------------------------------------------------
Chen Ni (1):
       soc: fsl: qe: qe_ports_ic: Consolidate chained IRQ handler 
install/remove

Christophe Leroy (CS GROUP) (2):
       soc: fsl: qe: Add an interrupt controller for QUICC Engine Ports
       dt-bindings: soc: fsl: qe: Add an interrupt controller for QUICC 
Engine Ports

Gui-Dong Han (1):
       bus: fsl-mc: fix use-after-free in driver_override_show()

Haoxiang Li (1):
       bus: fsl-mc: fix an error handling in fsl_mc_device_add()

Krzysztof Kozlowski (1):
       soc: fsl: qe: Simplify with scoped for each OF child loop

Uwe Kleine-König (2):
       bus: fsl-mc: Drop error message in probe function
       bus: fsl-mc: Convert to bus callbacks

  .../interrupt-controller/fsl,qe-ports-ic.yaml      |  51 ++++++++
  drivers/bus/fsl-mc/fsl-mc-bus.c                    |  89 ++++++-------
  drivers/soc/fsl/qe/Makefile                        |   2 +-
  drivers/soc/fsl/qe/qe_ports_ic.c                   | 141 
+++++++++++++++++++++
  drivers/soc/fsl/qe/qmc.c                           |  13 +-
  5 files changed, 233 insertions(+), 63 deletions(-)
  create mode 100644 
Documentation/devicetree/bindings/interrupt-controller/fsl,qe-ports-ic.yaml
  create mode 100644 drivers/soc/fsl/qe/qe_ports_ic.c

^ permalink raw reply	[flat|nested] 5+ messages in thread
* [GIT PULL] SOC FSL for 6.20
@ 2026-04-14 14:08 Christophe Leroy (CS GROUP)
  2026-04-14 14:55 ` Arnd Bergmann
  0 siblings, 1 reply; 5+ messages in thread
From: Christophe Leroy (CS GROUP) @ 2026-04-14 14:08 UTC (permalink / raw)
  To: soc, Arnd Bergmann; +Cc: linux-kernel, Ioana Ciornei

Hi Arnd,

Please pull the following Freescale Soc Drivers changes for 7.1

Changes to fsl-mc bus are reviewed or acked by Ioana Ciornei.

Thanks
Christophe

The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:

   Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)

are available in the Git repository at:

   https://git.kernel.org/pub/scm/linux/kernel/git/chleroy/linux 
tags/soc_fsl-7.1-1

for you to fetch changes up to 1bc2b368e0338bf1a977502d6c4716c888d1fbdb:

   bus: fsl-mc: wait for the MC firmware to complete its boot 
(2026-04-14 08:01:09 +0200)

----------------------------------------------------------------
FSL SOC Changes for 7.1

Freescale QUICC Engine:
- Add missing cleanup on device removal and switch to 
irq_domain_create_linear()
in interrupt controller for IO Ports
- Panic on ioremap() failure in qe_reset()

Freescale Management Complex:
- Move fsl-mc over to device MSI infrastructure
- Wait for the MC firmware to complete its boot

Freescale Hypervisor:
- Fix header kernel-doc warnings

----------------------------------------------------------------
Christophe Leroy (CS GROUP) (1):
       soc: fsl: qe_ports_ic: switch to irq_domain_create_linear()

Felix Gu (1):
       soc: fsl: qe_ports_ic: Add missing cleanup on device removal

Ioana Ciornei (1):
       bus: fsl-mc: wait for the MC firmware to complete its boot

Marc Zyngier (6):
       fsl-mc: Remove MSI domain propagation to sub-devices
       fsl-mc: Add minimal infrastructure to use platform MSI
       irqchip/gic-v3-its: Add fsl_mc device plumbing to the msi-parent 
handling
       fsl-mc: Switch over to per-device platform MSI
       fsl-mc: Remove legacy MSI implementation
       platform-msi: Remove stale comment

Randy Dunlap (1):
       virt: fsl_hypervisor: fix header kernel-doc warnings

Wang Jun (1):
       soc: fsl: qe: panic on ioremap() failure in qe_reset()

  drivers/base/platform-msi.c                 |   4 -
  drivers/bus/fsl-mc/dprc-driver.c            |  14 +--
  drivers/bus/fsl-mc/fsl-mc-bus.c             |  50 ++++++++-
  drivers/bus/fsl-mc/fsl-mc-msi.c             | 166 
+++++----------------------
  drivers/bus/fsl-mc/fsl-mc-private.h         |   2 +-
  drivers/irqchip/Kconfig                     |   6 -
  drivers/irqchip/Makefile                    |   1 -
  drivers/irqchip/irq-gic-its-msi-parent.c    |   7 +-
  drivers/irqchip/irq-gic-v3-its-fsl-mc-msi.c | 168 
----------------------------
  drivers/soc/fsl/qe/qe.c                     |   3 +
  drivers/soc/fsl/qe/qe_ports_ic.c            |  23 ++--
  include/linux/fsl/mc.h                      |   6 +-
  include/linux/irqdomain_defs.h              |   1 -
  include/uapi/linux/fsl_hypervisor.h         |   4 +-
  14 files changed, 106 insertions(+), 349 deletions(-)
  delete mode 100644 drivers/irqchip/irq-gic-v3-its-fsl-mc-msi.c

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

end of thread, other threads:[~2026-04-14 15:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-31  7:38 [GIT PULL] SOC FSL for 6.20 Christophe Leroy (CS GROUP)
2026-04-14 14:08 Christophe Leroy (CS GROUP)
2026-04-14 14:55 ` Arnd Bergmann
2026-04-14 15:02   ` Christophe Leroy (CS GROUP)
2026-04-14 15:13     ` Christophe Leroy (CS GROUP)

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

all inboxes | Powered by JetHome®