Skip to content

Commit 48834a4

Browse files
cencarnagroeck
authored andcommitted
dt-bindings: hwmon: pmbus: add lt3074
Add Analog Devices LT3074 Ultralow Noise, High PSRR Dropout Linear Regulator. Signed-off-by: Cedric Encarnacion <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]>
1 parent a852162 commit 48834a4

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/hwmon/pmbus/adi,lt3074.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Analog Devices LT3074 voltage regulator
8+
9+
maintainers:
10+
- Cedric Encarnacion <[email protected]>
11+
12+
description: |
13+
The LT3074 is a low voltage, ultra-low noise and ultra-fast transient
14+
response linear regulator. It allows telemetry for input/output voltage,
15+
output current and temperature through the PMBus serial interface.
16+
17+
Datasheet:
18+
https://www.analog.com/en/products/lt3074.html
19+
20+
allOf:
21+
- $ref: /schemas/regulator/regulator.yaml#
22+
23+
properties:
24+
compatible:
25+
enum:
26+
- adi,lt3074
27+
28+
reg:
29+
maxItems: 1
30+
31+
required:
32+
- compatible
33+
- reg
34+
35+
unevaluatedProperties: false
36+
37+
examples:
38+
- |
39+
i2c {
40+
#address-cells = <1>;
41+
#size-cells = <0>;
42+
43+
regulator@6d {
44+
compatible = "adi,lt3074";
45+
reg = <0x6d>;
46+
regulator-name = "vout";
47+
regulator-max-microvolt = <1250000>;
48+
regulator-min-microvolt = <1150000>;
49+
};
50+
};

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13989,6 +13989,13 @@ L: [email protected]
1398913989
S: Maintained
1399013990
F: drivers/scsi/sym53c8xx_2/
1399113991

13992+
LT3074 HARDWARE MONITOR DRIVER
13993+
M: Cedric Encarnacion <[email protected]>
13994+
13995+
S: Supported
13996+
W: https://ez.analog.com/linux-software-drivers
13997+
F: Documentation/devicetree/bindings/hwmon/pmbus/adi,lt3074.yaml
13998+
1399213999
LTC1660 DAC DRIVER
1399314000
M: Marcus Folkesson <[email protected]>
1399414001

0 commit comments

Comments
 (0)