linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Maxime Ripard <maxime@cerno.tech>
To: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Cc: Florian Fainelli <f.fainelli@gmail.com>,
	Tim Gover <tim.gover@raspberrypi.com>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Mike Turquette <mturquette@baylibre.com>,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	bcm-kernel-feedback-list@broadcom.com,
	linux-rpi-kernel@lists.infradead.org,
	Phil Elwell <phil@raspberrypi.com>,
	linux-arm-kernel@lists.infradead.org,
	Maxime Ripard <maxime@cerno.tech>
Subject: [PATCH v4 01/27] dt-bindings: arm: bcm: Convert BCM2835 firmware binding to YAML
Date: Thu, 11 Jun 2020 09:31:50 +0200	[thread overview]
Message-ID: <2c7d516ab35742171561088fc376b132ea8ccfa8.1591860665.git-series.maxime@cerno.tech> (raw)
In-Reply-To: <cover.58c6e44891ff5bf61052b5804f7da9b5ba074840.1591860665.git-series.maxime@cerno.tech>

From: Florian Fainelli <f.fainelli@gmail.com>

Convert the Raspberry Pi BCM2835 firmware binding document to YAML.
Verified with dt_binding_check and dtbs_check.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
---
 Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.txt  | 14 --------------
 Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+), 14 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.txt
 create mode 100644 Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml

diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.txt b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.txt
deleted file mode 100644
index 6824b3180ffb..000000000000
--- a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Raspberry Pi VideoCore firmware driver
-
-Required properties:
-
-- compatible:		Should be "raspberrypi,bcm2835-firmware"
-- mboxes:		Phandle to the firmware device's Mailbox.
-			  (See: ../mailbox/mailbox.txt for more information)
-
-Example:
-
-firmware {
-	compatible = "raspberrypi,bcm2835-firmware";
-	mboxes = <&mailbox>;
-};
diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml
new file mode 100644
index 000000000000..cec540c052b6
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml
@@ -0,0 +1,35 @@
+# SPDX-License-Identifier: GPL-2.0
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/arm/bcm/raspberrypi,bcm2835-firmware.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Raspberry Pi VideoCore firmware driver
+
+maintainers:
+  - Eric Anholt <eric@anholt.net>
+  - Stefan Wahren <wahrenst@gmx.net>
+
+properties:
+  compatible:
+    items:
+      - const: raspberrypi,bcm2835-firmware
+      - const: simple-bus
+
+  mboxes:
+    $ref: '/schemas/types.yaml#/definitions/phandle'
+    description: |
+      Phandle to the firmware device's Mailbox.
+      (See: ../mailbox/mailbox.txt for more information)
+
+required:
+  - compatible
+  - mboxes
+
+examples:
+  - |
+    firmware {
+        compatible = "raspberrypi,bcm2835-firmware", "simple-bus";
+        mboxes = <&mailbox>;
+    };
+...
-- 
git-series 0.9.1

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

  reply	other threads:[~2020-06-11  7:33 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-11  7:31 [PATCH v4 00/27] clk: bcm: rpi: Add support for BCM2711 firmware clocks Maxime Ripard
2020-06-11  7:31 ` Maxime Ripard [this message]
2020-06-11  7:31 ` [PATCH v4 02/27] dt-bindings: clock: Add a binding for the RPi Firmware clocks Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 03/27] firmware: rpi: Only create clocks device if we don't have a node for it Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 04/27] clk: bcm: rpi: Allow the driver to be probed by DT Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 05/27] clk: bcm: rpi: Statically init clk_init_data Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 06/27] clk: bcm: rpi: Use clk_hw_register for pllb_arm Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 07/27] clk: bcm: rpi: Remove global pllb_arm clock pointer Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 08/27] clk: bcm: rpi: Make sure pllb_arm is removed Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 09/27] clk: bcm: rpi: Remove pllb_arm_lookup global pointer Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 10/27] clk: bcm: rpi: Switch to clk_hw_register_clkdev Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 11/27] clk: bcm: rpi: Make sure the clkdev lookup is removed Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 12/27] clk: bcm: rpi: Use CCF boundaries instead of rolling our own Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 13/27] clk: bcm: rpi: Create a data structure for the clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 14/27] clk: bcm: rpi: Add clock id to data Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 15/27] clk: bcm: rpi: Pass the clocks data to the firmware function Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 16/27] clk: bcm: rpi: Rename is_prepared function Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 17/27] clk: bcm: rpi: Split pllb clock hooks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 18/27] clk: bcm: rpi: Make the PLLB registration function return a clk_hw Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 19/27] clk: bcm: rpi: Add DT provider for the clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 20/27] clk: bcm: rpi: Add an enum for the firmware clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 21/27] clk: bcm: rpi: Discover " Maxime Ripard
2020-06-11 11:14   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 22/27] clk: bcm: rpi: Give firmware clocks a name Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 23/27] Revert "clk: bcm2835: remove pllb" Maxime Ripard
2020-06-11 11:15   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 24/27] ARM: dts: bcm2711: Add firmware clocks node Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 25/27] clk: bcm2835: Allow custom CCF flags for the PLLs Maxime Ripard
2020-06-11  9:11   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 26/27] clk: bcm2835: Don't cache the PLLB rate Maxime Ripard
2020-06-11 11:17   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 27/27] clk: bcm: rpi: Remove the quirks for the CPU clock Maxime Ripard
2020-06-11 11:18   ` Nicolas Saenz Julienne
2020-06-11 11:21 ` [PATCH v4 00/27] clk: bcm: rpi: Add support for BCM2711 firmware clocks Nicolas Saenz Julienne

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2c7d516ab35742171561088fc376b132ea8ccfa8.1591860665.git-series.maxime@cerno.tech \
    --to=maxime@cerno.tech \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=dave.stevenson@raspberrypi.com \
    --cc=f.fainelli@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rpi-kernel@lists.infradead.org \
    --cc=mturquette@baylibre.com \
    --cc=nsaenzjulienne@suse.de \
    --cc=phil@raspberrypi.com \
    --cc=sboyd@kernel.org \
    --cc=tim.gover@raspberrypi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).