new file mode 100644
@@ -0,0 +1,42 @@
+# SPDX-License-Identifier: GPL-2.0-only
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/power/supply/sc27xx-fg.yaml#"
+$schema: "http://devicetree.org/meta-schemas/core.yaml#"
+
+title: STMicroelectronics STC3117 Fuel Gauge Unit Power Supply Bindings
+
+maintainers:
+ - Bhavin Sharma <bhavin.sharma@siliconsignals.io>
+ - Hardevsinh Palaniya <hardevsinh.palaniya@siliconsignals.io>
+
+allOf:
+ - $ref: power-supply.yaml#
+
+properties:
+ compatible:
+ enum:
+ - st,stc3117-fgu
+
+ reg:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ &i2c6 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ st3117: stc3117@70 {
+ compatible = "st,stc3117-fgu";
+ reg = <0x70>;
+ status = "okay";
+ };
+ };
+
Convert the binding to DT schema format. Signed-off-by: Bhavin Sharma <bhavin.sharma@siliconsignals.io> --- .../bindings/power/supply/stc3117-fg.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Documentation/devicetree/bindings/power/supply/stc3117-fg.yaml