All of lore.kernel.org
 help / color / mirror / Atom feed
* i.MX SoC Changes for v7.3
@ 2026-07-29 19:33 Frank.Li
  2026-07-30 10:28 ` Arnd Bergmann
  0 siblings, 1 reply; 3+ messages in thread
From: Frank.Li @ 2026-07-29 19:33 UTC (permalink / raw)
  To: soc, arm
  Cc: Frank.Li, kernel, imx, linux-arm-kernel, dbgh9129, geoffreyhe2,
	griffin, lijun01, pengpeng, u.kleine-koenig

From: Frank.Li@nxp.com

The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482:

  Linux 7.2-rc1 (2026-06-28 12:01:31 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/frank.li/linux.git tags/imx-soc-7.3

for you to fetch changes up to 55c748d596f841a18cf659ce0999f64029a5c88c:

  firmware: imx: scu: manage mailbox channels and global handle (2026-07-24 16:28:37 -0400)

----------------------------------------------------------------
i.MX SoC Changes for v7.3

- Fix OF/device_node reference count leaks in imx_src_init(),
  imx7_src_init(), and the AVIC interrupt controller driver
- Drop obsolete/unused declarations from `arch/arm/mach-imx/common.h`
- firmware: imx: scu: Refactor mailbox channel management to use a
  per-instance handle instead of a global one
- firmware: imx: sm-misc: Add NULL check for `kmalloc` return value in
  syslog_show
- soc: imx9: Add error handling for `devm_kasprintf` return value

----------------------------------------------------------------
Griffin Kroah-Hartman (1):
      soc: imx9: devm_kasprintf error handling

Li Jun (1):
      firmware: imx: sm-misc: Add NULL check for kmalloc in syslog_show

Pengpeng Hou (1):
      firmware: imx: scu: manage mailbox channels and global handle

Uwe Kleine-König (The Capable Hub) (1):
      ARM: imx: Drop obsolete stuff from common.h

Weigang He (2):
      ARM: imx: fix device_node refcount leak in imx_src_init()
      ARM: imx: fix device_node refcount leaks in imx7_src_init()

Yuho Choi (1):
      ARM: imx: avic: Fix OF node reference leaks

 arch/arm/mach-imx/avic.c       |  2 ++
 arch/arm/mach-imx/common.h     |  7 -------
 arch/arm/mach-imx/src.c        |  3 +++
 arch/arm/mach-imx/system.c     |  8 --------
 drivers/firmware/imx/imx-scu.c | 25 ++++++++++++++++++++++++-
 drivers/firmware/imx/sm-misc.c |  3 +++
 drivers/soc/imx/soc-imx9.c     |  9 +++++++++
 7 files changed, 41 insertions(+), 16 deletions(-)

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

* Re: i.MX SoC Changes for v7.3
  2026-07-29 19:33 i.MX SoC Changes for v7.3 Frank.Li
@ 2026-07-30 10:28 ` Arnd Bergmann
  2026-07-30 14:43   ` Frank Li
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2026-07-30 10:28 UTC (permalink / raw)
  To: Frank Li, soc, arm
  Cc: Frank Li, Pengutronix Kernel Team, imx, linux-arm-kernel,
	dbgh9129, geoffreyhe2, griffin, lijun01, Pengpeng Hou,
	Uwe Kleine-König

On Wed, Jul 29, 2026, at 21:33, Frank.Li@oss.nxp.com wrote:
>
> ----------------------------------------------------------------
> i.MX SoC Changes for v7.3
>
> - Fix OF/device_node reference count leaks in imx_src_init(),
>   imx7_src_init(), and the AVIC interrupt controller driver
> - Drop obsolete/unused declarations from `arch/arm/mach-imx/common.h`
> - firmware: imx: scu: Refactor mailbox channel management to use a
>   per-instance handle instead of a global one
> - firmware: imx: sm-misc: Add NULL check for `kmalloc` return value in
>   syslog_show
> - soc: imx9: Add error handling for `devm_kasprintf` return value
>

Hi Frank,

I pulled this and the other two branches you sent yesterday,
the contents all look good. A few minor points:

- The soc@kernel.org and arm@kernel.org addresses both forward
  to soc@lists.linux.dev these days, so just use that one
  directly.

- please split the arch/arm/ code changes from the drivers/*
  branches, since we have separate branches for upstream as well.
  The changes here were fairly small, so I'm not asking you
  to resend them for that here.

- It looks like the automated patchwork bot messages again did
  not work here. The git://git.kernel.org URLs failed to work
  recently and I added a .gitconfig insteadOf rule for it, which
  I think makes the pwbot fail to match the URL and not run
  its maintenance scripts that update patchwork and send the
  email. I've removed the rule again as both now work, but
  you might want to send https:// URLs instead of git://

     Arnd

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

* Re: i.MX SoC Changes for v7.3
  2026-07-30 10:28 ` Arnd Bergmann
@ 2026-07-30 14:43   ` Frank Li
  0 siblings, 0 replies; 3+ messages in thread
From: Frank Li @ 2026-07-30 14:43 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: soc, arm, Frank Li, Pengutronix Kernel Team, imx,
	linux-arm-kernel, dbgh9129, geoffreyhe2, griffin, lijun01,
	Pengpeng Hou, Uwe Kleine-König

On Thu, Jul 30, 2026 at 12:28:53PM +0200, Arnd Bergmann wrote:
> On Wed, Jul 29, 2026, at 21:33, Frank.Li@oss.nxp.com wrote:
> >
> > ----------------------------------------------------------------
> > i.MX SoC Changes for v7.3
> >
> > - Fix OF/device_node reference count leaks in imx_src_init(),
> >   imx7_src_init(), and the AVIC interrupt controller driver
> > - Drop obsolete/unused declarations from `arch/arm/mach-imx/common.h`
> > - firmware: imx: scu: Refactor mailbox channel management to use a
> >   per-instance handle instead of a global one
> > - firmware: imx: sm-misc: Add NULL check for `kmalloc` return value in
> >   syslog_show
> > - soc: imx9: Add error handling for `devm_kasprintf` return value
> >
>
> Hi Frank,
>
> I pulled this and the other two branches you sent yesterday,
> the contents all look good. A few minor points:
>
> - The soc@kernel.org and arm@kernel.org addresses both forward
>   to soc@lists.linux.dev these days, so just use that one
>   directly.
>
> - please split the arch/arm/ code changes from the drivers/*
>   branches, since we have separate branches for upstream as well.
>   The changes here were fairly small, so I'm not asking you
>   to resend them for that here.
>
> - It looks like the automated patchwork bot messages again did
>   not work here. The git://git.kernel.org URLs failed to work
>   recently and I added a .gitconfig insteadOf rule for it, which
>   I think makes the pwbot fail to match the URL and not run
>   its maintenance scripts that update patchwork and send the
>   email. I've removed the rule again as both now work, but
>   you might want to send https:// URLs instead of git://

I will update my script to fix these.

Frank
>
>      Arnd


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

end of thread, other threads:[~2026-07-30 14:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-29 19:33 i.MX SoC Changes for v7.3 Frank.Li
2026-07-30 10:28 ` Arnd Bergmann
2026-07-30 14:43   ` Frank Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.