mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
c2f74c8f53
This PMIC is connected on SPMI bus so needs SPMI support enabled. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DM_PMIC) += pmic-uclass.o
|
|
obj-$(CONFIG_DM_PMIC_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_PMIC_PFUZE100) += pfuze100.o
|
|
obj-$(CONFIG_PMIC_S2MPS11) += s2mps11.o
|
|
obj-$(CONFIG_DM_PMIC_SANDBOX) += sandbox.o i2c_pmic_emul.o
|
|
obj-$(CONFIG_PMIC_ACT8846) += act8846.o
|
|
obj-$(CONFIG_PMIC_PM8916) += pm8916.o
|
|
obj-$(CONFIG_PMIC_RK808) += rk808.o
|
|
obj-$(CONFIG_PMIC_TPS65090) += tps65090.o
|
|
obj-$(CONFIG_PMIC_S5M8767) += s5m8767.o
|
|
|
|
obj-$(CONFIG_POWER_LTC3676) += pmic_ltc3676.o
|
|
obj-$(CONFIG_POWER_MAX77696) += pmic_max77696.o
|
|
obj-$(CONFIG_POWER_MAX8998) += pmic_max8998.o
|
|
obj-$(CONFIG_POWER_MAX8997) += pmic_max8997.o
|
|
obj-$(CONFIG_POWER_MUIC_MAX8997) += muic_max8997.o
|
|
obj-$(CONFIG_POWER_MAX77686) += pmic_max77686.o
|
|
obj-$(CONFIG_POWER_PFUZE100) += pmic_pfuze100.o
|
|
obj-$(CONFIG_POWER_PFUZE3000) += pmic_pfuze3000.o
|
|
obj-$(CONFIG_POWER_TPS65217) += pmic_tps65217.o
|
|
obj-$(CONFIG_POWER_TPS65218) += pmic_tps62362.o
|
|
obj-$(CONFIG_POWER_TPS65218) += pmic_tps65218.o
|
|
obj-$(CONFIG_POWER_TPS65910) += pmic_tps65910.o
|
|
obj-$(CONFIG_POWER_HI6553) += pmic_hi6553.o
|