Skip to content

Commit ff5f76b

Browse files
gkhnclkmxmbroonie
authored andcommitted
regulator: dt-bindings: Add ADI MAX77503 support
Add ADI MAX77503 buck converter devicetree document. Signed-off-by: Gokhan Celik <[email protected]> Reviewed-by: Conor Dooley <[email protected]> Link: https://lore.kernel.org/r/fb2cb32219eb1a5f85169d6c85cd2c057c5bb4a9.1698000185.git.gokhan.celik@analog.com Signed-off-by: Mark Brown <[email protected]>
1 parent a0c543b commit ff5f76b

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-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 OR BSD-2-Clause)
2+
# Copyright (c) 2023 Analog Devices, Inc.
3+
%YAML 1.2
4+
---
5+
$id: http://devicetree.org/schemas/regulator/adi,max77503-regulator.yaml#
6+
$schema: http://devicetree.org/meta-schemas/core.yaml#
7+
8+
title: Analog Devices MAX77503 Buck Converter
9+
10+
maintainers:
11+
- Gokhan Celik <[email protected]>
12+
13+
description: |
14+
The Analog Devices MAX77503 is a single channel 14V input, 1.5A
15+
high-efficiency buck converter. This converter has 94% efficiency
16+
for 2-Cell/3-Cell battery applications.
17+
18+
allOf:
19+
- $ref: regulator.yaml#
20+
21+
properties:
22+
compatible:
23+
enum:
24+
- adi,max77503
25+
26+
reg:
27+
description: I2C address of the device
28+
items:
29+
- enum: [0x1e, 0x24, 0x37]
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@1e {
44+
compatible = "adi,max77503";
45+
reg = <0x1e>;
46+
47+
regulator-min-microvolt = <800000>;
48+
regulator-max-microvolt = <5000000>;
49+
};
50+
};

0 commit comments

Comments
 (0)