This bus controller is used to communicate with an X-Powers AXP PMIC. Currently, various drivers access PMIC registers through a platform- specific non-DM "pmic_bus" interface, which depends on the legacy I2C framework. In order to convert those drivers to use DM_PMIC, this bus needs a DM_I2C driver. Refactor the p2wi functions to take the base address as a parameter, and implement both the existing interface (which is still needed in SPL) and the DM_I2C interface on top of them. The register for switching between I2C/P2WI/RSB mode is the same across all PMIC variants. Move that to the common header, so it can be used by both interface implementations. Signed-off-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
|
|
*
|
|
* X-Powers AX Power Management IC support header
|
|
*/
|
|
#ifndef _AXP_PMIC_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef CONFIG_AXP152_POWER
|
|
#include <axp152.h>
|
|
#endif
|
|
#ifdef CONFIG_AXP209_POWER
|
|
#include <axp209.h>
|
|
#endif
|
|
#ifdef CONFIG_AXP221_POWER
|
|
#include <axp221.h>
|
|
#endif
|
|
#ifdef CONFIG_AXP305_POWER
|
|
#include <axp305.h>
|
|
#endif
|
|
#ifdef CONFIG_AXP809_POWER
|
|
#include <axp809.h>
|
|
#endif
|
|
#ifdef CONFIG_AXP818_POWER
|
|
#include <axp818.h>
|
|
#endif
|
|
|
|
#define AXP_PMIC_MODE_REG 0x3e
|
|
#define AXP_PMIC_MODE_I2C 0x00
|
|
#define AXP_PMIC_MODE_P2WI 0x3e
|
|
|
|
int axp_set_dcdc1(unsigned int mvolt);
|
|
int axp_set_dcdc2(unsigned int mvolt);
|
|
int axp_set_dcdc3(unsigned int mvolt);
|
|
int axp_set_dcdc4(unsigned int mvolt);
|
|
int axp_set_dcdc5(unsigned int mvolt);
|
|
int axp_set_aldo1(unsigned int mvolt);
|
|
int axp_set_aldo2(unsigned int mvolt);
|
|
int axp_set_aldo3(unsigned int mvolt);
|
|
int axp_set_aldo4(unsigned int mvolt);
|
|
int axp_set_dldo(int dldo_num, unsigned int mvolt);
|
|
int axp_set_eldo(int eldo_num, unsigned int mvolt);
|
|
int axp_set_fldo(int fldo_num, unsigned int mvolt);
|
|
int axp_set_sw(bool on);
|
|
int axp_init(void);
|
|
int axp_get_sid(unsigned int *sid);
|
|
|
|
#endif
|