mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 22:33:18 +00:00
3b880757ab
This cleanup includes: - remove of the preprocessor macros which pointed to long name functions - update of the names of some regulator uclass driver functions - cleanup of the function regulator_autoset() - reword of some comments of regulator uclass header file - regulator_get_by_platname: check error for uclass_find_* function calls - add function: regulator_name_is_unique - regulator post_bind(): check regulator name uniqueness - fix mistakes in: regulator/Kconfig - regulator.h: update comments - odroid u3: cleanup the regulator calls Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Tested on sandbox: Tested-by: Simon Glass <sjg@chromium.org>
33 lines
1.4 KiB
Text
33 lines
1.4 KiB
Text
config DM_REGULATOR
|
|
bool "Enable Driver Model for REGULATOR drivers (UCLASS_REGULATOR)"
|
|
depends on DM
|
|
---help---
|
|
This config enables the driver model regulator support.
|
|
UCLASS_REGULATOR - designed to provide a common API for basic regulator's
|
|
functions, like get/set Voltage or Current value, enable state, etc...
|
|
Note:
|
|
When enabling this, please read the description, found in the files:
|
|
- 'include/power/pmic.h'
|
|
- 'include/power/regulator.h'
|
|
- 'drivers/power/pmic/pmic-uclass.c'
|
|
- 'drivers/power/pmic/regulator-uclass.c'
|
|
It's important to call the device_bind() with the proper node offset,
|
|
when binding the regulator devices. The pmic_bind_childs() can be used
|
|
for this purpose if PMIC I/O driver is implemented or dm_scan_fdt_node()
|
|
otherwise. Detailed information can be found in the header file.
|
|
|
|
config DM_REGULATOR_MAX77686
|
|
bool "Enable Driver Model for REGULATOR MAX77686"
|
|
depends on DM_REGULATOR && DM_PMIC_MAX77686
|
|
---help---
|
|
This config enables implementation of driver-model regulator uclass
|
|
features for REGULATOR MAX77686. The driver implements get/set api for:
|
|
value, enable and mode.
|
|
|
|
config DM_REGULATOR_FIXED
|
|
bool "Enable Driver Model for REGULATOR Fixed value"
|
|
depends on DM_REGULATOR
|
|
---help---
|
|
This config enables implementation of driver-model regulator uclass
|
|
features for fixed value regulators. The driver implements get/set api
|
|
for enable and get only for voltage value.
|