mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
813c7372bb
AXP818 is rsb based PMIC and used on Allwinner A83T H8 Homlet dev board. It's registers are different and calculating reg config is different than that of earlier axp power ICs. DCDC1, DCDC2, DCDC3 and DCDC5 is implemented at the moment. all other voltages can be added subsequently. AXP datasheet is uploaded to wiki: http://linux-sunxi.org/File:AXP818_datasheet_Revision1.0.pdf Signed-off-by: Vishnu Patekar <vishnupatekar0510@gmail.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
23 lines
767 B
Makefile
23 lines
767 B
Makefile
#
|
|
# Copyright (c) 2009 Wind River Systems, Inc.
|
|
# Tom Rix <Tom.Rix at windriver.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AS3722_POWER) += as3722.o
|
|
obj-$(CONFIG_AXP152_POWER) += axp152.o
|
|
obj-$(CONFIG_AXP209_POWER) += axp209.o
|
|
obj-$(CONFIG_AXP221_POWER) += axp221.o
|
|
obj-$(CONFIG_AXP818_POWER) += axp818.o
|
|
obj-$(CONFIG_EXYNOS_TMU) += exynos-tmu.o
|
|
obj-$(CONFIG_FTPMU010_POWER) += ftpmu010.o
|
|
obj-$(CONFIG_TPS6586X_POWER) += tps6586x.o
|
|
obj-$(CONFIG_TWL4030_POWER) += twl4030.o
|
|
obj-$(CONFIG_TWL6030_POWER) += twl6030.o
|
|
obj-$(CONFIG_PALMAS_POWER) += palmas.o
|
|
obj-$(CONFIG_POWER) += power_core.o
|
|
obj-$(CONFIG_DIALOG_POWER) += power_dialog.o
|
|
obj-$(CONFIG_POWER_FSL) += power_fsl.o
|
|
obj-$(CONFIG_POWER_I2C) += power_i2c.o
|
|
obj-$(CONFIG_POWER_SPI) += power_spi.o
|