]> git.sur5r.net Git - u-boot/blobdiff - include/axp209.h
common/memsize.c: Increase save array for supporting memory size > 4GB
[u-boot] / include / axp209.h
index 13aa66c7bc8539990001aa1a59c24a3fa3ec337c..b7de6ed73ca9117ea281746408234d212aac62ff 100644 (file)
@@ -1,12 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * (C) Copyright 2012 Henrik Nordstrom <henrik@henriknordstrom.net>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 enum axp209_reg {
        AXP209_POWER_STATUS = 0x00,
        AXP209_CHIP_VERSION = 0x03,
+       AXP209_OUTPUT_CTRL = 0x12,
        AXP209_DCDC2_VOLTAGE = 0x23,
        AXP209_DCDC3_VOLTAGE = 0x27,
        AXP209_LDO24_VOLTAGE = 0x28,
@@ -23,6 +23,13 @@ enum axp209_reg {
 #define AXP209_POWER_STATUS_ON_BY_DC   (1 << 0)
 #define AXP209_POWER_STATUS_VBUS_USABLE        (1 << 4)
 
+#define AXP209_OUTPUT_CTRL_EXTEN       (1 << 0)
+#define AXP209_OUTPUT_CTRL_DCDC3       (1 << 1)
+#define AXP209_OUTPUT_CTRL_LDO2                (1 << 2)
+#define AXP209_OUTPUT_CTRL_LDO4                (1 << 3)
+#define AXP209_OUTPUT_CTRL_DCDC2       (1 << 4)
+#define AXP209_OUTPUT_CTRL_LDO3                (1 << 6)
+
 #define AXP209_IRQ5_PEK_UP             (1 << 6)
 #define AXP209_IRQ5_PEK_DOWN           (1 << 5)