netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] Broadcom b53 YAML bindings
@ 2020-11-12  4:50 Florian Fainelli
  2020-11-12  4:50 ` [PATCH v2 01/10] dt-bindings: net: dsa: Extend switch nodes pattern Florian Fainelli
                   ` (10 more replies)
  0 siblings, 11 replies; 16+ messages in thread
From: Florian Fainelli @ 2020-11-12  4:50 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Florian Fainelli, Andrew Lunn, Vivien Didelot, Vladimir Oltean,
	David S. Miller, Jakub Kicinski, Rob Herring, Ray Jui,
	Scott Branden, maintainer:BROADCOM IPROC ARM ARCHITECTURE,
	Hauke Mehrtens, Rafał Miłecki,
	open list:NETWORKING DRIVERS,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list, Kurt Kanzenbach

Hi,

This patch series fixes the various Broadcom SoCs DTS files and the
existing YAML binding for missing properties before adding a proper b53
switch YAML binding from Kurt.

If this all looks good, given that there are quite a few changes to the
DTS files, it might be best if I take them through the upcoming Broadcom
ARM SoC pull requests. Let me know if you would like those patches to be
applied differently.

Thanks!

Changes in v2:

- collected Reviewed-by and Acked-by tags from Vladimir and Rob
- corrected BCM5301X default compatibles based on data provided by Rafal
  on his different devices
- updated strategy for NSP to tackle each board separately
- provide both a ports {} container node and its #address-cells and
  #size-cells properties
- renamed binding from b53.yaml to brcm,b53.yaml

Florian Fainelli (9):
  dt-bindings: net: dsa: Extend switch nodes pattern
  dt-bindings: net: dsa: Document sfp and managed properties
  ARM: dts: BCM5301X: Update Ethernet switch node name
  ARM: dts: BCM5301X: Add a default compatible for switch node
  ARM: dts: BCM5301X: Provide defaults ports container node
  ARM: dts: NSP: Update ethernet switch node name
  ARM: dts: NSP: Fix Ethernet switch SGMII register name
  ARM: dts: NSP: Add a SRAB compatible string for each board
  ARM: dts: NSP: Provide defaults ports container node

Kurt Kanzenbach (1):
  dt-bindings: net: dsa: b53: Add YAML bindings

 .../devicetree/bindings/net/dsa/b53.txt       | 149 -----------
 .../devicetree/bindings/net/dsa/brcm,b53.yaml | 249 ++++++++++++++++++
 .../devicetree/bindings/net/dsa/dsa.yaml      |   6 +-
 MAINTAINERS                                   |   2 +-
 arch/arm/boot/dts/bcm-nsp.dtsi                |   8 +-
 arch/arm/boot/dts/bcm4708-luxul-xap-1510.dts  |   3 -
 arch/arm/boot/dts/bcm4708-luxul-xwc-1000.dts  |   3 -
 arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts |   3 -
 arch/arm/boot/dts/bcm47081-luxul-xap-1410.dts |   3 -
 arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts |   3 -
 arch/arm/boot/dts/bcm4709.dtsi                |   4 +
 .../boot/dts/bcm47094-linksys-panamera.dts    |   3 -
 arch/arm/boot/dts/bcm47094-luxul-xap-1610.dts |   3 -
 arch/arm/boot/dts/bcm47094-luxul-xwc-2000.dts |   3 -
 arch/arm/boot/dts/bcm47094-luxul-xwr-3100.dts |   3 -
 .../boot/dts/bcm47094-luxul-xwr-3150-v1.dts   |   3 -
 arch/arm/boot/dts/bcm47094.dtsi               |   4 +
 arch/arm/boot/dts/bcm5301x.dtsi               |   8 +-
 arch/arm/boot/dts/bcm953012er.dts             |   3 -
 arch/arm/boot/dts/bcm958522er.dts             |   4 +
 arch/arm/boot/dts/bcm958525er.dts             |   4 +
 arch/arm/boot/dts/bcm958525xmc.dts            |   4 +
 arch/arm/boot/dts/bcm958622hr.dts             |   3 -
 arch/arm/boot/dts/bcm958623hr.dts             |   3 -
 arch/arm/boot/dts/bcm958625hr.dts             |   3 -
 arch/arm/boot/dts/bcm958625k.dts              |   3 -
 arch/arm/boot/dts/bcm988312hr.dts             |   3 -
 27 files changed, 287 insertions(+), 203 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/net/dsa/b53.txt
 create mode 100644 Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml

-- 
2.25.1


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

end of thread, other threads:[~2020-11-21  2:56 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-12  4:50 [PATCH v2 00/10] Broadcom b53 YAML bindings Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 01/10] dt-bindings: net: dsa: Extend switch nodes pattern Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 02/10] dt-bindings: net: dsa: Document sfp and managed properties Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 03/10] ARM: dts: BCM5301X: Update Ethernet switch node name Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 04/10] ARM: dts: BCM5301X: Add a default compatible for switch node Florian Fainelli
2020-11-12  5:25   ` Rafał Miłecki
2020-11-12  4:50 ` [PATCH v2 05/10] ARM: dts: BCM5301X: Provide defaults ports container node Florian Fainelli
2020-11-12  5:26   ` Rafał Miłecki
2020-11-12  4:50 ` [PATCH v2 06/10] ARM: dts: NSP: Update ethernet switch node name Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 07/10] ARM: dts: NSP: Fix Ethernet switch SGMII register name Florian Fainelli
2020-11-12  4:50 ` [PATCH v2 08/10] ARM: dts: NSP: Add a SRAB compatible string for each board Florian Fainelli
2020-11-14  1:08   ` Vladimir Oltean
2020-11-12  4:50 ` [PATCH v2 09/10] ARM: dts: NSP: Provide defaults ports container node Florian Fainelli
2020-11-14  1:10   ` Vladimir Oltean
2020-11-12  4:50 ` [PATCH v2 10/10] dt-bindings: net: dsa: b53: Add YAML bindings Florian Fainelli
2020-11-21  2:56 ` [PATCH v2 00/10] Broadcom b53 " Florian Fainelli

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).