/Linux-v4.19/arch/arm/vfp/ |
D | vfpdouble.c | 207 vfp_propagate_nan(struct vfp_double *vdd, struct vfp_double *vdn, in vfp_propagate_nan() argument 239 *vdd = *nan; in vfp_propagate_nan() 270 struct vfp_double vdm, vdd; in vfp_double_fsqrt() local 276 struct vfp_double *vdp = &vdd; in vfp_double_fsqrt() 316 vdd.sign = 0; in vfp_double_fsqrt() 317 vdd.exponent = ((vdm.exponent - 1023) >> 1) + 1023; in vfp_double_fsqrt() 318 vdd.significand = (u64)vfp_estimate_sqrt_significand(vdm.exponent, vdm.significand >> 32) << 31; in vfp_double_fsqrt() 320 vfp_double_dump("sqrt estimate1", &vdd); in vfp_double_fsqrt() 323 vdd.significand += 2 + vfp_estimate_div128to64(vdm.significand, 0, vdd.significand); in vfp_double_fsqrt() 325 vfp_double_dump("sqrt estimate2", &vdd); in vfp_double_fsqrt() [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/regulator/ |
D | qcom,rpmh-regulator.txt | 46 - vdd-s1-supply 47 - vdd-s2-supply 48 - vdd-s3-supply 49 - vdd-s4-supply 55 - vdd-s5-supply 56 - vdd-s6-supply 57 - vdd-s7-supply 58 - vdd-s8-supply 59 - vdd-s9-supply 60 - vdd-s10-supply [all …]
|
D | regulator-max77620.txt | 129 regulator-name = "vdd-core"; 147 regulator-name = "vdd-pre-reg"; 153 regulator-name = "vdd-1v8"; 169 regulator-name = "vdd-pex"; 181 regulator-name = "vdd-cam-hv"; 187 regulator-name = "vdd-rtc"; 201 regulator-name = "vdd-ts"; 209 regulator-name = "vdd-gen-pll-edp"; 217 regulator-name = "vdd-hdmi-dp";
|
/Linux-v4.19/drivers/hwmon/ |
D | mcp3021.c | 53 u32 vdd; /* supply and reference voltage in millivolt */ member 86 return DIV_ROUND_CLOSEST(data->vdd * val, 1 << data->output_res); in volts_from_reg() 126 &data->vdd)) in mcp3021_probe() 127 data->vdd /= 1000; in mcp3021_probe() 129 data->vdd = MCP3021_VDD_REF_DEFAULT; in mcp3021_probe() 134 data->vdd = *pdata; in mcp3021_probe() 136 data->vdd = MCP3021_VDD_REF_DEFAULT; in mcp3021_probe() 153 if (data->vdd > MCP3021_VDD_REF_MAX || data->vdd < MCP3021_VDD_REF_MIN) in mcp3021_probe()
|
/Linux-v4.19/Documentation/devicetree/bindings/sound/ |
D | qcom,wcd9335.txt | 58 - vdd-buck-supply: 63 - vdd-buck-sido-supply: 68 - vdd-rx-supply: 73 - vdd-tx-supply: 78 - vdd-vbat-supply: 83 - vdd-micbias-supply: 88 - vdd-io-supply: 117 vdd-buck-supply = <&pm8994_s4>; 118 vdd-rx-supply = <&pm8994_s4>; 119 vdd-buck-sido-supply = <&pm8994_s4>; [all …]
|
D | ak4104.txt | 11 - vdd-supply : A regulator node, providing 2.7V - 3.6V 24 vdd-supply = <&vdd_3v3_reg>;
|
/Linux-v4.19/drivers/gpu/drm/bridge/ |
D | dumb-vga-dac.c | 28 struct regulator *vdd; member 136 if (vga->vdd) in dumb_vga_enable() 137 ret = regulator_enable(vga->vdd); in dumb_vga_enable() 147 if (vga->vdd) in dumb_vga_disable() 148 regulator_disable(vga->vdd); in dumb_vga_disable() 188 vga->vdd = devm_regulator_get_optional(&pdev->dev, "vdd"); in dumb_vga_probe() 189 if (IS_ERR(vga->vdd)) { in dumb_vga_probe() 190 int ret = PTR_ERR(vga->vdd); in dumb_vga_probe() 193 vga->vdd = NULL; in dumb_vga_probe()
|
/Linux-v4.19/drivers/iio/light/ |
D | cm3605.c | 45 struct regulator *vdd; member 212 cm3605->vdd = devm_regulator_get(dev, "vdd"); in cm3605_probe() 213 if (IS_ERR(cm3605->vdd)) { in cm3605_probe() 215 return PTR_ERR(cm3605->vdd); in cm3605_probe() 217 ret = regulator_enable(cm3605->vdd); in cm3605_probe() 262 regulator_disable(cm3605->vdd); in cm3605_probe() 275 regulator_disable(cm3605->vdd); in cm3605_remove() 286 regulator_disable(cm3605->vdd); in cm3605_pm_suspend() 297 ret = regulator_enable(cm3605->vdd); in cm3605_pm_resume()
|
/Linux-v4.19/drivers/mmc/core/ |
D | debugfs.c | 64 seq_printf(s, "vdd:\t\t%u ", ios->vdd); in mmc_ios_show() 65 if ((1 << ios->vdd) & MMC_VDD_165_195) in mmc_ios_show() 67 else if (ios->vdd < (ARRAY_SIZE(vdd_str) - 1) in mmc_ios_show() 68 && vdd_str[ios->vdd] && vdd_str[ios->vdd + 1]) in mmc_ios_show() 69 seq_printf(s, "(%s ~ %s V)\n", vdd_str[ios->vdd], in mmc_ios_show() 70 vdd_str[ios->vdd + 1]); in mmc_ios_show()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/volt/ |
D | gk20a.c | 98 uv = regulator_get_voltage(volt->vdd); in gk20a_volt_vid_get() 114 return regulator_set_voltage(volt->vdd, volt->base.vid[vid].uv, 1200000); in gk20a_volt_vid_set() 122 int prev_uv = regulator_get_voltage(volt->vdd); in gk20a_volt_set_id() 156 uv = regulator_get_voltage(tdev->vdd); in gk20a_volt_ctor() 159 volt->vdd = tdev->vdd; in gk20a_volt_ctor()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/engine/device/ |
D | tegra.c | 35 if (tdev->vdd) { in nvkm_device_tegra_power_up() 36 ret = regulator_enable(tdev->vdd); in nvkm_device_tegra_power_up() 78 if (tdev->vdd) in nvkm_device_tegra_power_up() 79 regulator_disable(tdev->vdd); in nvkm_device_tegra_power_up() 95 if (tdev->vdd) { in nvkm_device_tegra_power_down() 96 ret = regulator_disable(tdev->vdd); in nvkm_device_tegra_power_down() 291 tdev->vdd = devm_regulator_get(&pdev->dev, "vdd"); in nvkm_device_tegra_new() 292 if (IS_ERR(tdev->vdd)) { in nvkm_device_tegra_new() 293 ret = PTR_ERR(tdev->vdd); in nvkm_device_tegra_new()
|
/Linux-v4.19/drivers/leds/ |
D | leds-cpcap.c | 75 struct regulator *vdd; member 97 err = regulator_enable(led->vdd); in cpcap_led_set_power() 99 err = regulator_disable(led->vdd); in cpcap_led_set_power() 193 led->vdd = devm_regulator_get(&pdev->dev, "vdd"); in cpcap_led_probe() 194 if (IS_ERR(led->vdd)) { in cpcap_led_probe() 195 err = PTR_ERR(led->vdd); in cpcap_led_probe()
|
/Linux-v4.19/drivers/gpu/drm/msm/disp/mdp5/ |
D | mdp5_mdss.c | 30 struct regulator *vdd; member 204 regulator_disable(mdp5_mdss->vdd); in mdp5_mdss_destroy() 254 mdp5_mdss->vdd = devm_regulator_get(dev->dev, "vdd"); in mdp5_mdss_init() 255 if (IS_ERR(mdp5_mdss->vdd)) { in mdp5_mdss_init() 256 ret = PTR_ERR(mdp5_mdss->vdd); in mdp5_mdss_init() 260 ret = regulator_enable(mdp5_mdss->vdd); in mdp5_mdss_init() 287 regulator_disable(mdp5_mdss->vdd); in mdp5_mdss_init()
|
/Linux-v4.19/include/linux/platform_data/ |
D | mmc-omap.h | 91 int power_on, int vdd); 96 int power_on, int vdd); 99 int power_on, int vdd);
|
/Linux-v4.19/Documentation/devicetree/bindings/media/ |
D | samsung-s5c73m3.txt | 17 - vdd-int-supply : digital power supply (1.2V); 19 - vdd-reg-supply : regulator input power supply (2.8V); 22 - vdd-af-supply : lens power supply (2.8V); 70 vdd-int-supply = <&buck9_reg>; 72 vdd-reg-supply = <&cam_io_reg>; 75 vdd-af-supply = <&cam_af_reg>;
|
/Linux-v4.19/drivers/input/touchscreen/ |
D | bu21029_ts.c | 159 struct regulator *vdd; member 269 error = regulator_enable(bu21029->vdd); in bu21029_start_chip() 319 regulator_disable(bu21029->vdd); in bu21029_start_chip() 331 regulator_disable(bu21029->vdd); in bu21029_stop_chip() 362 bu21029->vdd = devm_regulator_get(&client->dev, "vdd"); in bu21029_probe() 363 if (IS_ERR(bu21029->vdd)) { in bu21029_probe() 364 error = PTR_ERR(bu21029->vdd); in bu21029_probe()
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | ste-href-tvk1281618.dtsi | 21 vdd-supply = <&ab8500_ldo_aux1_reg>; 98 vdd-supply = <&ab8500_ldo_aux1_reg>; 118 vdd-supply = <&ab8500_ldo_aux1_reg>; 137 vdd-supply = <&ab8500_ldo_aux1_reg>; 171 vdd-supply = <&ab8500_ldo_aux1_reg>; 183 vdd-supply = <&ab8500_ldo_aux1_reg>; 195 vdd-supply = <&ab8500_ldo_aux1_reg>;
|
/Linux-v4.19/arch/arm/plat-samsung/ |
D | adc.c | 74 struct regulator *vdd; member 350 adc->vdd = devm_regulator_get(dev, "vdd"); in s3c_adc_probe() 351 if (IS_ERR(adc->vdd)) { in s3c_adc_probe() 353 return PTR_ERR(adc->vdd); in s3c_adc_probe() 380 ret = regulator_enable(adc->vdd); in s3c_adc_probe() 409 regulator_disable(adc->vdd); in s3c_adc_remove() 430 regulator_disable(adc->vdd); in s3c_adc_suspend() 443 ret = regulator_enable(adc->vdd); in s3c_adc_resume()
|
/Linux-v4.19/arch/arm/mach-omap2/ |
D | board-n8x0.c | 195 int power_on, int vdd) in n8x0_mmc_set_power_menelaus() argument 201 power_on ? "on" : "off", vdd); in n8x0_mmc_set_power_menelaus() 206 switch (1 << vdd) { in n8x0_mmc_set_power_menelaus() 228 switch (1 << vdd) { in n8x0_mmc_set_power_menelaus() 282 int vdd) in n8x0_mmc_set_power() argument 285 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd); in n8x0_mmc_set_power()
|
/Linux-v4.19/Documentation/devicetree/bindings/iio/dac/ |
D | mcp4725.txt | 6 - vdd-supply: Phandle to the Vdd power supply. This supply is used as a 25 vdd-supply = <&vdac_vdd>; 32 vdd-supply = <&vdac_vdd>;
|
/Linux-v4.19/Documentation/hwmon/ |
D | adt7411 | 20 converter which measures 1 temperature, vdd and 8 input voltages. It has an 29 in0_input - vdd voltage input 35 adc_ref_vdd - Use vdd as reference instead of 2.25 V
|
/Linux-v4.19/Documentation/devicetree/bindings/net/nfc/ |
D | trf7970a.txt | 19 - vdd-io-supply: Regulator specifying voltage for vdd-io 37 vdd-io-supply = <&ldo2_reg>;
|
/Linux-v4.19/Documentation/devicetree/bindings/iio/pressure/ |
D | ms5611.txt | 10 - vdd-supply: an optional regulator that needs to be on to provide VDD 18 vdd-supply = <&ldo_3v3_gnss>;
|
/Linux-v4.19/Documentation/devicetree/bindings/iio/accel/ |
D | kionix,kxsd9.txt | 8 - vdd-supply: The input supply for VDD 21 vdd-supply = <&baz>;
|
/Linux-v4.19/Documentation/devicetree/bindings/input/ |
D | cypress,tm2-touchkey.txt | 9 - vdd-supply : power supply for IC 3.3V 23 vdd-supply=<&ldo33_reg>;
|