mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 03:15:00 +00:00
power: axp152: Registers definitions in header
Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Acked-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
849d597bac
commit
558ccc7f50
2 changed files with 12 additions and 11 deletions
|
@ -8,17 +8,6 @@
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
#include <axp152.h>
|
#include <axp152.h>
|
||||||
|
|
||||||
enum axp152_reg {
|
|
||||||
AXP152_CHIP_VERSION = 0x3,
|
|
||||||
AXP152_DCDC2_VOLTAGE = 0x23,
|
|
||||||
AXP152_DCDC3_VOLTAGE = 0x27,
|
|
||||||
AXP152_DCDC4_VOLTAGE = 0x2B,
|
|
||||||
AXP152_LDO2_VOLTAGE = 0x2A,
|
|
||||||
AXP152_SHUTDOWN = 0x32,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define AXP152_POWEROFF (1 << 7)
|
|
||||||
|
|
||||||
static int axp152_write(enum axp152_reg reg, u8 val)
|
static int axp152_write(enum axp152_reg reg, u8 val)
|
||||||
{
|
{
|
||||||
return i2c_write(0x30, reg, 1, &val, 1);
|
return i2c_write(0x30, reg, 1, &val, 1);
|
||||||
|
|
|
@ -3,6 +3,18 @@
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: GPL-2.0+
|
* SPDX-License-Identifier: GPL-2.0+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
enum axp152_reg {
|
||||||
|
AXP152_CHIP_VERSION = 0x3,
|
||||||
|
AXP152_DCDC2_VOLTAGE = 0x23,
|
||||||
|
AXP152_DCDC3_VOLTAGE = 0x27,
|
||||||
|
AXP152_DCDC4_VOLTAGE = 0x2B,
|
||||||
|
AXP152_LDO2_VOLTAGE = 0x2A,
|
||||||
|
AXP152_SHUTDOWN = 0x32,
|
||||||
|
};
|
||||||
|
|
||||||
|
#define AXP152_POWEROFF (1 << 7)
|
||||||
|
|
||||||
int axp152_set_dcdc2(int mvolt);
|
int axp152_set_dcdc2(int mvolt);
|
||||||
int axp152_set_dcdc3(int mvolt);
|
int axp152_set_dcdc3(int mvolt);
|
||||||
int axp152_set_dcdc4(int mvolt);
|
int axp152_set_dcdc4(int mvolt);
|
||||||
|
|
Loading…
Add table
Reference in a new issue