1 /* 2 * Copyright (c) 2024 Silicon Laboratories Inc. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_SILABS_DCDC_H_ 7 #define ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_SILABS_DCDC_H_ 8 9 /** 10 * @defgroup regulator_silabs_dcdc Silabs DCDC devicetree helpers. 11 * @ingroup regulator_interface 12 * @{ 13 */ 14 15 /** 16 * @name Silabs DCDC modes 17 * @{ 18 */ 19 /** Buck mode */ 20 #define SILABS_DCDC_MODE_BUCK 0 21 /** Boost mode */ 22 #define SILABS_DCDC_MODE_BOOST 1 23 /** @} */ 24 25 /** @} */ 26 27 #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_SILABS_DCDC_H_ */ 28