Skip to content

Commit 59f0b7b

Browse files
ayadav78groeck
authored andcommitted
dt-bindings: hwmon/pmbus: Add Infineon XDP720
Add documentation for the device tree binding of the XDP720 eFuse. Signed-off-by: Ashish Yadav <ashish.yadav@infineon.com> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20260410070154.3313-2-Ashish.Yadav@infineon.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent e2fe950 commit 59f0b7b

1 file changed

Lines changed: 59 additions & 0 deletions

File tree

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
5+
$id: http://devicetree.org/schemas/hwmon/pmbus/infineon,xdp720.yaml#
6+
$schema: http://devicetree.org/meta-schemas/core.yaml#
7+
8+
title: Infineon XDP720 Digital eFuse Controller
9+
10+
maintainers:
11+
- Ashish Yadav <ashish.yadav@infineon.com>
12+
13+
description: |
14+
The XDP720 is an eFuse with integrated current sensor and digital
15+
controller. It provides accurate system telemetry (V, I, P, T) and
16+
reports analog current at the IMON pin for post-processing.
17+
18+
Datasheet:
19+
https://www.infineon.com/assets/row/public/documents/24/49/infineon-xdp720-001-datasheet-en.pdf
20+
21+
properties:
22+
compatible:
23+
enum:
24+
- infineon,xdp720
25+
26+
reg:
27+
maxItems: 1
28+
29+
infineon,rimon-micro-ohms:
30+
description:
31+
The value of the RIMON resistor, in micro ohms, required to enable
32+
the system overcurrent protection.
33+
34+
vdd-vin-supply:
35+
description:
36+
Supply for the VDD_VIN pin (pin 9), the IC controller power supply.
37+
Typically connected to the input bus (VIN) through a 100 ohm / 100 nF
38+
RC filter.
39+
40+
required:
41+
- compatible
42+
- reg
43+
- vdd-vin-supply
44+
45+
additionalProperties: false
46+
47+
examples:
48+
- |
49+
i2c {
50+
#address-cells = <1>;
51+
#size-cells = <0>;
52+
53+
hwmon@11 {
54+
compatible = "infineon,xdp720";
55+
reg = <0x11>;
56+
vdd-vin-supply = <&vdd_vin>;
57+
infineon,rimon-micro-ohms = <1098000000>; /* 1.098k ohm */
58+
};
59+
};

0 commit comments

Comments
 (0)