1 /* 2 * Copyright (c) 2023 Martin Kiepfer 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_AXP192_H_ 8 #define ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_AXP192_H_ 9 10 /** 11 * @defgroup regulator_axp192 AXP192 Devicetree helpers. 12 * @ingroup regulator_interface 13 * @{ 14 */ 15 16 /** 17 * @name AXP192 Regulator modes 18 * @{ 19 */ 20 /* DCDCs */ 21 #define AXP192_DCDC_MODE_AUTO 0x00U 22 #define AXP192_DCDC_MODE_PWM 0x01U 23 24 /** @} */ 25 26 /** @} */ 27 28 #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_AXP192_H_ */ 29