mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
854dfbf99b
Texas Instrument's TPS65910 PMIC contains 3 buck DC-DC converts, one boost DC-DC converter and 8 LDOs. This patch implements driver model support for the TPS65910 PMIC and its regulators making the get/set API for regulator value/enable available. This patch depends on the patch "am33xx: Add a function to query MPU voltage in uV" to build correctly. For boards relying on the DT include file tps65910.dtsi the v3 patch "power: extend prefix match to regulator-name property" and an appropriate regulator naming is also required. Signed-off-by: Felix Brack <fb@ltec.ch> Reviewed-by: Simon Glass <sjg@chromium.org>
24 lines
1 KiB
Makefile
24 lines
1 KiB
Makefile
#
|
|
# Copyright (C) 2015 Samsung Electronics
|
|
# Przemyslaw Marczak <p.marczak@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR) += regulator-uclass.o
|
|
obj-$(CONFIG_REGULATOR_ACT8846) += act8846.o
|
|
obj-$(CONFIG_REGULATOR_AS3722) += as3722_regulator.o
|
|
obj-$(CONFIG_DM_REGULATOR_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_REGULATOR_PFUZE100) += pfuze100.o
|
|
obj-$(CONFIG_REGULATOR_PWM) += pwm_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_FIXED) += fixed.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_GPIO) += gpio-regulator.o
|
|
obj-$(CONFIG_REGULATOR_RK8XX) += rk8xx.o
|
|
obj-$(CONFIG_REGULATOR_S5M8767) += s5m8767.o
|
|
obj-$(CONFIG_DM_REGULATOR_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_REGULATOR_TPS65090) += tps65090_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_PALMAS) += palmas_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_PBIAS) += pbias_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_LP873X) += lp873x_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_LP87565) += lp87565_regulator.o
|
|
obj-$(CONFIG_DM_REGULATOR_TPS65910) += tps65910_regulator.o
|