public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
* [GIT PULL 1/2] Broadcom devicetree changes for 7.2
@ 2026-06-01 20:29 Florian Fainelli
  2026-06-01 20:29 ` [GIT PULL 2/2] Broadcom drivers " Florian Fainelli
  2026-06-01 22:00 ` [GIT PULL 1/2] Broadcom devicetree " Florian Fainelli
  0 siblings, 2 replies; 3+ messages in thread
From: Florian Fainelli @ 2026-06-01 20:29 UTC (permalink / raw)
  To: soc
  Cc: Jinseok Kim, Florian Fainelli, Rosen Penev, linux-arm-kernel,
	arnd, khilman, bcm-kernel-feedback-list

The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731:

  Linux 7.1-rc1 (2026-04-26 14:19:00 -0700)

are available in the Git repository at:

  https://github.com/Broadcom/stblinux.git tags/arm-soc/for-7.2/devicetree

for you to fetch changes up to 245552af869d35ae27cac2121696dd630f15b3bf:

  arm: dts: bcm2711: Fix typo in gpio-line-names (2026-05-29 11:13:56 -0700)

----------------------------------------------------------------
This pull request contains Broadcom ARM-based SoCs Device Tree changes
for 7.2, please pull the following:

- Rosen moves the Meraki MX6X pinctrl configuration to the PWM node
  where it belongs, also fixes the USB3 GPIO for the R6300v2 and
  EA6500v2 routers

- Jinseok fixes a gpio label for the bcm2711 systems (Raspberry Pi 4)

----------------------------------------------------------------
Jinseok Kim (1):
      arm: dts: bcm2711: Fix typo in gpio-line-names

Rosen Penev (3):
      ARM: dts: NSP: Move MX6X pinctrl config to PWM node
      ARM: dts: BCM5301X: R6300v2: fix USB3
      ARM: dts: BCM5301X: EA6500v2: fix USB3

 arch/arm/boot/dts/broadcom/bcm2711-rpi-4-b.dts               | 2 +-
 arch/arm/boot/dts/broadcom/bcm2711-rpi-cm4-io.dts            | 2 +-
 arch/arm/boot/dts/broadcom/bcm4708-linksys-ea6500-v2.dts     | 4 ++++
 arch/arm/boot/dts/broadcom/bcm4708-netgear-r6300-v2.dts      | 4 ++++
 arch/arm/boot/dts/broadcom/bcm958625-meraki-mx6x-common.dtsi | 6 +++---
 5 files changed, 13 insertions(+), 5 deletions(-)


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

* [GIT PULL 2/2] Broadcom drivers changes for 7.2
  2026-06-01 20:29 [GIT PULL 1/2] Broadcom devicetree changes for 7.2 Florian Fainelli
@ 2026-06-01 20:29 ` Florian Fainelli
  2026-06-01 22:00 ` [GIT PULL 1/2] Broadcom devicetree " Florian Fainelli
  1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2026-06-01 20:29 UTC (permalink / raw)
  To: soc
  Cc: Chen-Yu Tsai, Florian Fainelli, Justin Chen, linux-arm-kernel,
	arnd, khilman, bcm-kernel-feedback-list

The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731:

  Linux 7.1-rc1 (2026-04-26 14:19:00 -0700)

are available in the Git repository at:

  https://github.com/Broadcom/stblinux.git tags/arm-soc/for-7.2/drivers

for you to fetch changes up to e8f908b91550dad3274b5ab3bb0e779ca9d80aff:

  firmware: raspberrypi: Change dependency to ARCH_BCM2835 and COMPILE_TEST (2026-05-06 12:35:53 -0700)

----------------------------------------------------------------
This pull request contains Broadcom SoC drivers changes for 7.2, please
pull the following:

- Justin changes the soc_device driver to be more modern and consolidate
  the initialization

- Chen-Yu updates the BCM2835 firmware Kconfig dependency and adds
  COMPILE_TEST

----------------------------------------------------------------
Chen-Yu Tsai (1):
      firmware: raspberrypi: Change dependency to ARCH_BCM2835 and COMPILE_TEST

Justin Chen (1):
      soc: brcmstb: consolidate initcall functions

 drivers/firmware/Kconfig         |  5 ++-
 drivers/soc/bcm/brcmstb/common.c | 88 +++++++++++++++++++++-------------------
 2 files changed, 50 insertions(+), 43 deletions(-)


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

* Re: [GIT PULL 1/2] Broadcom devicetree changes for 7.2
  2026-06-01 20:29 [GIT PULL 1/2] Broadcom devicetree changes for 7.2 Florian Fainelli
  2026-06-01 20:29 ` [GIT PULL 2/2] Broadcom drivers " Florian Fainelli
@ 2026-06-01 22:00 ` Florian Fainelli
  1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2026-06-01 22:00 UTC (permalink / raw)
  To: soc
  Cc: Jinseok Kim, Rosen Penev, linux-arm-kernel, arnd, khilman,
	bcm-kernel-feedback-list

On 6/1/26 13:29, Florian Fainelli wrote:
> The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731:
> 
>    Linux 7.1-rc1 (2026-04-26 14:19:00 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/Broadcom/stblinux.git tags/arm-soc/for-7.2/devicetree
> 
> for you to fetch changes up to 245552af869d35ae27cac2121696dd630f15b3bf:
> 
>    arm: dts: bcm2711: Fix typo in gpio-line-names (2026-05-29 11:13:56 -0700)
> 
> ----------------------------------------------------------------
> This pull request contains Broadcom ARM-based SoCs Device Tree changes
> for 7.2, please pull the following:
> 
> - Rosen moves the Meraki MX6X pinctrl configuration to the PWM node
>    where it belongs, also fixes the USB3 GPIO for the R6300v2 and
>    EA6500v2 routers
> 
> - Jinseok fixes a gpio label for the bcm2711 systems (Raspberry Pi 4)
> 
> ----------------------------------------------------------------

FWIW, I have not been able to migrate our git tree to kernel.org just yet.
-- 
Florian


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

end of thread, other threads:[~2026-06-01 22:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-01 20:29 [GIT PULL 1/2] Broadcom devicetree changes for 7.2 Florian Fainelli
2026-06-01 20:29 ` [GIT PULL 2/2] Broadcom drivers " Florian Fainelli
2026-06-01 22:00 ` [GIT PULL 1/2] Broadcom devicetree " Florian Fainelli

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