Line data Source code
1 0 : /*
2 : * Copyright 2023 NXP
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_NXP_VREF_H
8 : #define ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_NXP_VREF_H
9 :
10 : /**
11 : * @defgroup regulator_nxp_vref Devicetree helpers
12 : * @ingroup regulator_interface
13 : * @{
14 : */
15 :
16 : /**
17 : * @name NXP VREF Regulator API Modes
18 : * @{
19 : */
20 0 : #define NXP_VREF_MODE_STANDBY 0
21 0 : #define NXP_VREF_MODE_LOW_POWER 1
22 0 : #define NXP_VREF_MODE_HIGH_POWER 2
23 0 : #define NXP_VREF_MODE_INTERNAL_REGULATOR 3
24 :
25 : /** @} */
26 :
27 : /** @} */
28 :
29 : #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_REGULATOR_NXP_VREF_H */
|