Merge https://source.denx.de/u-boot/custodians/u-boot-snapdragon
[u-boot.git] / include / axp305.h
blob0a42bc68042b628fb05d4c94b815d55f5d5b6dfc
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * (C) Copyright 2020 Jernej Skrabec <jernej.skrabec@siol.net>
4 */
6 enum axp305_reg {
7 AXP305_CHIP_VERSION = 0x3,
8 AXP305_OUTPUT_CTRL1 = 0x10,
9 AXP305_DCDCD_VOLTAGE = 0x15,
10 AXP305_SHUTDOWN = 0x32,
13 #define AXP305_CHIP_VERSION_MASK 0xcf
15 #define AXP305_OUTPUT_CTRL1_DCDCD_EN (1 << 3)
17 #define AXP305_POWEROFF (1 << 7)
19 #define AXP_POWER_STATUS 0x00
20 #define AXP_POWER_STATUS_ALDO_IN BIT(0)