Searched +full:vsram +full:- +full:others (Results 1 – 5 of 5) sorted by relevance
/linux/Documentation/devicetree/bindings/regulator/ |
H A D | mediatek,mt6358-regulator.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/regulator/mediatek,mt6358-regulator.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Zhiyong Tao <zhiyong.tao@mediatek.com> 14 All voltage regulators provided by the PMIC are described as sub-nodes of 20 - const: mediatek,mt6358-regulator 21 - items: 22 - const: mediatek,mt6366-regulator 23 - const: mediatek,mt6358-regulator [all …]
|
H A D | mediatek,mt6357-regulator.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/regulator/mediatek,mt6357-regulator.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Chen Zhong <chen.zhong@mediatek.com> 11 - Fabien Parent <fabien.parent@linaro.org> 12 - Alexandre Mergnat <amergnat@baylibre.com> 17 - buck-<name> 18 - ldo-<name>. 22 "^buck-v(core|modem|pa|proc|s1)$": [all …]
|
/linux/arch/arm64/boot/dts/mediatek/ |
H A D | mt6357.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 7 #include <dt-bindings/input/input.h> 14 compatible = "mediatek,mt6357-auxadc"; 15 #io-channel-cells = <1>; 19 mt6357_vproc_reg: buck-vproc { 20 regulator-name = "vproc"; 21 regulator-min-microvolt = <518750>; 22 regulator-max-microvolt = <1312500>; 23 regulator-ramp-delay = <6250>; 24 regulator-enable-ramp-delay = <220>; [all …]
|
/linux/drivers/regulator/ |
H A D | mt6357-regulator.c | 1 // SPDX-License-Identifier: GPL-2.0 9 // Based on mt6397-regulator.c 20 #include <linux/regulator/mt6357-regulator.h> 47 .n_voltages = ((max) - (min)) / (step) + 1, \ 90 .n_voltages = ((max) - (min)) / (step) + 1, \ 120 * mt6357_get_buck_voltage_sel - get_voltage_sel for regmap users 133 ret = regmap_read(rdev->regmap, info->da_vsel_reg, ®val); in mt6357_get_buck_voltage_sel() 135 dev_err(&rdev->dev, in mt6357_get_buck_voltage_sel() 137 info->desc.name, ret); in mt6357_get_buck_voltage_sel() 141 regval &= info->da_vsel_mask; in mt6357_get_buck_voltage_sel() [all …]
|
H A D | mt6358-regulator.c | 1 // SPDX-License-Identifier: GPL-2.0 13 #include <linux/regulator/mt6358-regulator.h> 16 #include <dt-bindings/regulator/mediatek,mt6397-regulator.h> 48 .n_voltages = ((max) - (min)) / (step) + 1, \ 101 .n_voltages = ((max) - (min)) / (step) + 1, \ 143 .supply_name = "vsys-" match, \ 149 .n_voltages = ((max) - (min)) / (step) + 1, \ 202 .n_voltages = ((max) - (min)) / (step) + 1, \ 373 const struct mt6358_regulator_info *info = to_regulator_info(rdev->desc); in mt6358_get_buck_voltage_sel() 376 ret = regmap_read(rdev->regmap, info->da_vsel_reg, ®val); in mt6358_get_buck_voltage_sel() [all …]
|