linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/3] Broadcom devicetree fixes for 5.2
@ 2019-05-20 18:26 Florian Fainelli
  2019-05-20 18:26 ` [GIT PULL 2/3] Broadcom drivers " Florian Fainelli
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Florian Fainelli @ 2019-05-20 18:26 UTC (permalink / raw)
  To: arm
  Cc: Florian Fainelli, arnd, Kevin Hilman, bcm-kernel-feedback-list,
	olof, linux-arm-kernel

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

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

for you to fetch changes up to e8bd76dccd792b371a934336c3e7d8c389755d9f:

  ARM: dts: bcm: Add missing device_type = "memory" property (2019-05-20 09:29:47 -0700)

----------------------------------------------------------------
This pull request contains Broadcom ARM-based SoCs Device Tree fixes for
5.2-rc1, please pull the following:

- Florian fixes the remaining Broadcom DTS files to have a valid
device_type = "memory" property which was missed during the removal of
skeleton.dtsi

----------------------------------------------------------------
Florian Fainelli (1):
      ARM: dts: bcm: Add missing device_type = "memory" property

 arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dts       | 1 +
 arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts       | 1 +
 arch/arm/boot/dts/bcm4708-buffalo-wzr-1750dhp.dts | 1 +
 arch/arm/boot/dts/bcm4708-linksys-ea6300-v1.dts   | 1 +
 arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts   | 1 +
 arch/arm/boot/dts/bcm4708-luxul-xap-1510.dts      | 1 +
 arch/arm/boot/dts/bcm4708-luxul-xwc-1000.dts      | 1 +
 arch/arm/boot/dts/bcm4708-netgear-r6250.dts       | 1 +
 arch/arm/boot/dts/bcm4708-netgear-r6300-v2.dts    | 1 +
 arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts     | 1 +
 arch/arm/boot/dts/bcm4709-asus-rt-ac87u.dts       | 1 +
 arch/arm/boot/dts/bcm4709-buffalo-wxr-1900dhp.dts | 1 +
 arch/arm/boot/dts/bcm4709-linksys-ea9200.dts      | 1 +
 arch/arm/boot/dts/bcm4709-netgear-r7000.dts       | 1 +
 arch/arm/boot/dts/bcm4709-netgear-r8000.dts       | 1 +
 arch/arm/boot/dts/bcm4709-tplink-archer-c9-v1.dts | 1 +
 arch/arm/boot/dts/bcm47094-phicomm-k3.dts         | 1 +
 arch/arm/boot/dts/bcm94708.dts                    | 1 +
 arch/arm/boot/dts/bcm94709.dts                    | 1 +
 arch/arm/boot/dts/bcm963138dvt.dts                | 1 +
 20 files changed, 20 insertions(+)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 2/3] Broadcom drivers fixes for 5.2
  2019-05-20 18:26 [GIT PULL 1/3] Broadcom devicetree fixes for 5.2 Florian Fainelli
@ 2019-05-20 18:26 ` Florian Fainelli
  2019-06-16 20:25   ` Olof Johansson
  2019-05-20 18:26 ` [GIT PULL 3/3] Broadcom maintainers-arm64 " Florian Fainelli
  2019-05-28 22:34 ` [GIT PULL 1/3] Broadcom devicetree " Florian Fainelli
  2 siblings, 1 reply; 8+ messages in thread
From: Florian Fainelli @ 2019-05-20 18:26 UTC (permalink / raw)
  To: arm
  Cc: Florian Fainelli, arnd, khilman, bcm-kernel-feedback-list, olof,
	linux-arm-kernel

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 6b23af0783a54efb348f0bd781b7850636023dbb:

  soc: bcm: brcmstb: biuctrl: Register writes require a barrier (2019-05-20 09:27:50 -0700)

----------------------------------------------------------------
This pull request contains Broadcom ARM/ARM64/MIPS SoCs device drivers
fixes for 5.2-rc1, please pull the following:

- Florian fixes the biuctrl driver not to create an error condition/path
  upon unsupported CPU and also fixes the biuctrl driver writes to used
  a data barrier which is necessary given the HW block design

----------------------------------------------------------------
Florian Fainelli (2):
      soc: brcmstb: Fix error path for unsupported CPUs
      soc: bcm: brcmstb: biuctrl: Register writes require a barrier

 drivers/soc/bcm/brcmstb/biuctrl.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 3/3] Broadcom maintainers-arm64 fixes for 5.2
  2019-05-20 18:26 [GIT PULL 1/3] Broadcom devicetree fixes for 5.2 Florian Fainelli
  2019-05-20 18:26 ` [GIT PULL 2/3] Broadcom drivers " Florian Fainelli
@ 2019-05-20 18:26 ` Florian Fainelli
  2019-06-16 20:25   ` Olof Johansson
  2019-05-28 22:34 ` [GIT PULL 1/3] Broadcom devicetree " Florian Fainelli
  2 siblings, 1 reply; 8+ messages in thread
From: Florian Fainelli @ 2019-05-20 18:26 UTC (permalink / raw)
  To: arm
  Cc: Florian Fainelli, arnd, khilman, bcm-kernel-feedback-list,
	Stefan Wahren, olof, linux-arm-kernel

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/maintainers

for you to fetch changes up to b2279bcffa72304de8ff591cb60446322570c0b5:

  MAINTAINERS: Update Stefan Wahren email address (2019-05-20 10:48:57 -0700)

----------------------------------------------------------------
This pull request contains MAINTAINERS file update for Broadcom
ARM/ARM64 SoCs, please pull the following:

- Stefan updates his email address under the BCM2835 entry

----------------------------------------------------------------
Stefan Wahren (1):
      MAINTAINERS: Update Stefan Wahren email address

 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 1/3] Broadcom devicetree fixes for 5.2
  2019-05-20 18:26 [GIT PULL 1/3] Broadcom devicetree fixes for 5.2 Florian Fainelli
  2019-05-20 18:26 ` [GIT PULL 2/3] Broadcom drivers " Florian Fainelli
  2019-05-20 18:26 ` [GIT PULL 3/3] Broadcom maintainers-arm64 " Florian Fainelli
@ 2019-05-28 22:34 ` Florian Fainelli
  2019-06-05 19:02   ` Florian Fainelli
  2 siblings, 1 reply; 8+ messages in thread
From: Florian Fainelli @ 2019-05-28 22:34 UTC (permalink / raw)
  To: Florian Fainelli, arm
  Cc: olof, bcm-kernel-feedback-list, arnd, linux-arm-kernel, Kevin Hilman

On 5/20/19 11:26 AM, Florian Fainelli wrote:
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/devicetree-fixes
> 
> for you to fetch changes up to e8bd76dccd792b371a934336c3e7d8c389755d9f:
> 
>   ARM: dts: bcm: Add missing device_type = "memory" property (2019-05-20 09:29:47 -0700)
> 
> ----------------------------------------------------------------
> This pull request contains Broadcom ARM-based SoCs Device Tree fixes for
> 5.2-rc1, please pull the following:
> 
> - Florian fixes the remaining Broadcom DTS files to have a valid
> device_type = "memory" property which was missed during the removal of
> skeleton.dtsi
> 
> ----------------------------------------------------------------
> Florian Fainelli (1):
>       ARM: dts: bcm: Add missing device_type = "memory" property

Arnd, Olof, Kevinm can this be picked up? I have changes for 5.3 that
depend on those. Thank you!

> 
>  arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dts       | 1 +
>  arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts       | 1 +
>  arch/arm/boot/dts/bcm4708-buffalo-wzr-1750dhp.dts | 1 +
>  arch/arm/boot/dts/bcm4708-linksys-ea6300-v1.dts   | 1 +
>  arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts   | 1 +
>  arch/arm/boot/dts/bcm4708-luxul-xap-1510.dts      | 1 +
>  arch/arm/boot/dts/bcm4708-luxul-xwc-1000.dts      | 1 +
>  arch/arm/boot/dts/bcm4708-netgear-r6250.dts       | 1 +
>  arch/arm/boot/dts/bcm4708-netgear-r6300-v2.dts    | 1 +
>  arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts     | 1 +
>  arch/arm/boot/dts/bcm4709-asus-rt-ac87u.dts       | 1 +
>  arch/arm/boot/dts/bcm4709-buffalo-wxr-1900dhp.dts | 1 +
>  arch/arm/boot/dts/bcm4709-linksys-ea9200.dts      | 1 +
>  arch/arm/boot/dts/bcm4709-netgear-r7000.dts       | 1 +
>  arch/arm/boot/dts/bcm4709-netgear-r8000.dts       | 1 +
>  arch/arm/boot/dts/bcm4709-tplink-archer-c9-v1.dts | 1 +
>  arch/arm/boot/dts/bcm47094-phicomm-k3.dts         | 1 +
>  arch/arm/boot/dts/bcm94708.dts                    | 1 +
>  arch/arm/boot/dts/bcm94709.dts                    | 1 +
>  arch/arm/boot/dts/bcm963138dvt.dts                | 1 +
>  20 files changed, 20 insertions(+)
> 


-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 1/3] Broadcom devicetree fixes for 5.2
  2019-05-28 22:34 ` [GIT PULL 1/3] Broadcom devicetree " Florian Fainelli
@ 2019-06-05 19:02   ` Florian Fainelli
  2019-06-16 20:29     ` Olof Johansson
  0 siblings, 1 reply; 8+ messages in thread
From: Florian Fainelli @ 2019-06-05 19:02 UTC (permalink / raw)
  To: Florian Fainelli, arm, Kevin Hilman, arnd, olof
  Cc: bcm-kernel-feedback-list, linux-arm-kernel



On 5/28/2019 3:34 PM, Florian Fainelli wrote:
> On 5/20/19 11:26 AM, Florian Fainelli wrote:
>> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
>>
>>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
>>
>> are available in the Git repository at:
>>
>>   https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/devicetree-fixes
>>
>> for you to fetch changes up to e8bd76dccd792b371a934336c3e7d8c389755d9f:
>>
>>   ARM: dts: bcm: Add missing device_type = "memory" property (2019-05-20 09:29:47 -0700)
>>
>> ----------------------------------------------------------------
>> This pull request contains Broadcom ARM-based SoCs Device Tree fixes for
>> 5.2-rc1, please pull the following:
>>
>> - Florian fixes the remaining Broadcom DTS files to have a valid
>> device_type = "memory" property which was missed during the removal of
>> skeleton.dtsi
>>
>> ----------------------------------------------------------------
>> Florian Fainelli (1):
>>       ARM: dts: bcm: Add missing device_type = "memory" property
> 
> Arnd, Olof, Kevinm can this be picked up? I have changes for 5.3 that
> depend on those. Thank you!

Ping?

> 
>>
>>  arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dts       | 1 +
>>  arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts       | 1 +
>>  arch/arm/boot/dts/bcm4708-buffalo-wzr-1750dhp.dts | 1 +
>>  arch/arm/boot/dts/bcm4708-linksys-ea6300-v1.dts   | 1 +
>>  arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts   | 1 +
>>  arch/arm/boot/dts/bcm4708-luxul-xap-1510.dts      | 1 +
>>  arch/arm/boot/dts/bcm4708-luxul-xwc-1000.dts      | 1 +
>>  arch/arm/boot/dts/bcm4708-netgear-r6250.dts       | 1 +
>>  arch/arm/boot/dts/bcm4708-netgear-r6300-v2.dts    | 1 +
>>  arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts     | 1 +
>>  arch/arm/boot/dts/bcm4709-asus-rt-ac87u.dts       | 1 +
>>  arch/arm/boot/dts/bcm4709-buffalo-wxr-1900dhp.dts | 1 +
>>  arch/arm/boot/dts/bcm4709-linksys-ea9200.dts      | 1 +
>>  arch/arm/boot/dts/bcm4709-netgear-r7000.dts       | 1 +
>>  arch/arm/boot/dts/bcm4709-netgear-r8000.dts       | 1 +
>>  arch/arm/boot/dts/bcm4709-tplink-archer-c9-v1.dts | 1 +
>>  arch/arm/boot/dts/bcm47094-phicomm-k3.dts         | 1 +
>>  arch/arm/boot/dts/bcm94708.dts                    | 1 +
>>  arch/arm/boot/dts/bcm94709.dts                    | 1 +
>>  arch/arm/boot/dts/bcm963138dvt.dts                | 1 +
>>  20 files changed, 20 insertions(+)
>>
> 
> 

-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 2/3] Broadcom drivers fixes for 5.2
  2019-05-20 18:26 ` [GIT PULL 2/3] Broadcom drivers " Florian Fainelli
@ 2019-06-16 20:25   ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2019-06-16 20:25 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: ARM-SoC Maintainers, Broadcom Kernel Feedback List,
	Arnd Bergmann, Linux ARM Mailing List, Kevin Hilman

On Mon, May 20, 2019 at 11:26 AM Florian Fainelli <f.fainelli@gmail.com> wrote:
>
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
>
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
>
> are available in the Git repository at:
>
>   https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/drivers-fixes
>

Merged, thanks!

-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 3/3] Broadcom maintainers-arm64 fixes for 5.2
  2019-05-20 18:26 ` [GIT PULL 3/3] Broadcom maintainers-arm64 " Florian Fainelli
@ 2019-06-16 20:25   ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2019-06-16 20:25 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: Arnd Bergmann, Kevin Hilman, ARM-SoC Maintainers,
	Broadcom Kernel Feedback List, Stefan Wahren,
	Linux ARM Mailing List

On Mon, May 20, 2019 at 11:27 AM Florian Fainelli <f.fainelli@gmail.com> wrote:
>
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
>
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
>
> are available in the Git repository at:
>
>   https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/maintainers

Merged, thanks!


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 1/3] Broadcom devicetree fixes for 5.2
  2019-06-05 19:02   ` Florian Fainelli
@ 2019-06-16 20:29     ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2019-06-16 20:29 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: ARM-SoC Maintainers, Broadcom Kernel Feedback List,
	Linux ARM Mailing List, Arnd Bergmann, Kevin Hilman

On Wed, Jun 5, 2019 at 12:03 PM Florian Fainelli <f.fainelli@gmail.com> wrote:
>
>
>
> On 5/28/2019 3:34 PM, Florian Fainelli wrote:
> > On 5/20/19 11:26 AM, Florian Fainelli wrote:
> >> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> >>
> >>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> >>
> >> are available in the Git repository at:
> >>
> >>   https://github.com/Broadcom/stblinux.git tags/arm-soc/for-5.2/devicetree-fixes
> >>
> >> for you to fetch changes up to e8bd76dccd792b371a934336c3e7d8c389755d9f:
> >>
> >>   ARM: dts: bcm: Add missing device_type = "memory" property (2019-05-20 09:29:47 -0700)
> >>
> >> ----------------------------------------------------------------
> >> This pull request contains Broadcom ARM-based SoCs Device Tree fixes for
> >> 5.2-rc1, please pull the following:
> >>
> >> - Florian fixes the remaining Broadcom DTS files to have a valid
> >> device_type = "memory" property which was missed during the removal of
> >> skeleton.dtsi
> >>
> >> ----------------------------------------------------------------
> >> Florian Fainelli (1):
> >>       ARM: dts: bcm: Add missing device_type = "memory" property
> >
> > Arnd, Olof, Kevinm can this be picked up? I have changes for 5.3 that
> > depend on those. Thank you!
>
> Ping?
>

As discussed over IRC, basing your branches on these fixes is fine --
and I've merged it now too.


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-06-16 20:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-20 18:26 [GIT PULL 1/3] Broadcom devicetree fixes for 5.2 Florian Fainelli
2019-05-20 18:26 ` [GIT PULL 2/3] Broadcom drivers " Florian Fainelli
2019-06-16 20:25   ` Olof Johansson
2019-05-20 18:26 ` [GIT PULL 3/3] Broadcom maintainers-arm64 " Florian Fainelli
2019-06-16 20:25   ` Olof Johansson
2019-05-28 22:34 ` [GIT PULL 1/3] Broadcom devicetree " Florian Fainelli
2019-06-05 19:02   ` Florian Fainelli
2019-06-16 20:29     ` Olof Johansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).