new file mode 100644
@@ -0,0 +1,53 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/usb/hpe,gxp-hub.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: HPE GXP USB HUB controller
+
+maintainers:
+ - Nick Hawkins <nick.hawkins@hpe.com>
+ - Richard Yu <richard.yu@hpe.com>
+
+description:
+ The HPE GXP USB HUB Controller implements 1 set of USB
+ register and several sets of device and endpoint registers to support
+ the HUB's downstream USB devices.
+
+properties:
+ compatible:
+ enum:
+ - hpe,gxp-hub
+
+ reg:
+ items:
+ - description: GXP hub (gxphub) controller register set
+ - description: Several sets of Device and Endpoint registers to support
+ the HUB's downstream USB devices.
+
+ reg-names:
+ items:
+ - const: gxphub
+ - const: udc
+
+ interrupts:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - reg-names
+ - interrupts
+
+additionalProperties: false
+
+examples:
+ - |
+ usb-hub@80400800 {
+ compatible = "hpe,gxp-hub";
+ reg = <0x80400800 0x0200>, <0x80401000 0x8000>;
+ reg-names = "gxphub", "udc";
+ interrupts = <13>;
+ interrupt-parent = <&vic1>;
+ };