Symbol: regulator
sys/arm64/rockchip/rk3568_pcie.c
100
regulator_t regulator;
sys/arm64/rockchip/rk3568_pcie.c
161
if (sc->regulator != NULL) {
sys/arm64/rockchip/rk3568_pcie.c
162
if (regulator_enable(sc->regulator)) {
sys/arm64/rockchip/rk3568_pcie.c
278
if (sc->regulator)
sys/arm64/rockchip/rk3568_pcie.c
279
regulator_release(sc->regulator);
sys/arm64/rockchip/rk3568_pcie.c
331
&sc->regulator);
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
413
bhnd_pmu_set_voltage_raw_method(device_t dev, bhnd_pmu_regulator regulator,
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
421
switch (regulator) {
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
442
bhnd_pmu_enable_regulator_method(device_t dev, bhnd_pmu_regulator regulator)
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
449
switch (regulator) {
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
466
bhnd_pmu_disable_regulator_method(device_t dev, bhnd_pmu_regulator regulator)
sys/dev/bhnd/cores/pmu/bhnd_pmu.c
473
switch (regulator) {
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
163
bhnd_pmu_set_voltage_raw(device_t dev, bhnd_pmu_regulator regulator,
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
166
return (BHND_PMU_SET_VOLTAGE_RAW(dev, regulator, value));
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
179
bhnd_pmu_enable_regulator(device_t dev, bhnd_pmu_regulator regulator)
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
181
return (BHND_PMU_ENABLE_REGULATOR(dev, regulator));
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
194
bhnd_pmu_disable_regulator(device_t dev, bhnd_pmu_regulator regulator)
sys/dev/bhnd/cores/pmu/bhnd_pmu.h
196
return (BHND_PMU_DISABLE_REGULATOR(dev, regulator));
sys/dev/regulator/regulator.c
135
TAILQ_ENTRY(regulator) link; /* Consumers list entry */
sys/dev/regulator/regulator.c
54
SYSCTL_NODE(_hw, OID_AUTO, regulator, CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
sys/dev/regulator/regulator.c
62
struct regulator;
sys/dev/regulator/regulator.c
66
typedef TAILQ_HEAD(regulator_list, regulator) regulator_list_t;
sys/dev/regulator/regulator.c
784
regnode_set_voltage_checked(struct regnode *regnode, struct regulator *reg,
sys/dev/regulator/regulator.c
790
struct regulator *tmp;
sys/dev/regulator/regulator.c
903
struct regulator *reg;
sys/dev/regulator/regulator.c
907
reg = malloc(sizeof(struct regulator), M_REGULATOR,
sys/dev/regulator/regulator.h
129
regulator_t *regulator);
sys/dev/regulator/regulator.h
131
regulator_t *regulator);
sys/dev/regulator/regulator.h
132
int regulator_release(regulator_t regulator);
sys/dev/regulator/regulator.h
133
const char *regulator_get_name(regulator_t regulator);
sys/dev/regulator/regulator.h
47
typedef struct regulator *regulator_t;