mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
35d460fbc8
This driver allows I/O operations on the Samsung S2MPS11 PMIC, which provides lots of LDO/BUCK outputs. To enable it, update defconfig with: - CONFIG_PMIC_S2MPS11 and additional, if were not defined: - CONFIG_CMD_PMIC - CONFIG_ERRNO_STR The binding info: doc/device-tree-bindings/pmic/s2mps11.txt Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Anand Moon <linux.amoon@gmail.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
17 lines
341 B
Text
17 lines
341 B
Text
SAMSUNG, S2MPS11 PMIC
|
|
|
|
This file describes the binding info for the PMIC driver:
|
|
- drivers/power/pmic/s2mps11.c
|
|
|
|
Required properties:
|
|
- compatible: "samsung,s2mps11-pmic"
|
|
- reg = 0x66
|
|
|
|
With those two properties, the pmic device can be used for read/write only.
|
|
|
|
Example:
|
|
|
|
s2mps11@66 {
|
|
compatible = "samsung,s2mps11-pmic";
|
|
reg = <0x66>;
|
|
};
|