Skip to content

Commit 9d6c80f

Browse files
committed
Merge tag 'regulator-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
Pull regulator updates from Mark Brown: "This has been a fairly quiet release for the regulator API, the changes are dominated by some new drivers and a quite large set of cleanups and filling in the blanks of features for the existing MT6358 driver. - Cleanups and additional features for the Mediatek MT6358 driver - Under voltage detection in the fixed regulator - Support for Maxim MAX77503, Mediatek MT6366, Qualcomm PM8909, PM8919, PMA8048 and PMC8380" * tag 'regulator-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: (45 commits) regulator (max5970): Remove duplicate line regulator (max5970): Add hwmon support regulator: qcom-rpmh: Fix smps4 regulator for pm8550ve regulator: qcom,rpmh: Add PMC8380 compatible regulator: qcom-rpmh: Add regulators support for PMC8380 regulator: fixed: add support for under-voltage IRQ regulator: dt-bindings: fixed-regulator: Add under-voltage interrupt support dt-bindings: regulator: dlg,da9210: Convert to json-schema regulator: dt-bindings: Add ADI MAX77503 support regulator: max77503: Add ADI MAX77503 support regulator: Use device_get_match_data() regulator: da9121: Use i2c_get_match_data() regulator: Drop unnecessary of_match_device() calls regulator: da9063: Annotate struct da9063_regulators with __counted_by regulator: da9062: Annotate struct da9062_regulators with __counted_by regulator: mt6358: Add supply names for MT6366 regulators regulator: mt6358: Add missing regulators for MT6366 regulator: mt6358: Make MT6366 vcn18 LDO configurable regulator: mt6358: fix and drop type prefix in MT6366 regulator node names regulator: mt6358: Add supply names for MT6358 regulators ...
2 parents 5cbff4b + 3e0569f commit 9d6c80f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1295
-868
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+
};

Documentation/devicetree/bindings/regulator/da9210.txt

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/regulator/dlg,da9210.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Dialog Semiconductor DA9210 Multi-Phase 12A DC-DC Buck Converter
8+
9+
maintainers:
10+
- Support Opensource <[email protected]>
11+
12+
allOf:
13+
- $ref: regulator.yaml#
14+
15+
properties:
16+
compatible:
17+
const: dlg,da9210
18+
19+
reg:
20+
maxItems: 1
21+
22+
interrupts:
23+
maxItems: 1
24+
25+
required:
26+
- compatible
27+
- reg
28+
29+
unevaluatedProperties: false
30+
31+
examples:
32+
- |
33+
#include <dt-bindings/interrupt-controller/irq.h>
34+
35+
i2c {
36+
#address-cells = <1>;
37+
#size-cells = <0>;
38+
39+
regulator@68 {
40+
compatible = "dlg,da9210";
41+
reg = <0x68>;
42+
43+
interrupt-parent = <&irqc0>;
44+
interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
45+
46+
regulator-min-microvolt = <300000>;
47+
regulator-max-microvolt = <1570000>;
48+
regulator-min-microamp = <1600000>;
49+
regulator-max-microamp = <4600000>;
50+
regulator-boot-on;
51+
};
52+
};

Documentation/devicetree/bindings/regulator/fixed-regulator.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ properties:
100100
vin-supply:
101101
description: Input supply phandle.
102102

103+
interrupts:
104+
maxItems: 1
105+
description:
106+
Interrupt signaling a critical under-voltage event.
107+
103108
required:
104109
- compatible
105110
- regulator-name

Documentation/devicetree/bindings/regulator/maxim,max20086.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ properties:
4343
"^OUT[1-4]$":
4444
type: object
4545
$ref: regulator.yaml#
46+
unevaluatedProperties: false
4647

4748
additionalProperties: false
4849

Documentation/devicetree/bindings/regulator/maxim,max77826.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ properties:
3030
"^LDO([1-9]|1[0-5])$":
3131
type: object
3232
$ref: regulator.yaml#
33+
unevaluatedProperties: false
3334

3435
"^BUCK|BUCKBOOST$":
3536
type: object
3637
$ref: regulator.yaml#
38+
unevaluatedProperties: false
3739

3840
additionalProperties: false
3941

0 commit comments

Comments
 (0)