new file mode 100644
@@ -0,0 +1,54 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/reset/brcm,pmb.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Broadcom PMB Master reset controller
+
+description: This document describes Broadcom's PMB controller. It supports
+ resetting various types of connected devices (e.g. PCIe, USB, SATA). It
+ requires specifying device address.
+
+maintainers:
+ - Rafał Miłecki <rafal@milecki.pl>
+
+properties:
+ compatible:
+ enum:
+ - brcm,bcm4908-pmb # PMB on BCM4908 and compatible SoCs
+
+ reg:
+ maxItems: 1
+
+ big-endian:
+ $ref: /schemas/types.yaml#/definitions/flag
+ description:
+ Flag to use for block working in big endian mode.
+
+ "#reset-cells":
+ description: |
+ The first cell defines type of device to reset (see brcm,pmb.h)
+ The second cell specifies device address (range: 0 - 255)
+ const: 2
+
+required:
+ - compatible
+ - reg
+ - "#reset-cells"
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/reset/brcm,pmb.h>
+
+ pmb: reset-controller@802800e0 {
+ compatible = "brcm,bcm4908-pmb";
+ reg = <0x802800e0 0x20>;
+ #reset-cells = <2>;
+ };
+
+ foo {
+ resets = <&pmb BRCM_PMB_USB 17>;
+ };
new file mode 100644
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later OR MIT */
+
+#ifndef _DT_BINDINGS_RESET_BRCM_PMB
+#define _DT_BINDINGS_RESET_BRCM_PMB
+
+#define BRCM_PMB_USB 0x01
+#define BRCM_PMB_PCIE 0x02
+
+#endif