The A80 uses the AXP809 as its primary PMIC. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>master
parent
511992695d
commit
795857df41
@ -0,0 +1,238 @@ |
||||
/*
|
||||
* AXP809 driver based on AXP221 driver |
||||
* |
||||
* |
||||
* (C) Copyright 2016 Chen-Yu Tsai <wens@csie.org> |
||||
* |
||||
* Based on axp221.c |
||||
* (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com> |
||||
* (C) Copyright 2013 Oliver Schinagl <oliver@schinagl.nl> |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
||||
|
||||
#include <common.h> |
||||
#include <errno.h> |
||||
#include <asm/arch/gpio.h> |
||||
#include <asm/arch/pmic_bus.h> |
||||
#include <axp_pmic.h> |
||||
|
||||
static u8 axp809_mvolt_to_cfg(int mvolt, int min, int max, int div) |
||||
{ |
||||
if (mvolt < min) |
||||
mvolt = min; |
||||
else if (mvolt > max) |
||||
mvolt = max; |
||||
|
||||
return (mvolt - min) / div; |
||||
} |
||||
|
||||
int axp_set_dcdc1(unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 1600, 3400, 100); |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC1_EN); |
||||
|
||||
ret = pmic_bus_write(AXP809_DCDC1_CTRL, cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
ret = pmic_bus_setbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_DC1SW_EN); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC1_EN); |
||||
} |
||||
|
||||
int axp_set_dcdc2(unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 600, 1540, 20); |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC2_EN); |
||||
|
||||
ret = pmic_bus_write(AXP809_DCDC2_CTRL, cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC2_EN); |
||||
} |
||||
|
||||
int axp_set_dcdc3(unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 600, 1860, 20); |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC3_EN); |
||||
|
||||
ret = pmic_bus_write(AXP809_DCDC3_CTRL, cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC3_EN); |
||||
} |
||||
|
||||
int axp_set_dcdc4(unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 600, 1540, 20); |
||||
|
||||
if (mvolt >= 1540) |
||||
cfg = 0x30 + axp809_mvolt_to_cfg(mvolt, 1800, 2600, 100); |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC4_EN); |
||||
|
||||
ret = pmic_bus_write(AXP809_DCDC5_CTRL, cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC4_EN); |
||||
} |
||||
|
||||
int axp_set_dcdc5(unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 1000, 2550, 50); |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC5_EN); |
||||
|
||||
ret = pmic_bus_write(AXP809_DCDC5_CTRL, cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_DCDC5_EN); |
||||
} |
||||
|
||||
int axp_set_aldo(int aldo_num, unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg; |
||||
|
||||
if (aldo_num < 1 || aldo_num > 3) |
||||
return -EINVAL; |
||||
|
||||
if (mvolt == 0 && aldo_num == 3) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_ALDO3_EN); |
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_ALDO1_EN << (aldo_num - 1)); |
||||
|
||||
cfg = axp809_mvolt_to_cfg(mvolt, 700, 3300, 100); |
||||
ret = pmic_bus_write(AXP809_ALDO1_CTRL + (aldo_num - 1), cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
if (aldo_num == 3) |
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_ALDO3_EN); |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL1, |
||||
AXP809_OUTPUT_CTRL1_ALDO1_EN << (aldo_num - 1)); |
||||
} |
||||
|
||||
/* TODO: re-work other AXP drivers to consolidate ALDO functions. */ |
||||
int axp_set_aldo1(unsigned int mvolt) |
||||
{ |
||||
return axp_set_aldo(1, mvolt); |
||||
} |
||||
|
||||
int axp_set_aldo2(unsigned int mvolt) |
||||
{ |
||||
return axp_set_aldo(2, mvolt); |
||||
} |
||||
|
||||
int axp_set_aldo3(unsigned int mvolt) |
||||
{ |
||||
return axp_set_aldo(3, mvolt); |
||||
} |
||||
|
||||
int axp_set_dldo(int dldo_num, unsigned int mvolt) |
||||
{ |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 700, 3300, 100); |
||||
int ret; |
||||
|
||||
if (dldo_num < 1 || dldo_num > 2) |
||||
return -EINVAL; |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_DLDO1_EN << (dldo_num - 1)); |
||||
|
||||
if (dldo_num == 1 && mvolt > 3300) |
||||
cfg += 1 + axp809_mvolt_to_cfg(mvolt, 3400, 4200, 200); |
||||
ret = pmic_bus_write(AXP809_DLDO1_CTRL + (dldo_num - 1), cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_DLDO1_EN << (dldo_num - 1)); |
||||
} |
||||
|
||||
int axp_set_eldo(int eldo_num, unsigned int mvolt) |
||||
{ |
||||
int ret; |
||||
u8 cfg = axp809_mvolt_to_cfg(mvolt, 700, 3300, 100); |
||||
|
||||
if (eldo_num < 1 || eldo_num > 3) |
||||
return -EINVAL; |
||||
|
||||
if (mvolt == 0) |
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_ELDO1_EN << (eldo_num - 1)); |
||||
|
||||
ret = pmic_bus_write(AXP809_ELDO1_CTRL + (eldo_num - 1), cfg); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_ELDO1_EN << (eldo_num - 1)); |
||||
} |
||||
|
||||
int axp_set_sw(bool on) |
||||
{ |
||||
if (on) |
||||
return pmic_bus_setbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_SWOUT_EN); |
||||
|
||||
return pmic_bus_clrbits(AXP809_OUTPUT_CTRL2, |
||||
AXP809_OUTPUT_CTRL2_SWOUT_EN); |
||||
} |
||||
|
||||
int axp_init(void) |
||||
{ |
||||
int ret; |
||||
|
||||
ret = pmic_bus_init(); |
||||
if (ret) |
||||
return ret; |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
||||
{ |
||||
pmic_bus_write(AXP809_SHUTDOWN, AXP809_SHUTDOWN_POWEROFF); |
||||
|
||||
/* infinite loop during shutdown */ |
||||
while (1) {} |
||||
|
||||
/* not reached */ |
||||
return 0; |
||||
} |
@ -0,0 +1,60 @@ |
||||
/*
|
||||
* (C) Copyright 2016 Chen-Yu Tsai <wens@csie.org> |
||||
* |
||||
* X-Powers AXP809 Power Management IC driver |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
||||
|
||||
#define AXP809_CHIP_ID 0x03 |
||||
|
||||
#define AXP809_OUTPUT_CTRL1 0x10 |
||||
#define AXP809_OUTPUT_CTRL1_DC5LDO_EN (1 << 0) |
||||
#define AXP809_OUTPUT_CTRL1_DCDC1_EN (1 << 1) |
||||
#define AXP809_OUTPUT_CTRL1_DCDC2_EN (1 << 2) |
||||
#define AXP809_OUTPUT_CTRL1_DCDC3_EN (1 << 3) |
||||
#define AXP809_OUTPUT_CTRL1_DCDC4_EN (1 << 4) |
||||
#define AXP809_OUTPUT_CTRL1_DCDC5_EN (1 << 5) |
||||
#define AXP809_OUTPUT_CTRL1_ALDO1_EN (1 << 6) |
||||
#define AXP809_OUTPUT_CTRL1_ALDO2_EN (1 << 7) |
||||
#define AXP809_OUTPUT_CTRL2 0x12 |
||||
#define AXP809_OUTPUT_CTRL2_ELDO1_EN (1 << 0) |
||||
#define AXP809_OUTPUT_CTRL2_ELDO2_EN (1 << 1) |
||||
#define AXP809_OUTPUT_CTRL2_ELDO3_EN (1 << 2) |
||||
#define AXP809_OUTPUT_CTRL2_DLDO1_EN (1 << 3) |
||||
#define AXP809_OUTPUT_CTRL2_DLDO2_EN (1 << 4) |
||||
#define AXP809_OUTPUT_CTRL2_ALDO3_EN (1 << 5) |
||||
#define AXP809_OUTPUT_CTRL2_SWOUT_EN (1 << 6) |
||||
#define AXP809_OUTPUT_CTRL2_DC1SW_EN (1 << 7) |
||||
|
||||
#define AXP809_DLDO1_CTRL 0x15 |
||||
#define AXP809_DLDO2_CTRL 0x16 |
||||
#define AXP809_ELDO1_CTRL 0x19 |
||||
#define AXP809_ELDO2_CTRL 0x1a |
||||
#define AXP809_ELDO3_CTRL 0x1b |
||||
#define AXP809_DC5LDO_CTRL 0x1c |
||||
#define AXP809_DCDC1_CTRL 0x21 |
||||
#define AXP809_DCDC2_CTRL 0x22 |
||||
#define AXP809_DCDC3_CTRL 0x23 |
||||
#define AXP809_DCDC4_CTRL 0x24 |
||||
#define AXP809_DCDC5_CTRL 0x25 |
||||
#define AXP809_ALDO1_CTRL 0x28 |
||||
#define AXP809_ALDO2_CTRL 0x29 |
||||
#define AXP809_ALDO3_CTRL 0x2a |
||||
#define AXP809_SHUTDOWN 0x32 |
||||
#define AXP809_SHUTDOWN_POWEROFF (1 << 7) |
||||
|
||||
/* For axp_gpio.c */ |
||||
#define AXP_POWER_STATUS 0x00 |
||||
#define AXP_POWER_STATUS_VBUS_PRESENT (1 << 5) |
||||
#define AXP_VBUS_IPSOUT 0x30 |
||||
#define AXP_VBUS_IPSOUT_DRIVEBUS (1 << 2) |
||||
#define AXP_MISC_CTRL 0x8f |
||||
#define AXP_MISC_CTRL_N_VBUSEN_FUNC (1 << 4) |
||||
#define AXP_GPIO0_CTRL 0x90 |
||||
#define AXP_GPIO1_CTRL 0x92 |
||||
#define AXP_GPIO_CTRL_OUTPUT_LOW 0x00 /* Drive pin low */ |
||||
#define AXP_GPIO_CTRL_OUTPUT_HIGH 0x01 /* Drive pin high */ |
||||
#define AXP_GPIO_CTRL_INPUT 0x02 /* Input */ |
||||
#define AXP_GPIO_STATE 0x94 |
||||
#define AXP_GPIO_STATE_OFFSET 0 |
Loading…
Reference in new issue