Lines Matching +full:ldo +full:-

1 // SPDX-License-Identifier: GPL-2.0+
51 return data->voltage_time_dcdc; in atc260x_dcdc_set_voltage_time_sel()
63 return data->voltage_time_ldo; in atc260x_ldo_set_voltage_time_sel()
152 * in the vendor's driver implementation (xapp-le-kernel).
227 .name = "LDO"#num, \
228 .supply_name = "ldo"#num, \
229 .of_match = of_match_ptr("ldo"#num), \
246 .name = "LDO"#num, \
247 .supply_name = "ldo"#num, \
248 .of_match = of_match_ptr("ldo"#num), \
263 .name = "LDO"#num, \
264 .supply_name = "ldo"#num, \
265 .of_match = of_match_ptr("ldo"#num), \
377 .name = "LDO"#num, \
378 .supply_name = "ldo"#num, \
379 .of_match = of_match_ptr("ldo"#num), \
396 .name = "LDO"#num, \
397 .supply_name = "ldo"#num, \
398 .of_match = of_match_ptr("ldo"#num), \
417 .name = "LDO"#num, \
418 .supply_name = "ldo"#num, \
419 .of_match = of_match_ptr("ldo"#num), \
439 .name = "LDO"#num, \
440 .supply_name = "ldo"#num, \
441 .of_match = of_match_ptr("ldo"#num), \
475 struct atc260x *atc260x = dev_get_drvdata(pdev->dev.parent); in atc260x_regulator_probe()
476 struct device *dev = atc260x->dev; in atc260x_regulator_probe()
484 atc260x_data = devm_kzalloc(&pdev->dev, sizeof(*atc260x_data), GFP_KERNEL); in atc260x_regulator_probe()
486 return -ENOMEM; in atc260x_regulator_probe()
488 atc260x_data->voltage_time_dcdc = 350; in atc260x_regulator_probe()
489 atc260x_data->voltage_time_ldo = 800; in atc260x_regulator_probe()
491 switch (atc260x->ic_type) { in atc260x_regulator_probe()
495 atc2603c_ver_b = atc260x->ic_ver == ATC260X_B; in atc260x_regulator_probe()
498 atc260x_data->voltage_time_dcdc = 250; in atc260x_regulator_probe()
503 dev_err(dev, "unsupported ATC260X ID %d\n", atc260x->ic_type); in atc260x_regulator_probe()
504 return -EINVAL; in atc260x_regulator_probe()
508 config.regmap = atc260x->regmap; in atc260x_regulator_probe()
514 atc260x_rdev = devm_regulator_register(&pdev->dev, in atc260x_regulator_probe()
518 atc260x_rdev = devm_regulator_register(&pdev->dev, in atc260x_regulator_probe()
533 .name = "atc260x-regulator",