devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 0/7] ARM: dts: bcm283x: Improve device-trees and bindings
@ 2023-06-17 13:36 Stefan Wahren
  2023-06-17 13:36 ` [PATCH V2 1/7] ARM: dts: bcm283x: Fix pinctrl groups Stefan Wahren
                   ` (8 more replies)
  0 siblings, 9 replies; 21+ messages in thread
From: Stefan Wahren @ 2023-06-17 13:36 UTC (permalink / raw)
  To: Vinod Koul, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Florian Fainelli, Ray Jui, Scott Branden, Jassi Brar,
	Thierry Reding, Uwe Kleine-König, Daniel Lezcano,
	Thomas Gleixner
  Cc: linux-arm-kernel, dmaengine, devicetree, linux-mmc, linux-pwm,
	linux-pm, bcm-kernel-feedback-list, Stefan Wahren

This series fix some dtbs_check warning for the Raspberry Pi boards
and convert 4 txt DT bindings for BCM2835 to YAML.

Changes in V2:
- drop already applied patches (bcm2835-sdhost, bcm2835-thermal)
- drop patch "dmaengine: bcm2835: also support generic dma-channel-mask"
- keep brcm,bcm2835-dma for ABI compatibility which also resolve
  dependency between patch 2 and 3
- drop quotes in patch 2 as noted by Rob Herring
- add interrupt description as suggested by Rob
- add Rob's and Uwe's Reviewed-by


Stefan Wahren (7):
  ARM: dts: bcm283x: Fix pinctrl groups
  dt-bindings: dma: convert bcm2835-dma bindings to YAML
  ARM: dts: bcm2835: adjust DMA node names
  dt-bindings: pwm: convert pwm-bcm2835 bindings to YAML
  ARM: dts: bcm283x: Increase pwm-cells
  dt-bindings: mailbox: convert bcm2835-mbox bindings to YAML
  dt-bindings: timer: convert bcm2835-system-timer bindings to YAML

 .../bindings/dma/brcm,bcm2835-dma.txt         |  83 --------------
 .../bindings/dma/brcm,bcm2835-dma.yaml        | 102 ++++++++++++++++++
 .../bindings/mailbox/brcm,bcm2835-mbox.txt    |  26 -----
 .../bindings/mailbox/brcm,bcm2835-mbox.yaml   |  40 +++++++
 .../devicetree/bindings/pwm/pwm-bcm2835.txt   |  30 ------
 .../devicetree/bindings/pwm/pwm-bcm2835.yaml  |  43 ++++++++
 .../timer/brcm,bcm2835-system-timer.txt       |  22 ----
 .../timer/brcm,bcm2835-system-timer.yaml      |  48 +++++++++
 arch/arm/boot/dts/bcm2711.dtsi                |   4 +-
 arch/arm/boot/dts/bcm2835-common.dtsi         |   2 +-
 arch/arm/boot/dts/bcm2835-rpi-a-plus.dts      |   1 +
 arch/arm/boot/dts/bcm2835-rpi-a.dts           |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b-plus.dts      |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts      |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b.dts           |   1 +
 arch/arm/boot/dts/bcm2835-rpi-cm1-io1.dts     |   1 +
 arch/arm/boot/dts/bcm2835-rpi-zero-w.dts      |   2 +
 arch/arm/boot/dts/bcm2835-rpi-zero.dts        |   1 +
 arch/arm/boot/dts/bcm2835-rpi.dtsi            |   2 -
 arch/arm/boot/dts/bcm2836-rpi-2-b.dts         |   1 +
 arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts     |   1 +
 arch/arm/boot/dts/bcm2837-rpi-zero-2-w.dts    |   2 +
 arch/arm/boot/dts/bcm283x.dtsi                |   2 +-
 23 files changed, 250 insertions(+), 167 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/dma/brcm,bcm2835-dma.txt
 create mode 100644 Documentation/devicetree/bindings/dma/brcm,bcm2835-dma.yaml
 delete mode 100644 Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt
 create mode 100644 Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.yaml
 delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-bcm2835.txt
 create mode 100644 Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml
 delete mode 100644 Documentation/devicetree/bindings/timer/brcm,bcm2835-system-timer.txt
 create mode 100644 Documentation/devicetree/bindings/timer/brcm,bcm2835-system-timer.yaml

-- 
2.34.1


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

end of thread, other threads:[~2023-07-11 16:45 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-17 13:36 [PATCH V2 0/7] ARM: dts: bcm283x: Improve device-trees and bindings Stefan Wahren
2023-06-17 13:36 ` [PATCH V2 1/7] ARM: dts: bcm283x: Fix pinctrl groups Stefan Wahren
2023-06-23 20:59   ` Florian Fainelli
2023-06-17 13:36 ` [PATCH V2 2/7] dt-bindings: dma: convert bcm2835-dma bindings to YAML Stefan Wahren
2023-06-19 22:49   ` Rob Herring
2023-06-20  4:50     ` Stefan Wahren
2023-06-20 14:38   ` Rob Herring
2023-06-17 13:36 ` [PATCH V2 3/7] ARM: dts: bcm2835: adjust DMA node names Stefan Wahren
2023-06-23 20:59   ` Florian Fainelli
2023-06-17 13:36 ` [PATCH V2 4/7] dt-bindings: pwm: convert pwm-bcm2835 bindings to YAML Stefan Wahren
2023-06-17 13:36 ` [PATCH V2 5/7] ARM: dts: bcm283x: Increase pwm-cells Stefan Wahren
2023-06-23 21:00   ` Florian Fainelli
2023-06-17 13:36 ` [PATCH V2 6/7] dt-bindings: mailbox: convert bcm2835-mbox bindings to YAML Stefan Wahren
2023-06-20 14:39   ` Rob Herring
2023-06-17 13:36 ` [PATCH V2 7/7] dt-bindings: timer: convert bcm2835-system-timer " Stefan Wahren
2023-06-19 17:00   ` Daniel Lezcano
2023-06-19 18:57     ` Stefan Wahren
2023-06-19 20:00       ` Daniel Lezcano
2023-06-26 18:16       ` Stefan Wahren
2023-06-23 14:51 ` (subset) [PATCH V2 0/7] ARM: dts: bcm283x: Improve device-trees and bindings Thierry Reding
2023-07-11 16:43 ` Vinod Koul

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