]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/axp_pmic.h
dfu: Fix up the Kconfig mess
[people/ms/u-boot.git] / include / axp_pmic.h
CommitLineData
6944aff1
HG
1/*
2 * (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
3 *
4 * X-Powers AX Power Management IC support header
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8#ifndef _AXP_PMIC_H_
9
10#ifdef CONFIG_AXP152_POWER
11#include <axp152.h>
12#endif
13#ifdef CONFIG_AXP209_POWER
14#include <axp209.h>
15#endif
16#ifdef CONFIG_AXP221_POWER
17#include <axp221.h>
18#endif
795857df
CYT
19#ifdef CONFIG_AXP809_POWER
20#include <axp809.h>
21#endif
813c7372 22#ifdef CONFIG_AXP818_POWER
23#include <axp818.h>
24#endif
6944aff1
HG
25
26int axp_set_dcdc1(unsigned int mvolt);
27int axp_set_dcdc2(unsigned int mvolt);
28int axp_set_dcdc3(unsigned int mvolt);
29int axp_set_dcdc4(unsigned int mvolt);
30int axp_set_dcdc5(unsigned int mvolt);
31int axp_set_aldo1(unsigned int mvolt);
32int axp_set_aldo2(unsigned int mvolt);
33int axp_set_aldo3(unsigned int mvolt);
34int axp_set_aldo4(unsigned int mvolt);
3517a27d 35int axp_set_dldo(int dldo_num, unsigned int mvolt);
6944aff1 36int axp_set_eldo(int eldo_num, unsigned int mvolt);
38491d9c 37int axp_set_fldo(int fldo_num, unsigned int mvolt);
15278ccb 38int axp_set_sw(bool on);
6944aff1
HG
39int axp_init(void);
40int axp_get_sid(unsigned int *sid);
41
42#endif