12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
25ec271e7SBalaji Rao /* NXP PCF50633 PMIC Driver
35ec271e7SBalaji Rao *
45ec271e7SBalaji Rao * (C) 2006-2008 by Openmoko, Inc.
55ec271e7SBalaji Rao * Author: Balaji Rao <balajirrao@openmoko.org>
65ec271e7SBalaji Rao * All rights reserved.
75ec271e7SBalaji Rao *
85ec271e7SBalaji Rao * Broken down from monstrous PCF50633 driver mainly by
95ec271e7SBalaji Rao * Harald Welte and Andy Green and Werner Almesberger
105ec271e7SBalaji Rao */
115ec271e7SBalaji Rao
125ec271e7SBalaji Rao #include <linux/kernel.h>
135ec271e7SBalaji Rao #include <linux/module.h>
145ec271e7SBalaji Rao #include <linux/init.h>
155ec271e7SBalaji Rao #include <linux/device.h>
165ec271e7SBalaji Rao #include <linux/err.h>
175ec271e7SBalaji Rao #include <linux/platform_device.h>
185ec271e7SBalaji Rao
195ec271e7SBalaji Rao #include <linux/mfd/pcf50633/core.h>
205ec271e7SBalaji Rao #include <linux/mfd/pcf50633/pmic.h>
215ec271e7SBalaji Rao
2205cf34c1SAxel Lin #define PCF50633_REGULATOR(_name, _id, _min_uV, _uV_step, _min_sel, _n) \
235ec271e7SBalaji Rao { \
245ec271e7SBalaji Rao .name = _name, \
2511bb88ecSAxel Lin .id = PCF50633_REGULATOR_##_id, \
265ec271e7SBalaji Rao .ops = &pcf50633_regulator_ops, \
27a6576cffSLars-Peter Clausen .n_voltages = _n, \
2805cf34c1SAxel Lin .min_uV = _min_uV, \
2905cf34c1SAxel Lin .uV_step = _uV_step, \
3005cf34c1SAxel Lin .linear_min_sel = _min_sel, \
315ec271e7SBalaji Rao .type = REGULATOR_VOLTAGE, \
325ec271e7SBalaji Rao .owner = THIS_MODULE, \
3398667b43SAxel Lin .vsel_reg = PCF50633_REG_##_id##OUT, \
3498667b43SAxel Lin .vsel_mask = 0xff, \
3511bb88ecSAxel Lin .enable_reg = PCF50633_REG_##_id##OUT + 1, \
3611bb88ecSAxel Lin .enable_mask = PCF50633_REGULATOR_ON, \
375ec271e7SBalaji Rao }
385ec271e7SBalaji Rao
390be79431SBhumika Goyal static const struct regulator_ops pcf50633_regulator_ops = {
40368a7887SAxel Lin .set_voltage_sel = regulator_set_voltage_sel_regmap,
4198667b43SAxel Lin .get_voltage_sel = regulator_get_voltage_sel_regmap,
4205cf34c1SAxel Lin .list_voltage = regulator_list_voltage_linear,
4305cf34c1SAxel Lin .map_voltage = regulator_map_voltage_linear,
4411bb88ecSAxel Lin .enable = regulator_enable_regmap,
4511bb88ecSAxel Lin .disable = regulator_disable_regmap,
4611bb88ecSAxel Lin .is_enabled = regulator_is_enabled_regmap,
475ec271e7SBalaji Rao };
485ec271e7SBalaji Rao
492ac2d7d8SAxel Lin static const struct regulator_desc regulators[] = {
5005cf34c1SAxel Lin [PCF50633_REGULATOR_AUTO] =
5105cf34c1SAxel Lin PCF50633_REGULATOR("auto", AUTO, 1800000, 25000, 0x2f, 128),
5205cf34c1SAxel Lin [PCF50633_REGULATOR_DOWN1] =
5305cf34c1SAxel Lin PCF50633_REGULATOR("down1", DOWN1, 625000, 25000, 0, 96),
5405cf34c1SAxel Lin [PCF50633_REGULATOR_DOWN2] =
5505cf34c1SAxel Lin PCF50633_REGULATOR("down2", DOWN2, 625000, 25000, 0, 96),
5605cf34c1SAxel Lin [PCF50633_REGULATOR_LDO1] =
5705cf34c1SAxel Lin PCF50633_REGULATOR("ldo1", LDO1, 900000, 100000, 0, 28),
5805cf34c1SAxel Lin [PCF50633_REGULATOR_LDO2] =
5905cf34c1SAxel Lin PCF50633_REGULATOR("ldo2", LDO2, 900000, 100000, 0, 28),
6005cf34c1SAxel Lin [PCF50633_REGULATOR_LDO3] =
6105cf34c1SAxel Lin PCF50633_REGULATOR("ldo3", LDO3, 900000, 100000, 0, 28),
6205cf34c1SAxel Lin [PCF50633_REGULATOR_LDO4] =
6305cf34c1SAxel Lin PCF50633_REGULATOR("ldo4", LDO4, 900000, 100000, 0, 28),
6405cf34c1SAxel Lin [PCF50633_REGULATOR_LDO5] =
6505cf34c1SAxel Lin PCF50633_REGULATOR("ldo5", LDO5, 900000, 100000, 0, 28),
6605cf34c1SAxel Lin [PCF50633_REGULATOR_LDO6] =
6705cf34c1SAxel Lin PCF50633_REGULATOR("ldo6", LDO6, 900000, 100000, 0, 28),
6805cf34c1SAxel Lin [PCF50633_REGULATOR_HCLDO] =
6905cf34c1SAxel Lin PCF50633_REGULATOR("hcldo", HCLDO, 900000, 100000, 0, 28),
7005cf34c1SAxel Lin [PCF50633_REGULATOR_MEMLDO] =
7105cf34c1SAxel Lin PCF50633_REGULATOR("memldo", MEMLDO, 900000, 100000, 0, 28),
725ec271e7SBalaji Rao };
735ec271e7SBalaji Rao
pcf50633_regulator_probe(struct platform_device * pdev)74a5023574SBill Pemberton static int pcf50633_regulator_probe(struct platform_device *pdev)
755ec271e7SBalaji Rao {
765ec271e7SBalaji Rao struct regulator_dev *rdev;
775ec271e7SBalaji Rao struct pcf50633 *pcf;
78c172708dSMark Brown struct regulator_config config = { };
795ec271e7SBalaji Rao
805ec271e7SBalaji Rao /* Already set by core driver */
8198c2e490SLars-Peter Clausen pcf = dev_to_pcf50633(pdev->dev.parent);
825ec271e7SBalaji Rao
83c172708dSMark Brown config.dev = &pdev->dev;
84dff91d0bSJingoo Han config.init_data = dev_get_platdata(&pdev->dev);
85c172708dSMark Brown config.driver_data = pcf;
8611bb88ecSAxel Lin config.regmap = pcf->regmap;
87c172708dSMark Brown
885e0165e5SJingoo Han rdev = devm_regulator_register(&pdev->dev, ®ulators[pdev->id],
895e0165e5SJingoo Han &config);
905ec271e7SBalaji Rao if (IS_ERR(rdev))
915ec271e7SBalaji Rao return PTR_ERR(rdev);
925ec271e7SBalaji Rao
9398c2e490SLars-Peter Clausen platform_set_drvdata(pdev, rdev);
9498c2e490SLars-Peter Clausen
955ec271e7SBalaji Rao if (pcf->pdata->regulator_registered)
965ec271e7SBalaji Rao pcf->pdata->regulator_registered(pcf, pdev->id);
975ec271e7SBalaji Rao
985ec271e7SBalaji Rao return 0;
995ec271e7SBalaji Rao }
1005ec271e7SBalaji Rao
1015ec271e7SBalaji Rao static struct platform_driver pcf50633_regulator_driver = {
1025ec271e7SBalaji Rao .driver = {
103561427f5SAxel Lin .name = "pcf50633-regulator",
104*259b93b2SDouglas Anderson .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1055ec271e7SBalaji Rao },
1065ec271e7SBalaji Rao .probe = pcf50633_regulator_probe,
1075ec271e7SBalaji Rao };
1085ec271e7SBalaji Rao
pcf50633_regulator_init(void)1095ec271e7SBalaji Rao static int __init pcf50633_regulator_init(void)
1105ec271e7SBalaji Rao {
1115ec271e7SBalaji Rao return platform_driver_register(&pcf50633_regulator_driver);
1125ec271e7SBalaji Rao }
1135a1b22beSMark Brown subsys_initcall(pcf50633_regulator_init);
1145ec271e7SBalaji Rao
pcf50633_regulator_exit(void)1155ec271e7SBalaji Rao static void __exit pcf50633_regulator_exit(void)
1165ec271e7SBalaji Rao {
1175ec271e7SBalaji Rao platform_driver_unregister(&pcf50633_regulator_driver);
1185ec271e7SBalaji Rao }
1195ec271e7SBalaji Rao module_exit(pcf50633_regulator_exit);
1205ec271e7SBalaji Rao
1215ec271e7SBalaji Rao MODULE_AUTHOR("Balaji Rao <balajirrao@openmoko.org>");
1225ec271e7SBalaji Rao MODULE_DESCRIPTION("PCF50633 regulator driver");
1235ec271e7SBalaji Rao MODULE_LICENSE("GPL");
1245ec271e7SBalaji Rao MODULE_ALIAS("platform:pcf50633-regulator");
125