[PATCH 1/2] dt-bindings: remoteproc: add AMD MicroBlaze binding
From: Ben Levinsky
Date: Tue Apr 14 2026 - 12:20:54 EST
Describe an AMD MicroBlaze remote processor controlled
through the remoteproc framework.
The binding models the MicroBlaze remoteproc device as a
child node whose reg property describes the executable firmware
memory window in the MicroBlaze-local address space. The parent bus
node provides standard devicetree address translation through ranges
so Linux can access the same memory through the system physical
address space.
An active-low reset GPIO holds the MicroBlaze in reset until
firmware loading completes.
Signed-off-by: Ben Levinsky <ben.levinsky@xxxxxxx>
---
.../bindings/remoteproc/amd,microblaze.yaml | 67 +++++++++++++++++++
1 file changed, 67 insertions(+)
create mode 100644 Documentation/devicetree/bindings/remoteproc/amd,microblaze.yaml
diff --git a/Documentation/devicetree/bindings/remoteproc/amd,microblaze.yaml b/Documentation/devicetree/bindings/remoteproc/amd,microblaze.yaml
new file mode 100644
index 000000000000..2811610204a9
--- /dev/null
+++ b/Documentation/devicetree/bindings/remoteproc/amd,microblaze.yaml
@@ -0,0 +1,67 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/remoteproc/amd,microblaze.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: AMD MicroBlaze remote processor
+
+maintainers:
+ - Ben Levinsky <ben.levinsky@xxxxxxx>
+
+description:
+ MicroBlaze remote processor controlled by Linux through the remoteproc
+ framework.
+
+ The executable firmware memory window is described in the
+ MicroBlaze-local address space by the node's reg property and translated
+ to the system physical address space with standard devicetree address
+ translation provided by the parent bus node's ranges property.
+
+properties:
+ $nodename:
+ pattern: "^remoteproc@[0-9a-f]+$"
+
+ compatible:
+ const: amd,microblaze
+
+ reg:
+ maxItems: 1
+ description:
+ MicroBlaze-local address and size of the executable firmware memory
+ window.
+
+ firmware-name:
+ maxItems: 1
+
+ reset-gpios:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - reset-gpios
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ / {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ bus@b0000000 {
+ compatible = "simple-pm-bus";
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges = <0x0 0x0 0xb0000000 0x40000>;
+
+ remoteproc@0 {
+ compatible = "amd,microblaze";
+ reg = <0x0 0x40000>;
+ reset-gpios = <&mbv_reset_gpio 0 GPIO_ACTIVE_LOW>;
+ };
+ };
+ };
--
2.34.1