forked from msm8974-mainline/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 tag 'regulator-v5.19' of git://git.kernel.org/pub/scm/linux/ker…
…nel/git/broonie/regulator Pull regulator updates from Mark Brown: "This is mostly a drivers update including a couple of new drivers but we do have some fixes and improvements to the core as well. - Make sure we don't log spuriously about uncontrollable regulators. - Don't use delays when we should use sleeps for regulators with larger ramp times. - Support for MediaTek MT6358 and MT6366, Richtek RT5759 and Silicon Mitus SM5703" * tag 'regulator-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: (36 commits) regulator: scmi: Fix refcount leak in scmi_regulator_probe regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt regulator: qcom_smd: Fix up PM8950 regulator configuration regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET regulator: core: Add error flags to sysfs attributes regulator: dt-bindings: qcom,rpmh: document vdd-l7-bob-supply on PMR735A regulator: dt-bindings: qcom,rpmh: document supplies per variant regulator: dt-bindings: qcom,rpmh: update maintainers regulator: mt6315: Enforce regulator-compatible, not name regulator: pca9450: Enable DVS control via PMIC_STBY_REQ regulator: pca9450: Make warm reset on WDOG_B assertion regulator: Add property for WDOG_B warm reset regulator: pca9450: Make I2C Level Translator configurable regulator: Add property for I2C level shifter regulator: sm5703: Correct reference to the common regulator schema regulator: sm5703-regulator: Add regulators support for SM5703 MFD dt-bindings: regulator: Add bindings for Silicon Mitus SM5703 regulators regulator: richtek,rt4801: parse GPIOs per regulator regulator: dt-bindings: richtek,rt4801: use existing ena_gpiod feature regulator: core: Sleep (not delay) in set_voltage() ...
- Loading branch information
Showing
26 changed files
with
1,538 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -370,3 +370,84 @@ Description: | |
|
||
'unknown' means software cannot determine the state, or | ||
the reported state is invalid. | ||
|
||
What: /sys/class/regulator/.../under_voltage | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
under_voltage. This indicates if the device reports an | ||
under-voltage fault (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../over_current | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
over_current. This indicates if the device reports an | ||
over-current fault (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../regulation_out | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
regulation_out. This indicates if the device reports an | ||
out-of-regulation fault (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../fail | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
fail. This indicates if the device reports an output failure | ||
(1) or not (0). | ||
|
||
What: /sys/class/regulator/.../over_temp | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
over_temp. This indicates if the device reports an | ||
over-temperature fault (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../under_voltage_warn | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
under_voltage_warn. This indicates if the device reports an | ||
under-voltage warning (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../over_current_warn | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
over_current_warn. This indicates if the device reports an | ||
over-current warning (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../over_voltage_warn | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
over_voltage_warn. This indicates if the device reports an | ||
over-voltage warning (1) or not (0). | ||
|
||
What: /sys/class/regulator/.../over_temp_warn | ||
Date: April 2022 | ||
KernelVersion: 5.18 | ||
Contact: Zev Weiss <[email protected]> | ||
Description: | ||
Some regulator directories will contain a field called | ||
over_temp_warn. This indicates if the device reports an | ||
over-temperature warning (1) or not (0). |
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.