mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 00:04:01 -04:00
Currently the power supply device tree documentation is spread in .../bindings/power_supply and .../bindings/power. This unifies the files for chargers and battery fuel gauges in .../bindings/power/supply and the ones for system reset/shutdown in .../bindings/power/reset (same structure as used for the drivers itself). Signed-off-by: Sebastian Reichel <sre@kernel.org>
24 lines
657 B
Plaintext
24 lines
657 B
Plaintext
i.mx6 Poweroff Driver
|
|
|
|
SNVS_LPCR in SNVS module can power off the whole system by pull
|
|
PMIC_ON_REQ low if PMIC_ON_REQ is connected with external PMIC.
|
|
If you don't want to use PMIC_ON_REQ as power on/off control,
|
|
please set status='disabled' to disable this driver.
|
|
|
|
Required Properties:
|
|
-compatible: "fsl,sec-v4.0-poweroff"
|
|
-reg: Specifies the physical address of the SNVS_LPCR register
|
|
|
|
Example:
|
|
snvs@020cc000 {
|
|
compatible = "fsl,sec-v4.0-mon", "simple-bus";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges = <0 0x020cc000 0x4000>;
|
|
.....
|
|
snvs_poweroff: snvs-poweroff@38 {
|
|
compatible = "fsl,sec-v4.0-poweroff";
|
|
reg = <0x38 0x4>;
|
|
};
|
|
}
|