]> Git Repo - J-u-boot.git/blame - include/axp152.h
Convert CONFIG_EHCI_HCD_INIT_AFTER_RESET to Kconfig
[J-u-boot.git] / include / axp152.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
24289208
HG
2/*
3 * (C) Copyright 2012 Henrik Nordstrom <[email protected]>
24289208 4 */
558ccc7f
PK
5
6enum axp152_reg {
7 AXP152_CHIP_VERSION = 0x3,
8 AXP152_DCDC2_VOLTAGE = 0x23,
9 AXP152_DCDC3_VOLTAGE = 0x27,
10 AXP152_DCDC4_VOLTAGE = 0x2B,
11 AXP152_LDO2_VOLTAGE = 0x2A,
12 AXP152_SHUTDOWN = 0x32,
13};
14
15#define AXP152_POWEROFF (1 << 7)
16
2fcf033d 17/* For axp_gpio.c */
344df3ca 18#ifdef CONFIG_AXP152_POWER
78592c09
AP
19#define AXP_POWER_STATUS 0x00
20#define AXP_POWER_STATUS_ALDO_IN BIT(0)
2fcf033d
HG
21#define AXP_GPIO0_CTRL 0x90
22#define AXP_GPIO1_CTRL 0x91
23#define AXP_GPIO2_CTRL 0x92
24#define AXP_GPIO3_CTRL 0x93
25#define AXP_GPIO_CTRL_OUTPUT_LOW 0x00 /* Drive pin low */
26#define AXP_GPIO_CTRL_OUTPUT_HIGH 0x01 /* Drive pin high */
27#define AXP_GPIO_CTRL_INPUT 0x02 /* Input */
28#define AXP_GPIO_STATE 0x97
29#define AXP_GPIO_STATE_OFFSET 0
344df3ca 30#endif
This page took 0.406592 seconds and 4 git commands to generate.