mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
d6d02bc6e8
Document the 3.3V booster regulator embedded in stm32h7 and stm32mp1 devices, that can be used to supply ADC analog input switches. It's controlled by using system configuration registers (SYSCFG). Introduce two compatibles as the booster regulator is controlled by: - a unique register/bit in STM32H7 - a set/clear register pair in STM32MP1 Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by: Mark Brown <broonie@kernel.org>
19 lines
514 B
Plaintext
19 lines
514 B
Plaintext
STM32 BOOSTER - Booster for ADC analog input switches
|
|
|
|
Some STM32 devices embed a 3.3V booster supplied by Vdda, that can be used
|
|
to supply ADC analog input switches.
|
|
|
|
Required properties:
|
|
- compatible: Should be one of:
|
|
"st,stm32h7-booster"
|
|
"st,stm32mp1-booster"
|
|
- st,syscfg: Phandle to system configuration controller.
|
|
- vdda-supply: Phandle to the vdda input analog voltage.
|
|
|
|
Example:
|
|
booster: regulator-booster {
|
|
compatible = "st,stm32mp1-booster";
|
|
st,syscfg = <&syscfg>;
|
|
vdda-supply = <&vdda>;
|
|
};
|