Lines Matching full:base
26 VREF_Type *base; member
35 VREF_Type *const base = config->base; in regulator_nxp_vref_enable() local
37 volatile uint32_t *const csr = &base->CSR; in regulator_nxp_vref_enable()
60 VREF_Type *const base = config->base; in regulator_nxp_vref_disable() local
66 base->CSR &= ~(VREF_CSR_BUF21EN_MASK | VREF_CSR_HCBGEN_MASK | VREF_CSR_LPBGEN_MASK); in regulator_nxp_vref_disable()
74 VREF_Type *const base = config->base; in regulator_nxp_vref_set_mode() local
75 uint32_t csr = base->CSR; in regulator_nxp_vref_set_mode()
101 base->CSR = csr; in regulator_nxp_vref_set_mode()
111 VREF_Type *const base = config->base; in regulator_nxp_vref_get_mode() local
112 uint32_t csr = base->CSR; in regulator_nxp_vref_get_mode()
143 VREF_Type *const base = config->base; in regulator_nxp_vref_set_voltage() local
152 base->UTRIM &= ~VREF_UTRIM_TRIM2V1_MASK; in regulator_nxp_vref_set_voltage()
153 base->UTRIM |= VREF_UTRIM_TRIM2V1_MASK & idx; in regulator_nxp_vref_set_voltage()
162 VREF_Type *const base = config->base; in regulator_nxp_vref_get_voltage() local
167 idx = (base->UTRIM & VREF_UTRIM_TRIM2V1_MASK) >> VREF_UTRIM_TRIM2V1_SHIFT; in regulator_nxp_vref_get_voltage()
188 VREF_Type *const base = config->base; in regulator_nxp_vref_init() local
199 base->CSR |= VREF_CSR_ICOMPEN_MASK; in regulator_nxp_vref_init()
203 base->UTRIM = 0; in regulator_nxp_vref_init()
213 .base = (VREF_Type *) DT_INST_REG_ADDR(inst), \