mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
21b02414f1
BD71837 and BD71847 is PMIC intended for powering single-core, dual-core, and quad-core SoC’s such as NXP-i.MX 8M. BD71847 is used for example on NXP imx8mm EVK. Add regulator driver for ROHM BD71837 and BD71847 PMICs. BD71837 contains 8 bucks and 7 LDOS. BD71847 is reduced version containing 6 bucks and 6 LDOs. Voltages for DVS bucks (1-4 on BD71837, 1 and 2 on BD71847) can be adjusted when regulators are enabled. For other bucks and LDOs we may have over- or undershooting if voltage is adjusted when regulator is enabled. Thus this is prevented by default. BD718x7 has a quirk which may leave power output disabled after reset if enable/disable state was controlled by SW. Thus the SW control is only allowed for BD71837 bucks 3 and 4 by default. The impact of this limitation must be evaluated board-by board and restrictions may need to be modified. (Linux driver get's these limitations from DT and we may want to implement same on u-Boot driver). Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> Reviewed-by: Simon Glass <sjg@chromium.org>
29 lines
1.4 KiB
Makefile
29 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2015 Samsung Electronics
|
|
# Przemyslaw Marczak <p.marczak@samsung.com>
|
|
#
|
|
|
|
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_$(SPL_)DM_PMIC_PFUZE100) += pfuze100.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_BD71837) += bd71837.o
|
|
obj-$(CONFIG_$(SPL_)REGULATOR_PWM) += pwm_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_FAN53555) += fan53555.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_COMMON) += regulator_common.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_DM_REGULATOR_S2MPS11) += s2mps11_regulator.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_$(SPL_)DM_REGULATOR_STM32_VREFBUF) += stm32-vrefbuf.o
|
|
obj-$(CONFIG_DM_REGULATOR_TPS65910) += tps65910_regulator.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_STPMIC1) += stpmic1.o
|