forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'regulator/for-5.12' into regulator-next
- Loading branch information
Showing
36 changed files
with
2,648 additions
and
1,471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/regulator/mt6315-regulator.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Mediatek MT6315 Regulator | ||
|
||
maintainers: | ||
- Hsin-Hsiung Wang <[email protected]> | ||
|
||
description: | | ||
The MT6315 is a power management IC (PMIC) configurable with SPMI. | ||
that contains 4 BUCKs output which can combine with each other | ||
by different efuse settings. | ||
properties: | ||
compatible: | ||
const: mediatek,mt6315-regulator | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
regulators: | ||
type: object | ||
description: List of regulators and its properties | ||
|
||
patternProperties: | ||
"^vbuck[1-4]$": | ||
type: object | ||
$ref: "regulator.yaml#" | ||
|
||
properties: | ||
regulator-name: | ||
pattern: "^vbuck[1-4]$" | ||
|
||
additionalProperties: false | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- regulators | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
pmic@6 { | ||
compatible = "mediatek,mt6315-regulator"; | ||
reg = <0x6 0>; | ||
regulators { | ||
vbuck1 { | ||
regulator-compatible = "vbuck1"; | ||
regulator-min-microvolt = <300000>; | ||
regulator-max-microvolt = <1193750>; | ||
regulator-enable-ramp-delay = <256>; | ||
regulator-allowed-modes = <0 1 2 4>; | ||
}; | ||
vbuck3 { | ||
regulator-compatible = "vbuck3"; | ||
regulator-min-microvolt = <300000>; | ||
regulator-max-microvolt = <1193750>; | ||
regulator-enable-ramp-delay = <256>; | ||
regulator-allowed-modes = <0 1 2 4>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
Documentation/devicetree/bindings/regulator/richtek,rt4831-regulator.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/regulator/richtek,rt4831-regulator.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Richtek RT4831 Display Bias Voltage Regulator | ||
|
||
maintainers: | ||
- ChiYuan Huang <[email protected]> | ||
|
||
description: | | ||
RT4831 is a multifunctional device that can provide power to the LCD display | ||
and LCD backlight. | ||
For Display Bias Voltage DSVP and DSVN, the output range is about 4V to 6.5V. | ||
It is sufficient to meet the current LCD power requirement. | ||
DSVLCM is a boost regulator in IC internal as DSVP and DSVN input power. | ||
Its voltage should be configured above 0.15V to 0.2V gap larger than the | ||
voltage needed for DSVP and DSVN. Too much voltage gap could improve the | ||
voltage drop from the heavy loading scenario. But it also make the power | ||
efficiency worse. It's a trade-off. | ||
Datasheet is available at | ||
https://www.richtek.com/assets/product_file/RT4831A/DS4831A-05.pdf | ||
patternProperties: | ||
"^DSV(LCM|P|N)$": | ||
type: object | ||
$ref: regulator.yaml# | ||
description: | ||
Properties for single Display Bias Voltage regulator. | ||
|
||
additionalProperties: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11684,9 +11684,9 @@ F: drivers/video/fbdev/atmel_lcdfb.c | |
F: include/video/atmel_lcdc.h | ||
|
||
MICROCHIP MCP16502 PMIC DRIVER | ||
M: Andrei Stefanescu <andrei.stefanescu@microchip.com> | ||
M: Claudiu Beznea <claudiu.beznea@microchip.com> | ||
L: [email protected] (moderated for non-subscribers) | ||
S: Maintained | ||
S: Supported | ||
F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt | ||
F: drivers/regulator/mcp16502.c | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.