Searched +full:mtp +full:- +full:sel +full:- +full:high (Results 1 – 2 of 2) sorted by relevance
1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause3 ---5 $schema: http://devicetree.org/meta-schemas/core.yaml#10 - Alina Yu <alina_yu@richtek.com>14 multi-configurable synchronous buck converters and two LDOs.16 Bucks support "regulator-allowed-modes" and "regulator-mode". The former defines the permitted25 0 - Auto mode for power saving, which reducing the switching frequency at light load condition26 to maintain high frequency.27 …1 - FCCM to meet the strict voltage regulation accuracy, which keeping constant switching frequenc…35 - richtek,rtq2208[all …]
1 // SPDX-License-Identifier: GPL-2.0+95 (const struct rtq2208_regulator_desc *)rdev->desc; in rtq2208_set_mode()106 return -EINVAL; in rtq2208_set_mode()109 shift = ffs(rdesc->mode_mask) - 1; in rtq2208_set_mode()110 return regmap_update_bits(rdev->regmap, rdesc->mode_reg, in rtq2208_set_mode()111 rdesc->mode_mask, val << shift); in rtq2208_set_mode()117 (const struct rtq2208_regulator_desc *)rdev->desc; in rtq2208_get_mode()121 ret = regmap_read(rdev->regmap, rdesc->mode_reg, &mode_val); in rtq2208_get_mode()125 return (mode_val & rdesc->mode_mask) ? REGULATOR_MODE_FAST : REGULATOR_MODE_NORMAL; in rtq2208_get_mode()130 const struct regulator_desc *desc = rdev->desc; in rtq2208_set_ramp_delay()[all …]