| /drivers/regulator/ |
| A D | twl6030-regulator.c | 278 return vsel; in twl6030ldo_get_voltage_sel() 408 vsel = 0; in twl6030smps_map_voltage() 411 vsel++; in twl6030smps_map_voltage() 417 vsel = 62; in twl6030smps_map_voltage() 419 vsel = 61; in twl6030smps_map_voltage() 431 vsel = 0; in twl6030smps_map_voltage() 434 vsel++; in twl6030smps_map_voltage() 452 vsel = 0; in twl6030smps_map_voltage() 455 vsel++; in twl6030smps_map_voltage() 460 vsel = 0; in twl6030smps_map_voltage() [all …]
|
| A D | twl-regulator.c | 386 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE); in twl4030ldo_get_voltage_sel() local 388 if (vsel < 0) in twl4030ldo_get_voltage_sel() 389 return vsel; in twl4030ldo_get_voltage_sel() 391 vsel &= info->table_len - 1; in twl4030ldo_get_voltage_sel() 392 return vsel; in twl4030ldo_get_voltage_sel() 415 int vsel = DIV_ROUND_UP(min_uV - 600000, 12500); in twl4030smps_set_voltage() local 417 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS_4030, vsel); in twl4030smps_set_voltage() 425 int vsel; in twl4030smps_get_voltage() local 427 vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER, in twl4030smps_get_voltage() 430 return vsel * 12500 + 600000; in twl4030smps_get_voltage()
|
| A D | wm831x-dcdc.c | 227 unsigned vsel) in wm831x_buckv_set_voltage_sel() argument 236 if (dcdc->dvs_gpiod && dcdc->on_vsel == vsel) in wm831x_buckv_set_voltage_sel() 239 if (dcdc->dvs_gpiod && dcdc->dvs_vsel == vsel) in wm831x_buckv_set_voltage_sel() 246 dcdc->on_vsel = vsel; in wm831x_buckv_set_voltage_sel() 262 if (vsel > dcdc->dvs_vsel) { in wm831x_buckv_set_voltage_sel() 265 vsel); in wm831x_buckv_set_voltage_sel() 267 dcdc->dvs_vsel = vsel; in wm831x_buckv_set_voltage_sel() 282 int vsel; in wm831x_buckv_set_suspend_voltage() local 284 vsel = regulator_map_voltage_linear_range(rdev, uV, uV); in wm831x_buckv_set_suspend_voltage() 285 if (vsel < 0) in wm831x_buckv_set_suspend_voltage() [all …]
|
| A D | rt4803.c | 111 unsigned int reg, vsel; in rt4803_set_suspend_voltage() local 118 vsel = (uV - rdev->desc->min_uV) / rdev->desc->uV_step; in rt4803_set_suspend_voltage() 119 vsel <<= ffs(RT4803_VSEL_MASK) - 1; in rt4803_set_suspend_voltage() 121 return regmap_update_bits(regmap, reg, RT4803_VSEL_MASK, vsel); in rt4803_set_suspend_voltage()
|
| A D | tps51632-regulator.c | 110 int vsel; in tps51632_init_dcdc() local 116 vsel = TPS51632_VOLT_VSEL(pdata->base_voltage_uV); in tps51632_init_dcdc() 117 ret = regmap_write(tps->regmap, TPS51632_VOLTAGE_BASE_REG, vsel); in tps51632_init_dcdc() 140 vsel = TPS51632_VOLT_VSEL(pdata->max_voltage_uV); in tps51632_init_dcdc() 142 vsel); in tps51632_init_dcdc()
|
| A D | rt6160-regulator.c | 136 int vsel; in rt6160_set_suspend_voltage() local 138 vsel = regulator_map_voltage_linear(rdev, uV, uV); in rt6160_set_suspend_voltage() 139 if (vsel < 0) in rt6160_set_suspend_voltage() 140 return vsel; in rt6160_set_suspend_voltage() 148 RT6160_VSEL_MASK, vsel); in rt6160_set_suspend_voltage()
|
| A D | sy8106a-regulator.c | 70 unsigned int reg, vsel; in sy8106a_i2c_probe() local 106 vsel = (fixed_voltage / 1000 - SY8106A_MIN_MV) / in sy8106a_i2c_probe() 110 vsel | SY8106A_GO_BIT); in sy8106a_i2c_probe()
|
| A D | bd71815-regulator.c | 426 #define BD71815_BUCK_REG(_name, _id, vsel, ereg, min, max, step, _dvs) \ argument 439 .vsel_reg = (vsel), \ 448 #define BD71815_BUCK12_REG(_name, _id, vsel, ereg, min, max, step, \ argument 462 .vsel_reg = (vsel), \ 494 #define BD71815_LDO_REG(_name, _id, vsel, ereg, emsk, min, max, step, \ argument 508 .vsel_reg = (vsel), \
|
| A D | rt5739.c | 104 unsigned int reg, vsel; in rt5739_set_suspend_voltage() local 117 vsel = (uV - desc->min_uV) / desc->uV_step; in rt5739_set_suspend_voltage() 118 return regmap_write(regmap, reg, vsel); in rt5739_set_suspend_voltage()
|
| A D | tps65910-regulator.c | 598 int id = rdev_get_id(dev), vsel; in tps65910_set_voltage_dcdc_sel() local 606 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3; in tps65910_set_voltage_dcdc_sel() 610 regmap_write(regmap, TPS65910_VDD1_OP, vsel); in tps65910_set_voltage_dcdc_sel() 616 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3; in tps65910_set_voltage_dcdc_sel() 620 regmap_write(regmap, TPS65910_VDD2_OP, vsel); in tps65910_set_voltage_dcdc_sel() 623 vsel = selector + 3; in tps65910_set_voltage_dcdc_sel() 624 regmap_write(regmap, TPS65911_VDDCTRL_OP, vsel); in tps65910_set_voltage_dcdc_sel()
|
| A D | rc5t583-regulator.c | 39 int vsel = regulator_get_voltage_sel_regmap(rdev); in rc5t583_regulator_enable_time() local 40 int curr_uV = regulator_list_voltage_linear(rdev, vsel); in rc5t583_regulator_enable_time()
|
| A D | max8973-regulator.c | 173 unsigned vsel) in max8973_dcdc_set_voltage_sel() argument 186 found = find_voltage_set_register(max, vsel, in max8973_dcdc_set_voltage_sel() 191 MAX8973_VOUT_MASK, vsel); in max8973_dcdc_set_voltage_sel() 198 max->curr_vout_val[gpio_val] = vsel; in max8973_dcdc_set_voltage_sel()
|
| A D | tps62360-regulator.c | 110 int vsel; in tps62360_dcdc_get_voltage_sel() local 120 vsel = (int)data & tps->voltage_reg_mask; in tps62360_dcdc_get_voltage_sel() 121 return vsel; in tps62360_dcdc_get_voltage_sel()
|
| A D | lp8788-buck.c | 110 pinstate = dvs->vsel == DVS_SEL_V0 ? DVS_LOW : DVS_HIGH; in lp8788_buck1_set_dvs() 122 switch (dvs->vsel) { in lp8788_buck2_set_dvs()
|
| A D | lp872x.c | 324 lp872x_set_dvs(lp, dvs->vsel, dvs->gpio); in lp872x_buck_set_voltage_sel() 841 of_property_read_u8(np, "ti,dvs-vsel", (u8 *)&pdata->dvs->vsel); in lp872x_populate_pdata_from_dt()
|
| A D | palmas-regulator.c | 736 if (rinfo->vsel_addr && reg_init->vsel) { in palmas_smps_init() 738 reg = reg_init->vsel; in palmas_smps_init() 1542 rinit->vsel = PALMAS_SMPS12_VOLTAGE_RANGE; in palmas_dt_to_pdata()
|
| /drivers/media/dvb-frontends/ |
| A D | lnbh25.c | 86 const char *vsel; in lnbh25_set_voltage() local 98 vsel = "Off"; in lnbh25_set_voltage() 102 vsel = "13V"; in lnbh25_set_voltage() 106 vsel = "18V"; in lnbh25_set_voltage() 114 __func__, vsel, priv->i2c_address, in lnbh25_set_voltage()
|
| /drivers/clk/samsung/ |
| A D | clk-pll.h | 96 .vsel = (_vsel), \ 109 .vsel = (_vsel), \ 123 unsigned int vsel; member
|
| A D | clk-pll.c | 856 con0 |= rate->vsel << PLL46XX_VSEL_SHIFT; in samsung_pll46xx_set_rate()
|
| /drivers/pcmcia/ |
| A D | i82365.c | 405 u_char vsel = i365_get(s, VG469_VSELECT); in vg46x_set_opts() local 406 if (vsel & VG469_VSEL_EXT_STAT) { in vg46x_set_opts() 408 if (vsel & VG469_VSEL_EXT_BUS) in vg46x_set_opts()
|
| /drivers/clk/tegra/ |
| A D | clk-dfll.c | 771 unsigned int vsel; in dfll_init_out_if() local 773 vsel = DIV_ROUND_UP((vinit - vmin), vstep); in dfll_init_out_if() 774 dfll_force_output(td, vsel); in dfll_init_out_if()
|
| /drivers/power/supply/ |
| A D | wm831x_power.c | 290 pdata->vsel, ®2, in wm831x_config_battery()
|